/* ============================================
   ELITAS — Main Stylesheet
   Professional Asphalt & Road Infrastructure
   ============================================ */

/* ------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ------------------------------------------ */
:root {
    --color-primary-dark: #1B2A4A;
    --color-primary: #2A3F6B;
    --color-accent: #E8782E;
    --color-accent-hover: #D06820;
    --color-bg-light: #F5F5F0;
    --color-bg-alt: #ECEAE4;
    --color-bg-dark: #1B2A4A;
    --color-white: #FFFFFF;
    --color-text: #2C2C2C;
    --color-text-light: #6B7280;
    --color-text-on-dark: #C8CDD5;
    --color-border: #E0DDD6;
    --color-success: #16A34A;
    --color-error: #DC2626;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1200px;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --topbar-height: 36px;
    --header-height: 72px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
}

/* ------------------------------------------
   2. Reset & Base
   ------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font: inherit;
    color: inherit;
}

/* ------------------------------------------
   3. Typography
   ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

small {
    font-size: 0.875rem;
}

.text-light {
    color: var(--color-text-light);
}

.text-accent {
    color: var(--color-accent);
}

.text-center {
    text-align: center;
}

/* ------------------------------------------
   4. Layout: Container & Grid Utilities
   ------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ------------------------------------------
   5. Buttons
   ------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.0625rem;
}

/* ------------------------------------------
   5b. Top Contact Bar
   ------------------------------------------ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    height: var(--topbar-height);
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.top-bar-item:hover {
    color: var(--color-accent);
}

.top-bar-item svg {
    flex-shrink: 0;
}

/* ------------------------------------------
   6. Site Header
   ------------------------------------------ */
.site-header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition), background var(--transition), top 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-primary-dark);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--color-accent);
    background: var(--color-bg-light);
}

.nav-link.active {
    color: var(--color-accent);
    font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--color-bg-light);
    color: var(--color-accent);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cta {
    display: none;
}

/* ------------------------------------------
   7. Language Switcher
   ------------------------------------------ */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.lang-current:hover {
    border-color: var(--color-primary);
}

.lang-current[aria-expanded="true"] {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 63, 107, 0.1);
}

.lang-current[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    padding: 6px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all var(--transition);
    z-index: 100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 0.8125rem;
    border-radius: 6px;
    transition: background var(--transition);
}

.lang-option:hover {
    background: var(--color-bg-light);
}

.lang-option .lang-code {
    font-weight: 700;
    color: var(--color-primary);
}

.lang-option .lang-label {
    color: var(--color-text-light);
}

/* ------------------------------------------
   8. Mobile Menu
   ------------------------------------------ */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 10000;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

body.nav-open .hamburger span {
    background: var(--color-white);
}

body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* ------------------------------------------
   9. Hero Section
   ------------------------------------------ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    margin-top: calc(var(--header-height) + var(--topbar-height));
    padding: 80px 0;
    overflow: hidden;
    background: var(--color-bg-dark);
    background-image: url('/assets/images/hero/hero-asfalto-darbai-vilniaus-rajonas.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(27, 42, 74, 0.7) 0%,
        rgba(27, 42, 74, 0.5) 50%,
        rgba(27, 42, 74, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.03em;
}

.hero-title .accent {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-on-dark);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-white) 0%, transparent 100%);
    z-index: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 42, 74, 0.78) 0%,
        rgba(27, 42, 74, 0.55) 50%,
        rgba(27, 42, 74, 0.72) 100%
    );
    z-index: 0;
}

/* ------------------------------------------
   10. Sections
   ------------------------------------------ */
.section {
    padding: 96px 0;
}

.section-light {
    background: var(--color-bg-light);
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

.section-dark p {
    color: var(--color-text-on-dark);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: var(--color-text-on-dark);
}

/* ------------------------------------------
   11. Service Cards
   ------------------------------------------ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap var(--transition);
}

.service-card .service-link:hover {
    gap: 10px;
}

.service-card .service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

/* ------------------------------------------
   12. Trust Signals Section
   ------------------------------------------ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
}

.trust-icon {
    color: var(--color-accent);
}

.trust-icon svg {
    width: 44px;
    height: 44px;
}

.trust-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
}

/* ------------------------------------------
   13. Why Us Section
   ------------------------------------------ */
.why-card {
    text-align: center;
    padding: 32px 24px;
}

.why-card .why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(232, 120, 46, 0.1);
    color: var(--color-accent);
}

