/* ============================================================
   DIMITENT — Brand Stylesheet
   Colors: Red #CB1020 | Blue #003D7A | Yellow #FFC72C
   Fonts: Montserrat (headings) | Inter (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --red:         #CB1020;
    --red-dark:    #a30d1a;
    --red-glow:    rgba(203, 16, 32, 0.35);
    --blue:        #003D7A;
    --blue-dark:   #002d5c;
    --blue-mid:    #0050a0;
    --yellow:      #FFC72C;
    --yellow-dark: #e6b000;

    --white:       #FFFFFF;
    --gray-50:     #F8F9FA;
    --gray-100:    #F1F3F5;
    --gray-200:    #E9ECEF;
    --gray-300:    #DEE2E6;
    --gray-500:    #ADB5BD;
    --gray-600:    #6C757D;
    --gray-700:    #495057;
    --gray-800:    #343A40;
    --gray-900:    #212529;

    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Inter', sans-serif;

    --nav-h:        88px;
    --max-w:        1200px;
    --sec-pad:      96px;

    --r-sm:  4px;
    --r-md:  8px;
    --r-lg:  16px;
    --r-xl:  24px;
    --r-2xl: 32px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --shadow-xl: 0 16px 56px rgba(0,0,0,0.18);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: all 0.3s var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--t); }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== CONTAINER ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    border: 2px solid transparent;
    transition: var(--t);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }

.btn-lg {
    padding: 16px 32px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--red-glow);
}

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

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section { padding: var(--sec-pad) 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.75;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--nav-h);
    background: rgba(0, 20, 55, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(0, 15, 45, 0.96);
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-container {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.nav-logo span { color: var(--yellow); }

.nav-logo-img {
    height: 72px;
    width: auto;
    display: block;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    padding: 8px 14px;
    border-radius: var(--r-md);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta { margin-left: 8px; }

.nav-social {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 16px;
}

.nav-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    transition: var(--t);
    border: 1px solid rgba(255,255,255,0.2);
}

.nav-social-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--t);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--blue);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--blue-dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 15, 40, 0.72) 0%,
        rgba(0, 20, 55, 0.60) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    gap: 0;
}

.hero-content {
    padding: 64px 0 40px;
    max-width: 740px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 7px 14px;
    border-radius: var(--r-sm);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge i { font-size: 9px; }

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(50px, 9vw, 96px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

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

.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 560px;
}

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

.hero-stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-xl);
    padding: 28px 40px;
    margin-bottom: 64px;
    max-width: 620px;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.stat-num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--yellow);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
    transition: color 0.2s;
}

.hero-scroll:hover { color: rgba(255,255,255,0.8); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== SERVICES ===== */
.services { background: var(--gray-50); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.services-grid .service-card {
    grid-column: span 2;
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 3;
}

.service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 28px 28px;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap { margin-bottom: 20px; }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--blue);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.service-card:hover .service-icon {
    background: var(--red);
    transform: rotate(-4deg) scale(1.05);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--red);
    text-transform: uppercase;
    transition: gap 0.25s var(--ease), color 0.2s;
}

.service-link:hover { gap: 10px; color: var(--red-dark); }

/* ===== ABOUT ===== */
.about { background: var(--white); }

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

.about-visual { position: relative; }

.about-img-card {
    border-radius: var(--r-2xl);
    min-height: 320px;
    box-shadow: var(--shadow-xl);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 20, 60, 0.15) 0%,
        rgba(0, 10, 40, 0.25) 100%
    );
    border-radius: var(--r-2xl);
}

.about-year-badge {
    position: absolute;
    bottom: -16px;
    right: 24px;
    background: var(--yellow);
    border-radius: var(--r-lg);
    padding: 16px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    line-height: 1;
}

.about-year-badge .year {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 34px;
    color: var(--blue);
}

.about-year-badge .year-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--blue);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

.about-feature i {
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
}

.about-content { padding-top: 8px; }

.about-content .section-tag  { display: block; margin-bottom: 8px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }

.about-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-content p strong { color: var(--gray-900); }

.about-quote {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--blue);
    border-left: 4px solid var(--yellow);
    padding: 12px 20px;
    margin: 28px 0 32px;
    background: var(--gray-50);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    line-height: 1.5;
    font-style: normal;
}

/* ===== WHY US ===== */
.why-us { background: var(--blue); }

.why-us .section-tag  { color: var(--yellow); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-xl);
    padding: 36px 24px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.why-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue);
    font-size: 22px;
    transition: transform 0.3s;
}

.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }

.why-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
}

/* ===== GALLERY ===== */
.gallery { background: var(--gray-50); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}

.gallery-item--large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-grid .gallery-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
}

.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

.gallery-card {
    background: var(--gc, #003D7A);
    border-radius: var(--r-lg);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.55);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    min-height: 200px;
}

.gallery-item--large .gallery-card { min-height: 456px; }

.gallery-card:hover {
    transform: scale(0.98);
    box-shadow: var(--shadow-xl);
}

.gallery-label {
    text-align: center;
    z-index: 1;
}

.gallery-label h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-label p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: var(--r-lg);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--white);
    padding: 10px 20px;
    border-radius: var(--r-sm);
}

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

.gallery-cta {
    margin-top: 48px;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--gray-200);
}

.gallery-cta p {
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 24px;
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.contact-item:hover .contact-icon { background: var(--red); }

.contact-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.contact-item a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.7;
}

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

.contact-item p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Form */
.contact-form {
    background: var(--gray-50);
    border-radius: var(--r-2xl);
    padding: 44px 40px;
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-900);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 61, 122, 0.1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C757D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

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

#submitBtn { margin-top: 4px; }
#submitBtn.success { background: #1a7f37; border-color: #1a7f37; }

/* ===== FOOTER ===== */
.footer {
    background: #0d1117;
    color: rgba(255,255,255,0.55);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
    border-radius: 6px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-slogan {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--yellow) !important;
    margin-top: 12px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--yellow); }

.footer-col ul li a i { font-size: 11px; color: var(--yellow); }

.footer-address {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
}

.footer-hours {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    :root { --sec-pad: 64px; }

    /* Navbar mobile */
    .nav-links {
        display: none;
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        background: var(--blue-dark);
        flex-direction: column;
        padding: 16px 20px 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.open { display: flex; }

    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
        width: 100%;
    }

    .nav-cta { display: none; }
    .nav-social { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero-title { font-size: clamp(40px, 11vw, 64px); }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 24px;
        gap: 0;
    }

    /* Sections */
    .services-grid    { grid-template-columns: 1fr; }
    .services-grid .service-card,
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) { grid-column: span 6; }
    .about-grid       { grid-template-columns: 1fr; gap: 48px; }
    .why-grid         { grid-template-columns: 1fr 1fr; }
    .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
    .form-row         { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr 1fr; }
    .footer-bottom    { flex-direction: column; text-align: center; }
    .contact-form     { padding: 28px 20px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery-item--large .gallery-card { min-height: 220px; }
}

@media (max-width: 520px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; }
    .stat-divider { width: 48px; height: 1px; }
    .why-grid  { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large { grid-column: 1; }
}
