:root {
    --primary: #004E9A;
    --primary-dark: #0A3566;
    --primary-light: #2E78B7;

    --accent: #FD9A1C;
    --accent-light: #FFB347;

    --white: #FFFFFF;
    --background: #FFFFFF;
    --background-soft: #F6F9FC;

    --text: #172033;
    --text-muted: #697586;

    --border: #E5EAF0;

    --shadow-sm: 0 8px 24px rgba(10, 53, 102, 0.08);
    --shadow-md: 0 16px 40px rgba(10, 53, 102, 0.13);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; font-family: 'Cairo', sans-serif; color: var(--text); background: var(--background); line-height: 1.75; overflow-x: hidden; }
html[lang="en"] body { font-family: 'Poppins', sans-serif; line-height: 1.65; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--primary); color: var(--white); }
* { scrollbar-width: thin; scrollbar-color: var(--primary-light) var(--background-soft); }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--background-soft); }
*::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 999px; border: 2px solid var(--background-soft); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: 104px; }
.skip-link { position: fixed; inset-inline-start: 18px; top: -100px; z-index: 9999; background: var(--accent); color: var(--white); padding: 10px 16px; border-radius: var(--radius-sm); transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: 94px; display: flex; align-items: center; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(229,234,240,.7); backdrop-filter: blur(10px); transition: height .28s ease, box-shadow .28s ease, background .28s ease; }
.site-header.scrolled { height: 76px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; display: grid; place-items: center; }
.brand img { width: auto; height: 68px; object-fit: contain; }
.site-header.scrolled .brand img { height: 56px; }
.desktop-nav { display: flex; align-items: center; gap: 25px; margin-inline: auto 0; }
.nav-link { position: relative; color: var(--primary-dark); font-size: .96rem; font-weight: 600; padding-block: 10px; transition: color .2s ease; }
.nav-link::after { content: ''; position: absolute; inset-inline: 0; bottom: 2px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { min-width: 45px; height: 42px; border: 1px solid var(--border); background: var(--white); color: var(--primary-dark); border-radius: var(--radius-sm); cursor: pointer; font-weight: 700; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: var(--white); border-radius: var(--radius-sm); padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--primary-dark); margin: 5px 0; border-radius: 2px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 11px 21px; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 52px; padding-inline: 25px; }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 10px 22px rgba(253,154,28,.18); }
.btn-accent:hover { background: #e8890f; box-shadow: 0 13px 26px rgba(253,154,28,.23); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: var(--white); color: var(--primary-dark); border-color: var(--white); }

.drawer-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(10,53,102,.48); opacity: 0; transition: opacity .25s ease; }
.drawer-overlay.visible { opacity: 1; }
.mobile-drawer { position: fixed; z-index: 1200; top: 0; bottom: 0; inset-inline-start: 0; width: min(360px, 88vw); background: var(--white); box-shadow: var(--shadow-md); padding: 20px; transform: translateX(110%); transition: transform .3s ease; overflow-y: auto; }
html[dir="ltr"] .mobile-drawer { transform: translateX(-110%); }
.mobile-drawer.open { transform: translateX(0) !important; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.drawer-head img { width: 210px; height: 76px; object-fit: contain; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--border); background: var(--background-soft); border-radius: var(--radius-sm); cursor: pointer; font-size: 28px; line-height: 1; }
.drawer-nav { display: grid; gap: 6px; margin-top: 20px; }
.drawer-nav a, .drawer-language { padding: 13px 15px; border-radius: var(--radius-sm); color: var(--primary-dark); font-weight: 600; border: 0; background: transparent; text-align: start; cursor: pointer; }
.drawer-nav a:hover, .drawer-language:hover { background: var(--background-soft); color: var(--accent); }
.drawer-nav .drawer-cta { margin-top: 12px; background: var(--accent); color: var(--white); text-align: center; }

