:root {
    --blue: #3594CE;
    --blue-light: #E3F0F9;
    --blue-dark: #2478AC;
    --blue-deep: #1B5F8A;
    --teal: #99CCCD;
    --teal-light: #E0F0F0;
    --cream: #FAFCFD;
    --warm: #F2F7FA;
    --sand: #D8E5ED;
    --text: #2C3E50;
    --text-soft: #607080;
    --white: #FFFFFF;
    --gold: #E8B44D;
    --gold-light: #FDF5E6;
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(44,62,80,.06);
    --shadow-md: 0 4px 20px rgba(44,62,80,.08);
    --shadow-lg: 0 8px 40px rgba(44,62,80,.1);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-soft); transition: var(--transition); letter-spacing: -.01em; }
.nav-links a.btn-primary { color: var(--white); }
.nav-links a:hover { color: var(--blue); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 8px; min-width: 210px; opacity: 0; visibility: hidden;
    transition: var(--transition); border: 1px solid rgba(0,0,0,.06);
}
.nav-links .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (max-width: 768px) {
    .nav-links .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
    .nav-links.open .dropdown-menu { position: static !important; transform: none !important; left: auto !important; top: auto !important; }
}
.dropdown-menu a { display: block; padding: 10px 16px; border-radius: 8px; font-size: 14px; white-space: nowrap; }
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue-dark); }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-family: var(--font-body);
    font-size: 15px; font-weight: 600; cursor: pointer; border: none;
    transition: var(--transition); letter-spacing: -.01em;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue-dark); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue-dark); }
.btn-white:hover { background: var(--blue-light); }
.lang-switch { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 50px; background: var(--warm); font-size: 13px; font-weight: 500; cursor: pointer; }
.lang-switch img { width: 18px; height: 18px; border-radius: 50%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* SECTIONS */
section { padding: 100px 0; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 20px; height: 1.5px; background: var(--blue); }
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15; color: var(--text); font-weight: 400; margin-bottom: 16px;
}
.section-title em { color: var(--blue); font-style: italic; }
.section-desc { font-size: 17px; color: var(--text-soft); line-height: 1.7; max-width: 560px; }

/* PAGE HEADER */
.page-header { padding: 140px 0 60px; background: var(--warm); text-align: center; }
.page-header .section-title { margin-bottom: 8px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; list-style: none; font-size: 14px; color: var(--text-soft); }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li + li::before { content: '\203A'; margin-right: 8px; color: var(--sand); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 72px; }
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-video::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,50,80,.82) 0%, rgba(20,50,80,.6) 50%, rgba(20,50,80,.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 28px; letter-spacing: .03em; text-transform: uppercase; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2); }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 4rem); line-height: 1.1; color: var(--white); margin-bottom: 20px; font-weight: 400; }
.hero h1 em { color: var(--teal); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-primary { background: var(--white); color: var(--blue-dark); }
.hero .btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
.hero .btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.hero .btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.hero-info { display: flex; gap: 36px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.2); }
.hero-info-item h4 { font-family: var(--font-display); font-size: 28px; color: var(--white); font-weight: 400; }
.hero-info-item p { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 2px; }

/* CTA BAR */
.cta-bar { background: var(--blue); position: relative; z-index: 2; }
.cta-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.cta-item { padding: 28px 32px; display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,.15); }
.cta-item:last-child { border-right: none; }
.cta-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
a.cta-item { color: inherit; text-decoration: none; }
a.cta-item:hover { background: rgba(255,255,255,.08); }
.cta-item h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.cta-item p { color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.4; }

/* ABOUT */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 55%; border-radius: var(--radius); overflow: hidden; border: 5px solid var(--white); box-shadow: var(--shadow-lg); }
.about-img-secondary img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-experience-badge { position: absolute; top: -16px; right: 40px; background: var(--blue); color: var(--white); padding: 18px 22px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); }
.about-experience-badge strong { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 400; }
.about-experience-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.about-feature { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--blue-light); border-radius: var(--radius); font-size: 14px; font-weight: 500; color: var(--blue-dark); }
.about-feature svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0; }