.why-card .why-icon svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ------------------------------------------
   14. Process / Timeline Section
   ------------------------------------------ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: process-step;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 32px 20px;
    counter-increment: process-step;
}

.process-step::before {
    content: counter(process-step, decimal-leading-zero);
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.25;
    margin-bottom: 12px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.process-step + .process-step::after {
    content: '';
    position: absolute;
    top: 48px;
    left: -14px;
    width: 28px;
    height: 2px;
    background: var(--color-border);
}

/* ------------------------------------------
   15. CTA Banner
   ------------------------------------------ */
.cta-section {
    background: var(--color-accent);
    padding: 72px 0;
    text-align: center;
    color: var(--color-white);
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.0625rem;
    margin-bottom: 28px;
    opacity: 0.9;
}

.cta-section .btn {
    background: var(--color-white);
    color: var(--color-accent);
    border-color: var(--color-white);
}

.cta-section .btn:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

/* ------------------------------------------
   16. Projects Gallery
   ------------------------------------------ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: opacity 0.35s ease, transform 0.35s ease;
    opacity: 1;
    transform: scale(1);
}

.project-card.filter-out {
    opacity: 0;
    transform: scale(0.92);
}

.project-card.filter-gone {
    display: none !important;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(27, 42, 74, 0.85) 0%,
        transparent 60%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3,
.project-overlay .project-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.project-overlay p {
    font-size: 0.8125rem;
    color: var(--color-text-on-dark);
}

/* Project Filters */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    background: var(--color-white);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    color: var(--color-text);
    border-color: var(--color-text);
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ------------------------------------------
   17. Lightbox
   ------------------------------------------ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
    padding: 50px 48px 24px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 75vh;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-img-wrap.lb-exit-left {
    opacity: 0;
    transform: translateX(-50px);
}

.lightbox-img-wrap.lb-exit-right {
    opacity: 0;
    transform: translateX(50px);
}

.lightbox-img-wrap.lb-enter {
    transition: none;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    -webkit-touch-callout: none;
    pointer-events: none;
}

.lightbox-caption {
    flex-shrink: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 12px 20px 0;
    max-width: 600px;
    transition: opacity 0.25s ease;
}

.lightbox-caption.lb-fade {
    opacity: 0;
}

.lightbox-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    transition: background 0.2s;
    z-index: 5;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.25rem;
    transition: background 0.2s;
    z-index: 5;
}

.lightbox-prev {
    left: 6px;
}

.lightbox-next {
    right: 6px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ------------------------------------------
   18. Page Header (Inner Pages)
   ------------------------------------------ */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    margin-top: calc(var(--header-height) + var(--topbar-height));
    background: var(--color-bg-dark);
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    opacity: 0.95;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.0625rem;
    color: var(--color-text-on-dark);
    max-width: 560px;
    margin: 0 auto;
}

/* ------------------------------------------
   19. Breadcrumb
   ------------------------------------------ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--color-text-on-dark);
    opacity: 0.7;
    transition: opacity var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .separator {
    color: var(--color-text-on-dark);
    opacity: 0.4;
}

.breadcrumb .current {
    color: var(--color-white);
    font-weight: 500;
}

/* ------------------------------------------
   20. About Page
   ------------------------------------------ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-content p + p {
    margin-top: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card .value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(232, 120, 46, 0.1);
    color: var(--color-accent);
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ------------------------------------------
   21. Contact Page
   ------------------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 63, 107, 0.1);
    background: var(--color-white);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-light);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: var(--color-error);
}

.form-error {
    font-size: 0.8125rem;
    color: var(--color-error);
    margin-top: 4px;
}

.form-success {
    padding: 16px;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: var(--radius);
    color: var(--color-success);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Contact Info Card */
.contact-info {
    background: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--color-white);
}

.contact-info h3 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item .info-content {
    flex: 1;
}