.hero { min-height: 760px; padding: 164px 0 92px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.hero::before { content: ''; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; top: -210px; inset-inline-end: -120px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 145px rgba(255,255,255,.018); }
.hero::after { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(46,120,183,.24); bottom: -140px; inset-inline-start: -80px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #dcecff; font-size: .82rem; font-weight: 700; letter-spacing: .06em; margin-bottom: 20px; }
.eyebrow-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(253,154,28,.14); }
.hero h1 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.9rem); line-height: 1.17; max-width: 800px; letter-spacing: -.03em; }
.hero-agency { margin: 16px 0 0; color: var(--accent-light); font-weight: 700; font-size: clamp(1.08rem, 2vw, 1.45rem); }
.hero-description { margin: 22px 0 30px; max-width: 700px; color: rgba(255,255,255,.84); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-mini-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: rgba(255,255,255,.86); font-size: .88rem; }
.hero-mini-trust span { display: flex; align-items: center; gap: 8px; }
.hero-mini-trust i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-image-wrap { position: relative; isolation: isolate; }
.hero-image-wrap::before { content: ''; position: absolute; inset: 10% 9% -3% -3%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); z-index: -1; transform: rotate(-3deg); }
.hero-image-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 32px 80px rgba(5,30,60,.34); }
.ticket-corner::after { content: ''; position: absolute; width: 24px; height: 24px; background: var(--primary-dark); border-radius: 50%; top: 42%; inset-inline-end: -12px; box-shadow: 0 150px 0 var(--primary-dark); }
.floating-ticket { position: absolute; inset-inline-start: -34px; bottom: 34px; width: 220px; background: var(--white); color: var(--text); border-radius: var(--radius-md); padding: 16px 18px; box-shadow: var(--shadow-md); border-top: 4px solid var(--accent); }
.floating-ticket .ticket-label { display: block; color: var(--primary-light); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.floating-ticket strong { display: block; color: var(--primary-dark); margin-top: 4px; }
.floating-ticket small { color: var(--text-muted); }
.hero-route { position: absolute; border: 2px dashed rgba(255,179,71,.25); border-radius: 50%; pointer-events: none; }
.route-a { width: 660px; height: 250px; inset-inline-start: -240px; top: 260px; transform: rotate(-18deg); }
.route-b { width: 470px; height: 180px; inset-inline-end: -210px; bottom: 75px; transform: rotate(16deg); }

.trust-strip { position: relative; z-index: 5; margin-top: -34px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-md); border-radius: var(--radius-md); overflow: hidden; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 24px 22px; position: relative; }
.trust-item:not(:last-child)::after { content: ''; position: absolute; inset-inline-end: 0; top: 20%; width: 1px; height: 60%; background: var(--border); }
.icon-disc { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,78,154,.08); color: var(--primary); font-weight: 700; }
.trust-item h2 { font-size: .97rem; margin: 0 0 5px; color: var(--primary-dark); }
.trust-item p { margin: 0; color: var(--text-muted); font-size: .79rem; line-height: 1.55; }

.section-label { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 9px; }
.section-title { color: var(--primary-dark); margin: 0; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.25; letter-spacing: -.025em; }
.section-heading { max-width: 720px; margin-bottom: 46px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading p, .about-copy > p, .why-copy > p { color: var(--text-muted); font-size: 1rem; margin-top: 16px; }
.journey-line { width: 110px; height: 24px; border-bottom: 4px solid var(--accent); border-radius: 0 0 100% 100%; transform: rotate(-2deg); margin-block: 6px 22px; }
html[dir="ltr"] .journey-line { transform: rotate(2deg); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.about-badge { position: absolute; bottom: 28px; inset-inline-end: -28px; display: flex; gap: 10px; align-items: center; background: var(--white); color: var(--primary-dark); padding: 14px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); border-inline-start: 4px solid var(--accent); }
.about-badge span { color: var(--accent); font-size: 1.3rem; }
.about-points { display: grid; gap: 13px; margin-top: 28px; }
.about-points > div { display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: start; }
.about-points span { display: grid; place-items: center; height: 38px; border-radius: var(--radius-sm); background: rgba(0,78,154,.08); color: var(--primary); font-weight: 700; }
.about-points p { margin: 3px 0 0; color: var(--text); font-size: .95rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 25px; color: var(--primary); font-weight: 700; }
.text-link b { color: var(--accent); }

.services { background: var(--background-soft); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 270px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0,78,154,.18); }
.service-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: rgba(0,78,154,.08); color: var(--primary); font-size: 1.55rem; transition: background .25s ease, color .25s ease; }
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-no { position: absolute; top: 26px; inset-inline-end: 27px; color: #c8d6e5; font-weight: 700; }
.service-card h3 { margin: 22px 0 8px; color: var(--primary-dark); font-size: 1.17rem; }
.service-card p { margin: 0; color: var(--text-muted); font-size: .9rem; }
.orange-detail { position: absolute; inset-inline-start: 28px; bottom: 0; width: 56px; height: 4px; background: var(--accent); border-radius: 8px 8px 0 0; }
.service-card:nth-child(2n) .orange-detail { width: 34px; }
.service-card:nth-child(3n) .service-icon { border-radius: 50%; }

.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 78px; align-items: start; }
.why-copy { position: sticky; top: 120px; }
.why-copy .btn { margin-top: 20px; }
.feature-list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.feature-row { display: grid; grid-template-columns: 58px 1fr; gap: 18px; background: var(--background-soft); padding: 24px 25px; transition: background .2s ease; }
.feature-row:hover { background: var(--white); }
.feature-row > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--accent); border: 1px solid rgba(253,154,28,.3); border-radius: 50%; font-weight: 700; }
.feature-row h3 { margin: 0 0 5px; color: var(--primary-dark); font-size: 1.05rem; }
.feature-row p { margin: 0; color: var(--text-muted); font-size: .88rem; }