/* SERVICES */
.services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid rgba(0,0,0,.04); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 10px; }
.service-card-body p { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue); transition: var(--transition); }
.service-link:hover { gap: 10px; color: var(--blue-dark); }
.service-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* SERVICE SINGLE */
.service-single { background: var(--white); }
.service-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; max-height: 420px; }
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-content { max-width: 900px; margin: 0 auto; }
.service-faq { margin-top: 20px; }
.service-faq-item { border-bottom: 1px solid rgba(0,0,0,.06); padding: 24px 0; }
.service-faq-item:last-child { border-bottom: none; }
.service-faq-item h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; margin-bottom: 10px; color: var(--text); }
.service-faq-item p { font-size: 15px; color: var(--text-soft); line-height: 1.7; margin-bottom: 8px; }
.service-faq-item ul { padding-left: 20px; margin-top: 8px; }
.service-faq-item li { font-size: 14px; color: var(--text-soft); margin-bottom: 6px; line-height: 1.5; }
.service-faq-item li::marker { color: var(--blue); }
.service-faq-item strong { color: var(--text); }
.service-media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.service-media-grid .media-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.service-media-grid .media-item img, .service-media-grid .media-item video { width: 100%; height: 100%; object-fit: cover; }
.service-media-grid .media-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.service-cta-box { background: var(--blue-light); border-radius: var(--radius-lg); padding: 48px; text-align: center; margin-top: 48px; }
.service-cta-box h3 { font-family: var(--font-display); font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.service-cta-box p { font-size: 15px; color: var(--text-soft); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* PROCESS */
.process { background: var(--warm); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.process-step:last-child { border-bottom: none; }
.step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-light); color: var(--blue-dark); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; flex-shrink: 0; }
.step-content h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.process-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.process-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* GALLERY */
.gallery { background: var(--white); }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* TESTIMONIALS */
.testimonials { background: var(--blue); color: var(--white); }
.testimonials .section-label { color: rgba(255,255,255,.7); }
.testimonials .section-label::before { background: rgba(255,255,255,.5); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--teal-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-card blockquote { font-size: 15px; line-height: 1.7; opacity: .92; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.testimonial-author-info h5 { font-size: 14px; font-weight: 600; }
.testimonial-author-info p { font-size: 12px; opacity: .7; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; height: 480px; box-shadow: var(--shadow-md); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; }
.contact-info-item h5 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--text-soft); line-height: 1.5; }
.contact-info-item a { color: var(--blue); }
.contact-info-item a:hover { text-decoration: underline; }

/* FOOTER */
.footer { background: #3594CE; color: rgba(255,255,255,.9); padding: 40px 0 24px; }
.footer-mobile { display: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer-brand img { height: 28px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 260px; }
.footer h5 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 12px; letter-spacing: .02em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 6px; }
.footer ul a { font-size: 13px; transition: var(--transition); }
.footer ul a:hover { color: var(--white); }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: rgba(255,255,255,.25); }
.footer-social svg { width: 14px; height: 14px; fill: var(--white); }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 90; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.whatsapp-float img { width: 28px; height: 28px; }

/* CTA BANNER (used in about, gallery, service pages) */
.cta-banner { background: #1B3A52; padding: 64px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.4rem); color: var(--white); font-weight: 400; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* LUCIDE ICONS */
[data-lucide] { display: inline-block; vertical-align: middle; }
.cta-icon [data-lucide] { stroke: var(--white); }
.contact-info-icon [data-lucide] { stroke: var(--blue); }
.about-feature [data-lucide] { stroke: var(--blue); flex-shrink: 0; }
.step-number [data-lucide] { stroke: var(--blue-dark); }
.service-card-body h3 [data-lucide] { stroke: var(--blue); }

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
}

/* ══ TABLET ══ */
@media (max-width: 1024px) {
    .about-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item.featured { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-mobile { display: none; }
    .about-img-secondary { right: 0; }
    .service-media-grid { grid-template-columns: repeat(2, 1fr); }
    .service-media-grid .media-item.wide { grid-column: span 1; aspect-ratio: 1; }
    .hero-content { max-width: 520px; }
}

/* ══ MOBILE ══ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); padding: 8px 0; gap: 0;
        border-bottom: 1px solid rgba(0,0,0,.06); box-shadow: 0 8px 30px rgba(0,0,0,.1);
        max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .nav-links.open > li { border: none; text-align: left; }
    .nav-links.open > li > a,
    .nav-links.open > li > .lang-switch {
        display: flex; align-items: center; justify-content: flex-start; gap: 8px;
        padding: 11px 24px; font-size: 15px; font-weight: 500;
        color: var(--text); text-align: left;
        border-left: 3px solid transparent;
        transition: all .15s ease;
    }
    .nav-links.open > li > a:hover,
    .nav-links.open > li > a:active {
        background: var(--blue-light); color: var(--blue-dark);
        border-left-color: var(--blue);
    }
    .nav-links.open .dropdown-menu {
        position: static; transform: none;
        box-shadow: none; border: none; padding: 0; min-width: 0;
        background: var(--warm);
        display: none; opacity: 1; visibility: visible;
    }
    .nav-links.open .dropdown.open .dropdown-menu {
        display: block;
    }
    .nav-links.open .dropdown-menu a {
        display: block; padding: 9px 24px 9px 40px; font-size: 14px;
        color: var(--text-soft); text-align: left; border-radius: 0;
        border-left: 3px solid transparent;
    }
    .nav-links.open .dropdown-menu a:hover {
        background: var(--blue-light); color: var(--blue-dark);
        border-left-color: var(--blue);
    }
    .nav-links.open .lang-switch { padding: 11px 24px; border-radius: 0; background: transparent; }
    .nav-links.open .btn {
        margin: 8px 16px; justify-content: center;
        background: var(--blue); color: var(--white);
        border-radius: 8px; padding: 12px 20px; font-size: 14px;
    }

    /* CTA bar stacks */
    .cta-bar-inner { grid-template-columns: 1fr; }
    .cta-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .cta-item:last-child { border-bottom: none; }

    /* Grids */
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* Hero mobile */
    .hero { min-height: auto; padding-top: 72px; }
    .hero-content { padding: 48px 0 64px; max-width: 100%; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-sub { font-size: 16px; }
    .hero-info { flex-direction: row; gap: 24px; flex-wrap: wrap; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    /* Section spacing */
    section { padding: 64px 0; }
    .page-header { padding: 110px 0 40px; }

    /* About - fix image cropping */
    .about-images { max-width: 100%; margin: 0 auto; }
    .about-img-main img { aspect-ratio: 3/4; }
    .about-img-secondary { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; border: none; }
    .about-img-secondary img { aspect-ratio: 16/9; }
    .about-experience-badge { top: auto; bottom: -16px; right: 16px; }
    .about-features { grid-template-columns: 1fr; }

    /* Footer mobile - compact */
    .footer { padding: 28px 0 20px; }
    .footer-grid { display: none !important; }
    .footer-mobile { display: flex !important; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
    .footer-mobile img { height: 28px; }
    .footer-mobile-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
    .footer-mobile-links a { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.9); }
    .footer-mobile-links a:hover { color: var(--white); }
    .footer-bottom { padding-top: 12px; flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }
    .footer-bottom .footer-social { display: none; }

    /* Gallery */
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* Service single - media grid stays 2 cols */
    .service-media-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .service-media-grid .media-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
    .service-cta-box { padding: 32px 20px; }

    /* Contact */
    .contact-map { height: 300px; }

    /* Typography */
    .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .section-desc { font-size: 15px; }

    /* CTA banner vs footer separation */
    .cta-banner { padding: 48px 0; }
}

/* ══ SMALL PHONES ══ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-inner { height: 64px; }
    .nav-logo img { height: 30px; }
    .nav-links.open { top: 64px; max-height: calc(100vh - 64px); padding: 8px 12px 12px; }
    .nav-links.open > li > a { padding: 9px 14px; font-size: 13px; }
    .nav-links.open .dropdown-menu a { padding: 6px 14px; font-size: 12px; }
    .hero-content { padding: 36px 0 48px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-info { gap: 16px; }
    .hero-info-item h4 { font-size: 22px; }
    .cta-item { padding: 20px 16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .service-media-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .service-media-grid .media-item.wide { grid-column: span 2; }
    .service-hero-img { max-height: 220px; margin-bottom: 32px; }
    .testimonial-card { padding: 24px 20px; }
    .process-step { gap: 14px; }
    .step-number { width: 36px; height: 36px; font-size: 14px; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .whatsapp-float img { width: 24px; height: 24px; }
    .page-header { padding: 96px 0 32px; }
}