.contact-info-item .info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-on-dark);
    margin-bottom: 4px;
}

.contact-info-item .info-value {
    font-size: 0.9375rem;
    color: var(--color-white);
    font-weight: 500;
}

.contact-info-item .info-value a {
    color: var(--color-white);
    transition: color var(--transition);
}

.contact-info-item .info-value a:hover {
    color: var(--color-accent);
}

/* ------------------------------------------
   22. Service Detail Page
   ------------------------------------------ */
.service-detail-header {
    position: relative;
    padding: 120px 0 60px;
    margin-top: calc(var(--header-height) + var(--topbar-height));
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.service-detail-header h1 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.service-detail-header p {
    font-size: 1.0625rem;
    color: var(--color-text-on-dark);
    max-width: 640px;
    line-height: 1.7;
}

.service-content {
    max-width: 800px;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.service-content p + p {
    margin-top: 16px;
}

.service-features {
    padding: 0;
    margin: 24px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.service-features li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%2316A34A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ------------------------------------------
   23. Footer
   ------------------------------------------ */
.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-on-dark);
    max-width: 280px;
}

/* Footer Links */
.footer-links h4 {
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.875rem;
    color: var(--color-text-on-dark);
    transition: color var(--transition);
}

.footer-links ul li a:hover {
    color: var(--color-accent);
}

/* Footer Contact */
.footer-contact h4 {
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.875rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--color-text-on-dark);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-accent);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--color-text-on-dark);
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--color-text-on-dark);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ------------------------------------------
   24. 404 Error Page
   ------------------------------------------ */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - var(--topbar-height));
    margin-top: calc(var(--header-height) + var(--topbar-height));
    text-align: center;
    padding: 60px 24px;
}

.error-page .error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.15;
    margin-bottom: -20px;
}

.error-page h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.error-page p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 400px;
}