.gallery { background: var(--background-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--white); cursor: zoom-in; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; padding: 22px; color: var(--white); background: linear-gradient(to top, rgba(10,53,102,.82), rgba(10,53,102,.05) 60%); opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover .gallery-overlay, .gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-style: normal; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); }

.cta-band { position: relative; overflow: hidden; padding-block: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.cta-band::before { content: ''; position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); inset-inline-start: -160px; top: -180px; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-kicker { color: var(--accent-light); font-size: .82rem; letter-spacing: .1em; font-weight: 700; }
.cta-inner h2 { margin: 7px 0 8px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.8); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-route { position: absolute; width: 520px; height: 160px; border: 3px dashed rgba(253,154,28,.3); border-radius: 50%; inset-inline-end: -160px; bottom: -80px; transform: rotate(-8deg); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 560px); justify-content: center; gap: 24px; }
.contact-card { background: var(--primary); color: var(--white); border-radius: var(--radius-md); padding: 30px; position: relative; overflow: hidden; }
.contact-card::after { content: ''; position: absolute; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,255,255,.05); bottom: -110px; inset-inline-end: -90px; }
.contact-card-brand { display: inline-block; background: var(--white); border-radius: var(--radius-sm); padding: 8px 11px; margin-bottom: 22px; }
.contact-card-brand img { width: 205px; height: 74px; object-fit: contain; }
.contact-card h3 { margin: 0 0 8px; font-size: 1.5rem; }
.contact-card > p { margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; }
.contact-list { display: grid; gap: 6px; margin: 26px 0 0; }
.contact-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding-block: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.contact-list dt { width: 38px; height: 38px; display: grid; place-items: center; color: var(--accent); background: rgba(255,255,255,.08); border-radius: var(--radius-sm); }
.contact-list dd { margin: 0; display: grid; }
.contact-list dd span { color: rgba(255,255,255,.62); font-size: .72rem; }
.contact-list dd a, .contact-list dd b { color: var(--white); font-weight: 600; font-size: .9rem; }
.map-card { position: relative; margin-top: 24px; height: 340px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: var(--background-soft); }
.map-card iframe { width: 100%; height: 100%; border: 0; display: none; }
.map-card.has-map iframe { display: block; }
.map-card.has-map .map-placeholder { display: none; }
.map-placeholder { position: absolute; inset: 0; display: grid; place-content: center; grid-template-columns: 58px minmax(0, 430px); gap: 18px; align-items: center; padding: 25px; text-align: start; background: radial-gradient(circle at 20% 20%, rgba(46,120,183,.12), transparent 40%), var(--background-soft); }
.map-placeholder > span { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 1.5rem; }
.map-placeholder h3 { margin: 0 0 5px; color: var(--primary-dark); }
.map-placeholder p { margin: 0; color: var(--text-muted); font-size: .88rem; }

.site-footer { background: var(--primary-dark); color: var(--white); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; padding-bottom: 54px; }
.footer-logo { display: inline-block; background: var(--white); padding: 8px 12px; border-radius: var(--radius-sm); }
.footer-logo img { width: 235px; height: 82px; object-fit: contain; }
.footer-brand p { max-width: 400px; color: rgba(255,255,255,.68); font-size: .88rem; margin-top: 18px; }
.site-footer h2 { font-size: .98rem; margin: 0 0 18px; color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer li, .site-footer a, .site-footer span { color: rgba(255,255,255,.7); font-size: .84rem; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom .container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: .78rem; }
.footer-route { color: var(--accent) !important; letter-spacing: .12em; }

.whatsapp-float { position: fixed; z-index: 900; inset-inline-end: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); border-radius: 14px; box-shadow: 0 14px 34px rgba(10,53,102,.22); padding: 10px 13px; overflow: hidden; max-width: 50px; transition: max-width .3s ease, transform .2s ease; white-space: nowrap; }
.whatsapp-float:hover { max-width: 260px; transform: translateY(-2px); }
.wa-icon { flex: 0 0 24px; font-size: 1.12rem; }
.wa-label { opacity: 0; transition: opacity .2s ease .06s; font-size: .82rem; font-weight: 600; }
.whatsapp-float:hover .wa-label { opacity: 1; }
.whatsapp-float.disabled { background: var(--primary-light); }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; background: rgba(10,53,102,.94); padding: 70px 80px; }
.lightbox.open { display: grid; }
.lightbox figure { margin: 0; display: grid; place-items: center; gap: 14px; max-width: min(1000px, 90vw); }
.lightbox img { max-height: 76vh; max-width: 100%; border-radius: var(--radius-md); background: var(--white); }
.lightbox figcaption { color: var(--white); text-align: center; font-weight: 600; }
.lightbox-close, .lightbox-nav { position: absolute; border: 0; background: rgba(255,255,255,.08); color: var(--white); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 32px; transition: background .2s ease, color .2s ease; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--accent); }
.lightbox-close { top: 20px; inset-inline-end: 22px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { inset-inline-start: 20px; }
.lightbox-nav.next { inset-inline-end: 20px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .58s ease, transform .58s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1080px) {
  .desktop-nav, .header-contact { display: none; }
  .menu-toggle { display: block; }
  .header-actions { margin-inline-start: auto; }
  .hero-grid { gap: 38px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 30px, 720px); }
  .section { padding-block: 82px; }
  .site-header { height: 82px; }
  .brand img { height: 55px; }
  .site-header.scrolled .brand img { height: 50px; }
  .hero { padding-top: 126px; min-height: auto; }
  .hero-grid, .about-grid, .why-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-description { margin-inline: auto; }
  .hero-actions, .hero-mini-trust { justify-content: center; }
  .hero-visual { max-width: 630px; margin-inline: auto; }
  .floating-ticket { inset-inline-start: 18px; }
  .about-grid { gap: 48px; }
  .about-badge { inset-inline-end: 18px; }
  .why-grid { gap: 38px; }
  .why-copy { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 520px); }
  .section { padding-block: 68px; }
  .site-header { height: 74px; }
  .site-header.scrolled { height: 68px; }
  .brand img { height: 49px; max-width: 210px; }
  .site-header.scrolled .brand img { height: 46px; }
  .lang-switch { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { padding: 111px 0 72px; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-description { font-size: .95rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-mini-trust { gap: 12px 16px; font-size: .78rem; }
  .floating-ticket { position: relative; inset: auto; margin: -26px 14px 0; width: auto; z-index: 4; }
  .ticket-corner::after { display: none; }
  .trust-strip { margin-top: -26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 19px; }
  .trust-item::after { display: none !important; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--border); }
  .section-heading { margin-bottom: 34px; }
  .about-badge { position: relative; bottom: auto; inset-inline-end: auto; margin: -22px 15px 0; z-index: 3; }
  .services-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 248px; }
  .feature-row { grid-template-columns: 50px 1fr; padding: 20px 17px; gap: 12px; }
  .cta-band { padding-block: 56px; }
  .cta-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .contact-card { padding: 22px; }
  .map-card { height: 300px; }
  .map-placeholder { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid { gap: 30px; }
  .footer-bottom .container { min-height: 88px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 16px; }
  .lightbox { padding: 68px 14px 90px; }
  .lightbox-nav { top: auto; bottom: 20px; transform: none; }
  .lightbox-nav.prev { inset-inline-start: calc(50% - 58px); }
  .lightbox-nav.next { inset-inline-end: calc(50% - 58px); }
  .whatsapp-float { inset-inline-end: 14px; bottom: 14px; }
}

@media (max-width: 360px) {
  .brand img { max-width: 175px; }
  .drawer-head img { width: 175px; }
  .hero-mini-trust { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