/* ------------------------------------------
   24b. Service Detail Grid & Features
   ------------------------------------------ */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.service-detail__content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.service-detail__image {
    margin-bottom: 32px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.service-detail__content p + p {
    margin-top: 16px;
}

.service-detail__sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.features-box {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.features-box__title {
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.features-list {
    margin-bottom: 24px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.features-list .check-icon {
    flex-shrink: 0;
    color: var(--color-success);
    margin-top: 1px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ------------------------------------------
   24c. No Projects / Empty State
   ------------------------------------------ */
.no-projects-message {
    text-align: center;
    padding: 80px 24px;
    color: var(--color-text-light);
}

.no-projects-message svg {
    margin: 0 auto 20px;
    opacity: 0.3;
}

.no-projects-message p {
    font-size: 1.125rem;
    max-width: 400px;
    margin: 0 auto;
}

/* ------------------------------------------
   24d. Contact Map
   ------------------------------------------ */
.contact-map {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    border-radius: var(--radius);
}

/* ------------------------------------------
   24e. Filter Buttons Container
   ------------------------------------------ */
.filter-bar {
    padding: 24px 0 0;
}

.filter-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ------------------------------------------
   24f. Form Message Styles
   ------------------------------------------ */
.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-message.form-success {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
    color: var(--color-success);
}

.form-message.form-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: var(--color-error);
}

/* ------------------------------------------
   24g. Why Us Grid (4 columns)
   ------------------------------------------ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ------------------------------------------
   24h. Services Grid Variants
   ------------------------------------------ */
.services-grid--large .service-card {
    padding: 40px 32px;
}

.services-grid--related {
    grid-template-columns: repeat(3, 1fr);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap var(--transition);
}

.service-card:hover .service-card__link {
    gap: 10px;
}

/* ------------------------------------------
   24i. Process Step Number Override
   ------------------------------------------ */
.process-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.25;
    margin-bottom: 12px;
    line-height: 1;
}

/* ------------------------------------------
   24j. CTA Block variant
   ------------------------------------------ */
.cta-block {
    text-align: center;
}

/* ------------------------------------------
   24k. About Page Sections
   ------------------------------------------ */
.about-content,
.about-mission,
.about-equipment {
    max-width: none;
}

.about-content .container {
    max-width: 1100px;
}

.about-mission .container,
.about-equipment .container {
    max-width: 800px;
}

.about-content h2,
.about-mission h2,
.about-values h2,
.about-equipment h2 {
    margin-bottom: 24px;
}

.about-content p,
.about-mission p,
.about-equipment p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-story-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-story-image {
        order: -1;
    }
}

/* ------------------------------------------
   25. Scroll Animations
   ------------------------------------------ */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------
   26. Utility Classes
   ------------------------------------------ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ------------------------------------------
   27. Responsive — Tablet (max-width: 1024px)
   ------------------------------------------ */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .section {
        padding: 72px 0;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step + .process-step::after {
        display: none;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail__sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid--related {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ------------------------------------------
   28. Responsive — Mobile (max-width: 768px)
   ------------------------------------------ */
@media (max-width: 768px) {
    :root {
        --topbar-height: 32px;
        --header-height: 60px;
    }

    .top-bar {
        font-size: 0.6875rem;
    }

    .top-bar-inner {
        justify-content: center;
        gap: 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Mobile Header */
    .header-cta {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        display: none !important;
    }

    body.nav-open .main-nav {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        z-index: 9999;
        background: var(--color-primary-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        width: 100%;
        max-width: 300px;
        padding: 0 24px;
    }

    .nav-list > li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 14px 24px;
        color: var(--color-white);
        display: block;
        width: 100%;
        border-radius: var(--radius);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-accent);
        background: rgba(255, 255, 255, 0.08);
    }

    .dropdown-arrow {
        stroke: var(--color-white);
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.06);
        transform: none;
        margin-top: 4px;
        padding: 4px 0;
        border-radius: var(--radius);
    }

    .nav-dropdown.open .dropdown-menu a {
        color: rgba(255, 255, 255, 0.85);
        padding: 10px 24px;
        display: block;
    }

    .nav-dropdown.open .dropdown-menu a:hover {
        color: var(--color-accent);
        background: rgba(255, 255, 255, 0.05);
    }

    /* Mobile Hero — uses JS-set --app-height to avoid iOS Safari address bar resize */
    .hero {
        min-height: calc(var(--app-height, 100svh) - var(--header-height) - var(--topbar-height));
        padding: 40px 0;
        align-items: flex-start;
        padding-top: calc(40px + 2rem);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Mobile Grids */
    .services-grid,
    .services-grid--related,
    .why-grid,
    .values-grid,
    .projects-grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-step + .process-step::after {
        display: none;
    }

    /* Mobile Page Header */
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-header {
        padding: 80px 0 40px;
    }

    .service-detail-header h1 {
        font-size: 2rem;
    }

    /* Mobile Contact */
    .contact-form {
        padding: 24px;
    }

    .contact-info {
        padding: 28px;
    }

    /* Mobile Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Mobile CTA */
    .cta-section {
        padding: 56px 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    /* Mobile Filter Bar */
    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8125rem;
    }

    /* Mobile Lightbox */
    .lightbox {
        padding: 44px 40px 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.25);
    }

    .lightbox-prev {
        left: 3px;
    }

    .lightbox-next {
        right: 3px;
    }

    .lightbox-caption {
        font-size: 0.8125rem;
        padding: 10px 16px 0;
    }

    /* Mobile Error Page */
    .error-page .error-code {
        font-size: 5rem;
    }

    .error-page h1 {
        font-size: 1.5rem;
    }
}

/* ------------------------------------------
   29. Responsive — Small Mobile (max-width: 480px)
   ------------------------------------------ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .service-card {
        padding: 28px 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 12px 0;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ------------------------------------------
   30. Desktop Enhancements (min-width: 1025px)
   ------------------------------------------ */
@media (min-width: 1025px) {
    .header-cta {
        display: inline-flex;
    }
}

/* ------------------------------------------
   31. Print Styles
   ------------------------------------------ */
@media print {
    .site-header,
    .site-footer,
    .mobile-toggle,
    .hero-actions,
    .cta-section,
    .lightbox {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 24px 0;
        background: none;
        color: #000;
    }

    .section {
        padding: 24px 0;
    }
}
