:root {
    --ink: #0c1524;
    --ink-soft: #162236;
    --ink-muted: #2a3d5c;
    --cream: #f7f2ea;
    --cream-deep: #ebe4d8;
    --gold: #c9a962;
    --gold-light: #dfc98a;
    --teal: #18a896;
    --teal-dark: #128f7f;
    --clay: #c4623a;
    --clay-soft: #d4835f;
    --mist: #9aa3b0;
    --line: rgba(12, 21, 36, 0.08);
    --white: #fefdfb;
    --font: 'Vazirmatn', Tahoma, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 20px rgba(12, 21, 36, 0.06);
    --shadow-md: 0 12px 40px rgba(12, 21, 36, 0.1);
    --shadow-lg: 0 24px 64px rgba(12, 21, 36, 0.14);
    --radius: 14px;
    --radius-lg: 22px;
    --section-y: clamp(4rem, 8vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.8;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.35s var(--ease), opacity 0.35s var(--ease); }
.container { width: min(1240px, 90vw); margin-inline: auto; }


.eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 0.85rem;
}
.eyebrow-light { color: var(--gold-light); }
h1, h2, h3 { font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.35rem); }
em { font-style: normal; color: var(--gold); }


.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.75rem; border-radius: 10px; font-family: var(--font);
    font-size: 0.88rem; font-weight: 700; border: 2px solid transparent;
    cursor: pointer; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(24,168,150,0.35); }
.btn-glow:hover { box-shadow: 0 0 40px rgba(24,168,150,0.4); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,169,98,0.4); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: var(--cream); border-color: rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn-outline { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-passport { background: var(--ink); color: var(--gold-light); padding: 0.6rem 1.25rem; font-size: 0.8rem; border-radius: 8px; }
.btn-passport:hover { background: var(--teal); color: var(--white); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.78rem; }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 0.95rem; }
.btn-block { width: 100%; }
.link-magnetic { font-weight: 700; font-size: 0.88rem; color: var(--teal-dark); position: relative; }
.link-magnetic::after { content: ''; position: absolute; bottom: -2px; right: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s var(--ease); }
.link-magnetic:hover::after { width: 100%; }
.link-arrow::after { content: ' ←'; }


.site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(247, 242, 234, 0.82);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header::before {
    content: '';
    position: absolute; inset: 0;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    z-index: -1; pointer-events: none;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(247, 242, 234, 0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; gap: 1.5rem; position: relative; }
.brand { display: flex; align-items: center; gap: 0.85rem; color: var(--ink); }
.brand-mark {
    width: 46px; height: 46px; background: var(--ink); color: var(--gold);
    border-radius: 14px 14px 14px 4px; display: grid; place-items: center;
    font-weight: 900; font-size: 1.15rem;
    box-shadow: 0 4px 16px rgba(12,21,36,0.2);
}
.brand-text { display: flex; flex-direction: column; gap: 0.1rem; }
.brand-text strong { font-size: 1.02rem; font-weight: 800; }
.brand-text small { font-size: 0.68rem; color: var(--mist); font-weight: 500; }
.brand-logo { height: 42px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a:not(.btn) { color: var(--ink-muted); font-weight: 600; font-size: 0.88rem; position: relative; }
.main-nav a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; right: 0; width: 0; height: 2px;
    background: var(--teal); transition: width 0.35s var(--ease);
}
.main-nav a:not(.btn):hover { color: var(--ink); }
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 8px;
    flex-shrink: 0; z-index: 201;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.35s var(--ease); transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


.hero-editorial {
    position: relative; min-height: 92vh; display: flex; align-items: center;
    padding: var(--section-y) 0 6rem; overflow: hidden;
    background: var(--ink); color: var(--cream);
}
.hero-editorial-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
}
.hero-editorial-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(12, 21, 36, 0.88) 0%,
        rgba(12, 21, 36, 0.62) 45%,
        rgba(12, 21, 36, 0.78) 100%
    );
}
.hero-has-bg .hero-glow-1 { background: rgba(24, 168, 150, 0.1); }
.hero-has-bg .hero-glow-2 { background: rgba(201, 169, 98, 0.08); }
.hero-noise {
    position: absolute; inset: 0; z-index: 2; opacity: 0.035; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 2; }
.hero-glow-1 { width: 500px; height: 500px; background: rgba(24,168,150,0.15); top: -10%; left: -5%; }
.hero-glow-2 { width: 400px; height: 400px; background: rgba(201,169,98,0.12); bottom: 10%; right: -5%; }
.hero-editorial-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 3;
}
.hero-kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; font-size: 0.78rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.06em; }
.hero-kicker-line { width: 40px; height: 1px; background: var(--gold); }
.hero-display { margin-bottom: 1.5rem; }
.hero-display-line { display: block; }
.hero-display-accent { color: var(--teal); font-style: italic; }
.hero-lead { font-size: 1.05rem; line-height: 1.9; opacity: 0.82; max-width: 480px; margin-bottom: 2rem; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-trust strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.hero-trust span { font-size: 0.72rem; opacity: 0.6; font-weight: 500; }
.hero-editorial-visual {
    position: relative; width: 100%; max-width: 420px; margin-inline: auto;
}
.hero-orbit { position: relative; aspect-ratio: 1; width: 100%; max-width: 420px; margin-inline: auto; }
.hero-orbit-svg { width: 100%; height: 100%; }
.hero-orbit-path { animation: orbitDash 24s linear infinite; }
@keyframes orbitDash { to { stroke-dashoffset: -300; } }
.hero-orbit-label {
    position: absolute; left: var(--x); top: var(--y); transform: translate(-50%,-50%);
    background: rgba(255,255,255,0.95); color: var(--ink); padding: 0.35rem 0.85rem;
    border-radius: 100px; font-size: 0.72rem; font-weight: 700;
    box-shadow: var(--shadow-md); transition: transform 0.4s var(--ease);
}
.hero-orbit:hover .hero-orbit-label { transform: translate(-50%,-50%) scale(1.05); }
.hero-passport-preview {
    position: absolute; bottom: 5%; inset-inline-start: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--clay) 100%);
    color: var(--ink); padding: 1.25rem 1.5rem; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); max-width: min(240px, 92%);
    transition: transform 0.5s var(--ease);
    animation: floatSoft 5s ease-in-out infinite;
    box-sizing: border-box;
}
.hero-passport-preview:hover { transform: translateY(-6px) rotate(-1deg); }
.hero-passport-tag { display: block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 0.4rem; }
.hero-passport-preview strong { display: block; font-size: 0.88rem; line-height: 1.4; margin-bottom: 0.3rem; word-break: break-word; }
.hero-passport-preview em { font-style: normal; font-weight: 800; font-size: 0.95rem; }
@keyframes floatSoft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.68rem; opacity: 0.4; letter-spacing: 0.15em;
}
.hero-scroll-hint span { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }


.search-panel { margin-top: -3.5rem; position: relative; z-index: 20; padding-bottom: 1rem; }
.boarding-search {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden;
}
.boarding-search-head {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 2rem; background: var(--ink); color: var(--cream);
}
.boarding-search-icon { font-size: 1.2rem; color: var(--gold); }
.boarding-search-head strong { display: block; font-size: 0.95rem; }
.boarding-search-head small { font-size: 0.75rem; opacity: 0.65; }
.boarding-search-grid {
    display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 1.25rem;
    padding: 1.75rem 2rem; align-items: end;
}
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--mist); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--cream-deep);
    border-radius: 10px; font-family: var(--font); font-size: 0.9rem;
    background: var(--cream); color: var(--ink); transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(24,168,150,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }


.section { padding: var(--section-y) 0; }
.section-featured { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.section-why { background: var(--ink); color: var(--cream); }
.section-journey { background: var(--white); }
.section-gallery-full { padding: 0; }
.section-testimonials { background: var(--cream-deep); }
.section-similar { background: var(--white); }

.section-editorial {
    display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem 2rem;
    align-items: end; margin-bottom: 3.5rem;
}
.section-editorial-num {
    font-size: 3rem; font-weight: 900; color: var(--teal); opacity: 0.2;
    line-height: 1; font-variant-numeric: tabular-nums;
}
.section-editorial-light .section-editorial-num { color: var(--gold); opacity: 0.25; }
.section-editorial-light .eyebrow { color: var(--gold-light); }


.ticket-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.ticket-grid-stagger .passport-ticket:nth-child(even) { margin-right: clamp(0px, 4vw, 48px); }
.ticket-grid-stagger .passport-ticket:nth-child(odd) { margin-left: clamp(0px, 4vw, 48px); }

.passport-ticket {
    display: grid; grid-template-columns: 200px 24px 1fr;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); border: 1px solid var(--line);
    overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    position: relative;
}
.passport-ticket::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(201,169,98,0.04));
    pointer-events: none;
}
.passport-ticket:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.passport-ticket-stub { background: var(--ink); color: var(--cream); display: flex; flex-direction: column; }
.passport-stub-top { display: flex; justify-content: space-between; padding: 0.75rem 1rem; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; border-bottom: 1px solid rgba(255,255,255,0.08); }
.passport-class { color: var(--gold); }
.passport-stub-visual { position: relative; flex: 1; min-height: 140px; overflow: hidden; }
.passport-stub-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.6s var(--ease), opacity 0.4s; }
.passport-ticket:hover .passport-stub-visual img { transform: scale(1.08); opacity: 1; }
.passport-stamp {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-18deg);
    border: 3px double var(--gold); color: var(--gold); padding: 0.3rem 0.7rem;
    font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em; border-radius: 4px;
    opacity: 0.7; transition: transform 0.5s var(--ease), opacity 0.4s;
}
.passport-ticket:hover .passport-stamp { transform: translate(-50%,-50%) rotate(-12deg) scale(1.1); opacity: 1; }
.passport-barcode { display: flex; gap: 2px; padding: 0.6rem 1rem; justify-content: center; }
.passport-barcode span { display: block; width: 3px; height: 28px; background: rgba(255,255,255,0.3); border-radius: 1px; }
.passport-barcode span:nth-child(odd) { height: 22px; }
.passport-barcode span:nth-child(3n) { height: 32px; background: var(--gold); opacity: 0.6; }

.passport-ticket-perforation {
    display: flex; flex-direction: column; justify-content: space-evenly; align-items: center;
    background: var(--cream); position: relative;
}
.passport-ticket-perforation::before, .passport-ticket-perforation::after {
    content: ''; position: absolute; width: 20px; height: 20px;
    background: var(--cream); border-radius: 50%; left: 50%; transform: translateX(-50%);
}
.passport-ticket-perforation::before { top: -10px; box-shadow: inset 0 -2px 4px rgba(0,0,0,0.06); }
.passport-ticket-perforation::after { bottom: -10px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.06); }
.passport-ticket-perforation i { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--cream-deep); border: 1px solid var(--line); }

.passport-ticket-main { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.passport-header { display: flex; justify-content: space-between; align-items: flex-start; }
.passport-route { display: flex; align-items: center; gap: 1rem; flex: 1; }
.passport-city small { display: block; font-size: 0.62rem; color: var(--mist); font-weight: 600; letter-spacing: 0.06em; }
.passport-city strong { display: block; font-size: 1rem; font-weight: 800; }
.passport-city span { font-size: 0.65rem; color: var(--teal); font-weight: 700; letter-spacing: 0.1em; }
.passport-route-line { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; color: var(--teal); min-width: 80px; }
.passport-route-line svg { width: 80px; height: 20px; }
.passport-duration { font-size: 0.65rem; font-weight: 700; color: var(--mist); }
.passport-serial { font-size: 0.68rem; font-weight: 800; color: var(--gold); letter-spacing: 0.08em; font-family: monospace; }
.passport-title { font-size: 1.1rem; font-weight: 800; line-height: 1.4; }
.passport-title a:hover { color: var(--teal); }
.passport-summary { font-size: 0.84rem; color: var(--mist); line-height: 1.7; }
.passport-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; padding: 0.75rem 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); }
.passport-meta-item small { display: block; font-size: 0.62rem; color: var(--mist); font-weight: 600; }
.passport-meta-item strong { font-size: 0.88rem; font-weight: 800; }
.passport-meta-price strong { color: var(--clay); }
.passport-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; gap: 1rem; }
.passport-mrz { font-size: 0.55rem; font-family: monospace; color: var(--mist); opacity: 0.5; letter-spacing: 0.05em; overflow: hidden; white-space: nowrap; max-width: 50%; }
.capacity-open { color: var(--teal-dark) !important; }
.capacity-low { color: var(--clay) !important; }
.capacity-full { color: #b33 !important; }


.ticket-grid-3 { gap: 1.25rem; }


.dest-editorial { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.dest-panel { position: relative; overflow: hidden; border-radius: var(--radius-lg); display: block; color: var(--white); }
.dest-panel-img { position: absolute; inset: 0; }
.dest-panel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.dest-panel:hover .dest-panel-img img { transform: scale(1.1); }
.dest-panel-info {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem; background: linear-gradient(to top, rgba(12,21,36,0.9) 0%, transparent 65%);
    transition: padding 0.4s var(--ease);
}
.dest-panel:hover .dest-panel-info { padding-bottom: 2rem; }
.dest-panel-region { font-size: 0.68rem; font-weight: 600; opacity: 0.75; letter-spacing: 0.08em; }
.dest-panel h3 { font-size: 1.35rem; font-weight: 800; margin: 0.2rem 0; }
.dest-panel-count { font-size: 0.75rem; color: var(--gold-light); font-weight: 600; }
.dest-panel-arrow { position: absolute; top: 1.25rem; left: 1.25rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); display: grid; place-items: center; font-size: 0.9rem; opacity: 0; transform: translateX(10px); transition: all 0.4s var(--ease); }
.dest-panel:hover .dest-panel-arrow { opacity: 1; transform: none; }
.dest-panel-1 { grid-column: span 5; grid-row: span 2; }
.dest-panel-2 { grid-column: span 4; }
.dest-panel-3 { grid-column: span 3; grid-row: span 2; }
.dest-panel-4 { grid-column: span 4; }
.dest-panel-5 { grid-column: span 3; }


.bento-why { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(140px, auto); gap: 1rem; }
.bento-cell { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 1.5rem; transition: background 0.4s, transform 0.4s var(--ease); }
.bento-cell:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.bento-manifesto { grid-column: span 2; grid-row: span 2; font-size: 1.15rem; line-height: 1.9; display: flex; align-items: center; }
.bento-manifesto em { color: var(--gold); }
.bento-stat span { display: block; font-size: 2.5rem; font-weight: 900; color: var(--teal); line-height: 1; }
.bento-stat small { font-size: 0.78rem; opacity: 0.6; }
.bento-stat-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--clay) 100%); border: none; color: var(--ink); }
.bento-stat-gold span { color: var(--ink); }
.bento-point { display: flex; gap: 1rem; align-items: flex-start; }
.bento-point strong { font-size: 1.2rem; color: var(--gold); font-weight: 900; flex-shrink: 0; }
.bento-point p { font-size: 0.88rem; opacity: 0.85; line-height: 1.7; }
.bento-quote { grid-column: span 2; font-style: italic; opacity: 0.9; display: flex; align-items: center; border-color: var(--gold); border-width: 0 3px 0 0; border-style: solid; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }


.journey-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.journey-rail::before {
    content: ''; position: absolute; top: 32px; right: 8%; left: 8%; height: 2px;
    background: linear-gradient(to left, var(--teal), var(--gold), var(--clay));
}
.journey-rail-step { text-align: center; padding: 0 1rem; position: relative; }
.journey-rail-marker {
    width: 64px; height: 64px; margin: 0 auto 1.25rem; border-radius: 50%;
    background: var(--white); border: 3px solid var(--teal); color: var(--ink);
    display: grid; place-items: center; font-size: 1.3rem; font-weight: 900;
    position: relative; z-index: 1; transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
}
.journey-rail-step:hover .journey-rail-marker { background: var(--teal); color: var(--white); transform: scale(1.08); }
.journey-rail-body h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.journey-rail-body p { font-size: 0.82rem; color: var(--mist); line-height: 1.7; }


.gallery-editorial {
    display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(4, 140px); gap: 6px;
    position: relative; min-height: 560px;
}
.gallery-editorial-item {
    background-size: cover; background-position: center;
    transition: filter 0.5s, transform 0.6s var(--ease-out);
    cursor: pointer;
}
.gallery-editorial-item:hover { filter: brightness(1.1); transform: scale(1.02); z-index: 2; }
.ge-1 { grid-column: 1/5; grid-row: 1/3; }
.ge-2 { grid-column: 5/8; grid-row: 1/2; }
.ge-3 { grid-column: 8/13; grid-row: 1/3; }
.ge-4 { grid-column: 5/7; grid-row: 2/5; }
.ge-5 { grid-column: 7/13; grid-row: 3/5; }
.gallery-editorial-caption {
    position: absolute; bottom: 3rem; right: 3rem; z-index: 5;
    background: var(--ink); color: var(--cream); padding: 2rem 2.5rem;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    border-right: 4px solid var(--gold);
}
.gallery-editorial-caption h2 { font-size: 1.6rem; line-height: 1.35; margin-top: 0.5rem; }


.quotes-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.quote-card {
    background: var(--white); padding: 2rem 1.75rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-card-2 { margin-top: 2rem; }
.quote-card-3 { margin-top: 1rem; }
.quote-mark { font-size: 4rem; line-height: 0.5; color: var(--gold); opacity: 0.3; font-family: Georgia, serif; margin-bottom: 0.5rem; }
.quote-card p { font-size: 0.92rem; line-height: 1.85; color: var(--ink-muted); margin-bottom: 1.25rem; }
.quote-card cite { font-style: normal; font-weight: 800; font-size: 0.88rem; display: block; }
.quote-card footer span { font-size: 0.72rem; color: var(--mist); }
.quote-stars { color: var(--gold); font-size: 0.75rem; margin-top: 0.5rem; letter-spacing: 2px; }


.magazine-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.25rem; }
.magazine-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.magazine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.magazine-card-featured { grid-row: span 2; }
.magazine-card-img { display: block; aspect-ratio: 16/10; overflow: hidden; }
.magazine-card-featured .magazine-card-img { aspect-ratio: 16/11; }
.magazine-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.magazine-card:hover .magazine-card-img img { transform: scale(1.06); }
.magazine-card-body { padding: 1.35rem; }
.blog-cat { font-size: 0.68rem; font-weight: 800; color: var(--teal); letter-spacing: 0.06em; }
.magazine-card h3 { font-size: 1rem; margin: 0.5rem 0; line-height: 1.45; }
.magazine-card h3 a:hover { color: var(--teal); }
.magazine-card p { font-size: 0.84rem; color: var(--mist); line-height: 1.7; }


.cta-luxury {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-muted) 50%, var(--teal-dark) 100%);
    color: var(--cream); padding: clamp(2.5rem, 5vw, 4rem);
    display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-luxury-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='%23fff' stroke-width='0.5'/%3E%3C/svg%3E");
}
.cta-luxury-content, .cta-luxury-actions { position: relative; z-index: 1; }
.cta-luxury h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0.5rem 0; line-height: 1.3; }
@media (min-width: 768px) {
    .cta-luxury h2 { white-space: nowrap; }
}
.cta-luxury p { opacity: 0.7; font-size: 0.9rem; }
.cta-luxury-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


.night-footer {
    position: relative; background: #060d18; color: var(--cream);
    overflow: hidden; margin-top: 0;
    display: flex; flex-direction: column;
}


.night-footer__stars {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 15%, rgba(201,169,98,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 45%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 75%, rgba(24,168,150,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 88%, rgba(255,255,255,0.25) 0%, transparent 100%);
    animation: nightStarsTwinkle 8s ease-in-out infinite alternate;
}
@keyframes nightStarsTwinkle { from { opacity: 0.6; } to { opacity: 1; } }

.night-footer__grid {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
    background-image:
        linear-gradient(rgba(201,169,98,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,98,0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

.night-footer__aurora {
    position: absolute; width: 80%; height: 50%; top: -10%; right: -20%;
    background: radial-gradient(ellipse, rgba(24,168,150,0.08) 0%, transparent 60%);
    pointer-events: none; animation: nightAurora 12s ease-in-out infinite alternate;
}
@keyframes nightAurora { from { transform: translateX(0) scale(1); } to { transform: translateX(-5%) scale(1.05); } }


.night-footer__map-band {
    position: relative; flex-shrink: 0;
    height: clamp(160px, 22vw, 220px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.night-footer__map {
    position: relative; height: 100%;
    pointer-events: none;
}
.night-footer__routes {
    width: 100%; height: 100%; opacity: 0.7;
    display: block;
}
.night-route--main { animation: nightDashMain 40s linear infinite; }
.night-route--sub { animation: nightDashSub 55s linear infinite reverse; }
.night-route--flow { animation: nightDashFlow 30s linear infinite; }
@keyframes nightDashMain { to { stroke-dashoffset: -600; } }
@keyframes nightDashSub { to { stroke-dashoffset: -400; } }
@keyframes nightDashFlow { to { stroke-dashoffset: -200; } }

.night-pin {
    position: absolute; left: var(--x); top: var(--y);
    transform: translate(-50%, -50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
    pointer-events: auto; cursor: default;
    animation: nightPinFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--x) * 0.05s);
}
@keyframes nightPinFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 6px)); }
}
.night-pin__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--teal); box-shadow: 0 0 12px rgba(24,168,150,0.8), 0 0 24px rgba(24,168,150,0.3);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.night-pin--gold .night-pin__dot { background: var(--gold); box-shadow: 0 0 12px rgba(201,169,98,0.8), 0 0 24px rgba(201,169,98,0.3); }
.night-pin:hover .night-pin__dot { transform: scale(1.5); }
.night-pin__label {
    font-size: 0.68rem; font-weight: 700; color: rgba(247,242,234,0.75);
    background: rgba(6,13,24,0.7); padding: 0.2rem 0.55rem; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08); white-space: nowrap;
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.night-pin:hover .night-pin__label { color: var(--gold-light); border-color: rgba(201,169,98,0.4); }
.night-pin.is-lit .night-pin__dot { transform: scale(1.3); }
.night-pin.is-lit .night-pin__label { color: var(--cream); border-color: rgba(24,168,150,0.4); background: rgba(6,13,24,0.9); }

.night-flow-step {
    position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
    color: rgba(201,169,98,0.45); text-transform: uppercase;
}


.night-footer__stage {
    position: relative; z-index: 2; flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
        "brand  cta     offers"
        "bottom bottom  bottom";
    gap: 1.75rem 2rem;
    padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
    align-items: start;
}
.night-footer__stage > * { min-width: 0; }
.night-footer__brand   { grid-area: brand; }
.night-footer__cta     { grid-area: cta; align-self: stretch; }
.night-footer__offers   { grid-area: offers; }
.night-footer__bottom-slot {
    grid-area: bottom;
    width: 100%;
    position: relative;
}
.night-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    width: 100%;
    padding-top: 1.25rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}
.night-footer__bottom .night-pill {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(247, 242, 234, 0.92);
}
.night-footer__bottom .night-footer__social-label {
    color: rgba(247, 242, 234, 0.7);
}
.night-footer__bottom .night-social__btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(247, 242, 234, 0.85);
}
.night-footer__logo {
    display: inline-flex; align-items: center; gap: 0.85rem;
    color: var(--cream); margin-bottom: 1.5rem;
    transition: opacity 0.3s;
}
.night-footer__logo:hover { opacity: 0.85; }
.night-footer__logo img { height: 48px; }
.night-footer__logo-mark {
    width: 52px; height: 52px; border-radius: 16px 16px 16px 4px;
    background: linear-gradient(135deg, var(--gold), var(--clay));
    color: var(--ink); display: grid; place-items: center;
    font-weight: 900; font-size: 1.3rem;
    box-shadow: 0 8px 32px rgba(201,169,98,0.25);
}
.night-footer__logo-text { font-size: 1.25rem; font-weight: 900; }
.night-footer__manifesto {
    font-size: 0.9rem; line-height: 1.95; opacity: 0.7;
    max-width: 420px; margin-bottom: 1.25rem;
}
.night-footer__quote {
    font-size: 0.95rem; font-style: italic; font-weight: 500;
    line-height: 1.85; opacity: 0.88; max-width: 400px;
    padding: 0 0 0 1.25rem; border-right: 3px solid var(--gold);
    margin-bottom: 1.5rem;
}
.night-footer__seal {
    display: inline-block; transform: rotate(-14deg);
    border: 2px double rgba(201,169,98,0.5); color: rgba(201,169,98,0.6);
    padding: 0.45rem 0.9rem; border-radius: 4px;
    font-size: 0.68rem; font-weight: 900; letter-spacing: 0.14em;
    transition: transform 0.5s var(--ease), opacity 0.4s;
}
.night-footer__brand:hover .night-footer__seal { transform: rotate(-8deg); opacity: 1; }
.night-footer__seal small { display: block; font-size: 0.5rem; letter-spacing: 0.22em; opacity: 0.6; margin-top: 0.1rem; }


.night-footer__cta {
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.night-footer__cta-kicker {
    display: block; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.16em; color: var(--teal); margin-bottom: 1rem;
}
.night-footer__cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 1rem;
}
.night-footer__cta-title em { font-style: normal; color: var(--gold); }
.night-footer__cta p {
    font-size: 0.88rem; opacity: 0.65; line-height: 1.85;
    max-width: 380px; margin-bottom: 1.75rem;
}
.night-footer__cta-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }


.night-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 0.9rem 1.75rem; border-radius: 100px; font-family: var(--font);
    font-size: 0.88rem; font-weight: 700; border: none; cursor: pointer;
    transition: all 0.45s var(--ease); text-align: center;
}
.night-btn--hero {
    background: linear-gradient(135deg, var(--gold) 0%, var(--clay) 100%);
    color: var(--ink); padding: 1.1rem 2.25rem; font-size: 1rem;
    box-shadow: 0 8px 32px rgba(201,169,98,0.3);
}
.night-btn--hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(201,169,98,0.45);
}
.night-btn--hero svg { transition: transform 0.4s var(--ease); }
.night-btn--hero:hover svg { transform: translateX(-4px); }
.night-btn--ghost {
    background: transparent; color: rgba(247,242,234,0.7);
    border: 1.5px solid rgba(255,255,255,0.15);
}
.night-btn--ghost:hover { background: rgba(255,255,255,0.06); color: var(--cream); border-color: rgba(255,255,255,0.3); }
.night-btn--advisor {
    width: 100%; background: var(--teal); color: var(--white); margin-top: 0.5rem;
}
.night-btn--advisor:hover { background: var(--teal-dark); transform: translateY(-2px); }
.night-btn--submit {
    background: var(--gold); color: var(--ink); white-space: nowrap;
    padding: 0.8rem 1.25rem; font-size: 0.82rem;
}
.night-btn--submit:hover { background: var(--gold-light); transform: translateY(-2px); }


.night-footer__advisor {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 1.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.4s;
}
.night-footer__advisor:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    border-color: rgba(24,168,150,0.25);
}
.night-advisor__header {
    display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem;
}
.night-advisor__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--ink-muted));
    display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
    border: 2px solid rgba(201,169,98,0.4);
}
.night-advisor__avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.night-advisor__role { display: block; font-size: 0.68rem; color: var(--teal); font-weight: 700; }
.night-advisor__header strong { font-size: 0.92rem; }
.night-advisor__status {
    margin-right: auto; font-size: 0.62rem; font-weight: 700;
    color: #4ade80; background: rgba(74,222,128,0.1);
    padding: 0.2rem 0.5rem; border-radius: 100px;
}
.night-advisor__status::before { content: '● '; font-size: 0.5rem; }
.night-advisor__msg {
    font-size: 0.82rem; opacity: 0.75; line-height: 1.75;
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.night-advisor__contacts { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }
.night-advisor__row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.45rem 0; font-size: 0.82rem;
    transition: padding-right 0.3s var(--ease);
}
.night-advisor__row:hover { padding-right: 6px; }
.night-advisor__row span { color: var(--mist); font-size: 0.72rem; font-weight: 600; }
.night-advisor__row strong { color: var(--gold-light); font-weight: 700; }
.night-advisor__row:hover strong { color: var(--teal); }
.night-advisor__meta {
    display: flex; flex-direction: column; gap: 0.2rem;
    font-size: 0.68rem; opacity: 0.45; margin-bottom: 0.75rem;
}


.night-offers__ticket {
    background: linear-gradient(160deg, rgba(201,169,98,0.1) 0%, rgba(6,13,24,0.8) 100%);
    border: 1px solid rgba(201,169,98,0.2); border-radius: 16px;
    padding: 1.5rem; position: relative; overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s;
}
.night-offers__ticket::before {
    content: ''; position: absolute; top: 50%; left: -8px;
    width: 16px; height: 16px; background: #060d18; border-radius: 50%;
    transform: translateY(-50%); box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
}
.night-offers__ticket::after {
    content: ''; position: absolute; top: 50%; right: -8px;
    width: 16px; height: 16px; background: #060d18; border-radius: 50%;
    transform: translateY(-50%);
}
.night-offers__ticket:hover { transform: translateY(-4px); border-color: rgba(201,169,98,0.4); }
.night-offers__ticket-head {
    display: flex; justify-content: space-between;
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em;
    color: rgba(201,169,98,0.5); margin-bottom: 0.75rem;
}
.night-offers__ticket h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.4rem; line-height: 1.5; }
.night-offers__ticket p { font-size: 0.78rem; opacity: 0.6; line-height: 1.7; margin-bottom: 1rem; }
.night-offers__form { display: flex; flex-direction: column; gap: 0.6rem; }
.night-offers__form input {
    padding: 0.8rem 1rem; border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.1);
    background: rgba(6,13,24,0.6); color: var(--cream);
    font-family: var(--font); font-size: 0.85rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.night-offers__form input::placeholder { color: rgba(247,242,234,0.35); }
.night-offers__form input:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(24,168,150,0.15);
}
.night-offers__pwa-hint {
    margin-top: 0.85rem;
    font-size: 0.74rem;
    line-height: 1.8;
    opacity: 0.72;
}
.night-offers__pwa-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--gold);
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}


.night-footer__pills {
    display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}
.night-pill {
    padding: 0.5rem 1.1rem; border-radius: 100px;
    font-size: 0.78rem; font-weight: 600;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(247,242,234,0.75);
    transition: all 0.4s var(--ease);
}
button.night-pill {
    font-family: var(--font);
    cursor: pointer;
    appearance: none;
}
.night-pill--licenses {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.night-pill-chevron {
    flex-shrink: 0;
    transition: transform 0.35s var(--ease);
}
.night-pill--licenses.is-active .night-pill-chevron {
    transform: rotate(180deg);
}
.night-pill:hover,
.night-pill--licenses.is-active {
    background: rgba(24,168,150,0.12); border-color: var(--teal);
    color: var(--cream); transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24,168,150,0.2);
}
.night-pill--licenses.is-active {
    background: rgba(201,169,98,0.14);
    border-color: rgba(201,169,98,0.45);
    color: var(--gold-light);
    box-shadow: 0 6px 20px rgba(201,169,98,0.18);
}
.night-footer__social-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-inline-start: auto;
    flex-shrink: 0;
}
.night-footer__social-inline .night-footer__social-label {
    margin-bottom: 0;
    white-space: nowrap;
}


.night-footer__social-label {
    display: block; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; color: var(--mist); margin-bottom: 0.75rem;
}
.night-social { display: flex; gap: 0.65rem; }
.night-social__btn {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(247,242,234,0.7);
    transition: all 0.45s var(--ease);
}
.night-social__icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}
.night-social__icon--bale,
.night-social__icon--wa {
    filter: brightness(0) invert(1);
    opacity: 0.88;
}
.night-social__btn[data-network="bale"]:hover .night-social__icon--bale {
    filter: none;
    opacity: 1;
}
.night-social__btn[data-network="wa"]:hover .night-social__icon--wa {
    opacity: 1;
}
.night-social__btn:hover {
    transform: translateY(-4px) rotate(-3deg);
    color: var(--cream);
}
.night-social__btn[data-network="ig"]:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d); border-color: transparent; box-shadow: 0 8px 24px rgba(131,58,180,0.35); }
.night-social__btn[data-network="tg"]:hover { background: #0088cc; border-color: transparent; box-shadow: 0 8px 24px rgba(0,136,204,0.35); }
.night-social__btn[data-network="wa"]:hover { background: #25d366; border-color: transparent; box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.night-social__btn[data-network="bale"]:hover { background: #0cca4a; border-color: transparent; box-shadow: 0 8px 24px rgba(12,202,74,0.35); }
.night-social__btn[data-network="rubika"]:hover { background: #7c3aed; border-color: transparent; box-shadow: 0 8px 24px rgba(124,58,237,0.35); }


.night-footer__bar {
    position: relative; z-index: 3;
    display: grid;
    grid-template-rows: 0fr;
    background: rgba(0,0,0,0.35);
    transition: grid-template-rows 0.45s var(--ease);
}
.night-footer__bar.is-open {
    grid-template-rows: 1fr;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.night-footer__bar-collapse {
    overflow: hidden;
    min-height: 0;
}
.night-footer__bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 1.25rem 0;
    font-size: 0.75rem;
    opacity: 0.55;
}
.night-footer__bar-copy { justify-self: start; margin: 0; }
.night-footer__bar-tagline {
    justify-self: center;
    text-align: center;
    margin: 0;
    font-style: italic;
    opacity: 0.85;
}
.night-footer__bar-tagline a { color: rgba(247,242,234,0.85); font-weight: 600; transition: color 0.3s; }
.night-footer__bar-tagline a:hover { color: var(--gold); }
.night-footer__enamad { justify-self: end; opacity: 1; flex-shrink: 0; line-height: 0; min-height: 72px; }
.night-footer__enamad img { display: block; max-height: 72px; width: auto; min-height: 72px; }


.tour-hero-cinema { position: relative; min-height: 75vh; display: flex; align-items: flex-end; overflow: hidden; }
.tour-hero-cinema-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s var(--ease-out); }
.tour-hero-cinema:hover .tour-hero-cinema-bg { transform: scale(1); }
.tour-hero-cinema-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--ink) 0%, rgba(12,21,36,0.5) 50%, rgba(12,21,36,0.2) 100%);
}
.tour-hero-cinema-inner {
    position: relative; display: grid; grid-template-columns: 1fr minmax(380px, 440px); gap: 3rem;
    align-items: flex-end; padding: 4rem 0 3rem; color: var(--cream);
}
.tour-hero-cinema-text h1 { margin: 0.75rem 0; }
.tour-hero-cinema-text p { opacity: 0.8; max-width: 560px; font-size: 1.02rem; }
.tour-passport-card {
    background: rgba(255,255,255,0.95); color: var(--ink); border-radius: var(--radius-lg);
    padding: 1.5rem; box-shadow: var(--shadow-lg); backdrop-filter: blur(12px);
    border-top: 4px solid var(--gold);
}
.tour-passport-card-head { display: flex; justify-content: space-between; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; color: var(--mist); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px dashed var(--line); }
.tour-passport-id { color: var(--gold); font-family: monospace; }
.tour-passport-card-body {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.35fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.tour-passport-stat small { display: block; font-size: 0.62rem; color: var(--mist); font-weight: 600; }
.tour-passport-stat strong { font-size: 0.95rem; font-weight: 800; }
.tour-passport-stat-price { min-width: 0; }
.tour-passport-stat-price strong {
    color: var(--clay);
    white-space: nowrap;
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
    letter-spacing: -0.01em;
}


.mosaic-gallery {
    display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; gap: 8px;
    margin-bottom: 3.5rem; border-radius: var(--radius-lg); overflow: hidden;
}
.mosaic-item { position: relative; overflow: hidden; cursor: pointer; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out), filter 0.4s; }
.mosaic-item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.mosaic-item figcaption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem;
    background: linear-gradient(to top, rgba(12,21,36,0.85), transparent);
    color: var(--white); font-size: 0.78rem; font-weight: 600;
    transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.mosaic-item:hover figcaption { transform: none; }
.mosaic-1 { grid-column: span 3; grid-row: span 2; }
.mosaic-2 { grid-column: span 3; }
.mosaic-3 { grid-column: span 2; }
.mosaic-4 { grid-column: span 2; }
.mosaic-5 { grid-column: span 2; }


.content-editorial { margin-bottom: 3.5rem; }
.content-editorial-title { margin-bottom: 2rem; font-size: 1.1rem; }
.content-editorial-title span {
    display: inline-block; padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--gold);
}
.prose-luxury { font-size: 1.02rem; line-height: 2; color: var(--ink-muted); }
.itinerary-luxury { position: relative; padding: 1rem 0; }
.itinerary-luxury::before {
    content: ''; position: absolute; top: 0; bottom: 0; right: 50%; width: 2px;
    background: linear-gradient(to bottom, var(--teal), var(--gold), var(--clay));
    transform: translateX(50%);
}
.itinerary-luxury-day {
    display: grid; grid-template-columns: 1fr 80px 1fr; gap: 1.5rem;
    margin-bottom: 2rem; align-items: start;
}
.itinerary-luxury-marker {
    grid-column: 2; display: flex; flex-direction: column; align-items: center;
    background: var(--ink); color: var(--gold); width: 64px; height: 64px;
    border-radius: 50%; justify-content: center; position: relative; z-index: 1;
    box-shadow: 0 0 0 6px var(--cream), var(--shadow-sm);
    transition: transform 0.4s var(--ease), background 0.4s;
}
.itinerary-luxury-day:hover .itinerary-luxury-marker { transform: scale(1.1); background: var(--teal); color: var(--white); }
.itinerary-luxury-num { font-size: 1.3rem; font-weight: 900; line-height: 1; }
.itinerary-luxury-label { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; }
.itinerary-luxury-card {
    background: var(--white); padding: 1.5rem 1.75rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.itinerary-luxury-day:hover .itinerary-luxury-card { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.itinerary-left .itinerary-luxury-card { grid-column: 1; text-align: left; }
.itinerary-left .itinerary-luxury-marker { grid-column: 2; }
.itinerary-right .itinerary-luxury-card { grid-column: 3; }
.itinerary-right .itinerary-luxury-marker { grid-column: 2; }
.itinerary-luxury-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.itinerary-luxury-card p { font-size: 0.88rem; color: var(--mist); line-height: 1.8; }
.itinerary-luxury-tag {
    display: inline-block; margin-top: 0.75rem; font-size: 0.72rem; font-weight: 700;
    background: linear-gradient(135deg, rgba(201,169,98,0.15), rgba(24,168,150,0.1));
    color: var(--clay); padding: 0.3rem 0.75rem; border-radius: 100px;
}


.info-luxury-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.info-luxury-card {
    background: var(--white); padding: 1.75rem; border-radius: var(--radius-lg);
    border: 1px solid var(--line); transition: border-color 0.3s, transform 0.4s var(--ease);
}
.info-luxury-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.info-luxury-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-size: 0.85rem; font-weight: 900; margin-bottom: 1rem; }
.info-luxury-card h3 { font-size: 0.92rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--teal-dark); }
.prose { font-size: 0.88rem; line-height: 1.9; color: var(--ink-muted); }


.tour-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.tour-sidebar-luxury { position: sticky; top: 100px; height: fit-content; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-luxury-card { background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.sidebar-luxury-card h3 { font-size: 0.88rem; font-weight: 800; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.sidebar-luxury-list div { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 0.84rem; }
.sidebar-luxury-list dt { color: var(--mist); font-weight: 600; }
.sidebar-luxury-list dd { font-weight: 800; text-align: left; }
.sidebar-luxury-dates { list-style: none; }
.sidebar-luxury-dates li { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.84rem; }
.date-val { font-weight: 700; }
.sidebar-luxury-cta { background: var(--ink); color: var(--cream); padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; }
.sidebar-luxury-cta p { font-size: 0.82rem; opacity: 0.7; margin-bottom: 1rem; }
.route-map-frame { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--line); text-align: center; }


.page-hero { padding: 4rem 0 3rem; background: var(--ink); color: var(--cream); }
.page-hero-compact { padding: 3rem 0 2rem; }
.tours-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; }
.tours-filters { background: var(--white); padding: 1.75rem; border-radius: var(--radius-lg); border: 1px solid var(--line); position: sticky; top: 100px; height: fit-content; }
.tours-filters h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 1.25rem; }
.tours-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; font-weight: 600; font-size: 0.88rem; }
.sort-form select { padding: 0.55rem 1rem; border-radius: 10px; border: 1.5px solid var(--cream-deep); font-family: var(--font); background: var(--cream); }
.empty-state { text-align: center; padding: 4rem 2rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line); }


.blog-grid, .blog-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 1.35rem; }
.blog-card h2, .blog-card h3 { font-size: 1rem; margin: 0.4rem 0; }
.blog-categories { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.blog-cat-pill { padding: 0.45rem 1.1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; background: var(--white); border: 1.5px solid var(--line); transition: all 0.3s; }
.blog-cat-pill.active, .blog-cat-pill:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }


.booking-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; }
.card-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.aside-card { background: var(--white); padding: 1.75rem; border-radius: var(--radius-lg); border: 1px solid var(--line); margin-bottom: 1rem; }
.aside-card-accent { background: var(--ink); color: var(--cream); border: none; }
.aside-phone { font-size: 1.4rem; font-weight: 800; color: var(--gold); }


.article-layout { max-width: 720px; }
.article-header { margin-bottom: 2.5rem; }
.article-excerpt { color: var(--mist); font-size: 1.1rem; line-height: 1.8; }
.article-hero-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; }
.faq-list { max-width: 720px; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 0.75rem; border: 1px solid var(--line); overflow: hidden; transition: border-color 0.3s; }
.faq-item[open] { border-color: var(--teal); }
.faq-item summary { padding: 1.15rem 1.5rem; cursor: pointer; font-weight: 700; font-size: 0.92rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 1.5rem 1.15rem; font-size: 0.88rem; color: var(--mist); line-height: 1.85; }
.page-content { max-width: 720px; }


.alert { padding: 0.9rem 1.5rem; margin: 1rem auto; width: min(1240px, 90vw); border-radius: var(--radius); font-size: 0.88rem; font-weight: 600; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }
.profile-incomplete-notice {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    font-size: 0.84rem;
    color: #8a6520;
    line-height: 1.65;
}
.profile-incomplete-notice strong { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; }
.profile-incomplete-notice p { margin: 0 0 0.35rem; }
.profile-incomplete-notice ul { margin: 0; padding-right: 1.1rem; }
.profile-incomplete-notice--panel { margin-bottom: 1.25rem; }
.tour-passport-card .profile-incomplete-notice,
.sidebar-luxury-cta .profile-incomplete-notice { margin-bottom: 0.85rem; }


[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal].revealed:nth-child(2) { transition-delay: 0.08s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.16s; }

.empty-page { text-align: center; padding: 8rem 0; }


@media (max-width: 1100px) {
    .hero-editorial-grid, .tour-hero-cinema-inner, .tour-detail-layout, .booking-layout, .tours-layout { grid-template-columns: 1fr; }
    .hero-editorial-visual { max-width: min(420px, 100%); }
    .hero-passport-preview {
        position: static; display: block; width: 100%; max-width: 100%;
        margin-top: 1.25rem; margin-inline: 0; left: auto; bottom: auto;
        box-sizing: border-box; animation: none;
    }
    .magazine-grid { grid-template-columns: 1fr 1fr; }
    .magazine-card-featured { grid-row: span 1; }
    .passport-ticket { grid-template-columns: 1fr; }
    .passport-ticket-perforation { display: none; }
    .passport-ticket-stub {
        flex-direction: column;
        position: relative;
    }
    .passport-stub-visual {
        width: 100%;
        min-height: 200px;
        aspect-ratio: 16 / 10;
        flex-shrink: 0;
    }
    .passport-stub-visual img { opacity: 1; }
    .passport-stub-top {
        position: absolute;
        top: 0;
        inset-inline: 0;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(180deg, rgba(6, 13, 24, 0.92) 0%, rgba(6, 13, 24, 0.45) 70%, transparent 100%);
        border-bottom: none;
        padding: 0.85rem 1rem;
    }
    .passport-stub-top .passport-class {
        flex-shrink: 0;
        background: rgba(201, 169, 98, 0.18);
        padding: 0.25rem 0.65rem;
        border-radius: 100px;
        border: 1px solid rgba(201, 169, 98, 0.45);
        font-size: 0.58rem;
    }
    .passport-barcode { display: none; }
    .passport-ticket-main { padding: 1.25rem 1rem; }
    .passport-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .passport-mrz { display: none; }
    .btn-passport { width: 100%; text-align: center; }
    .ticket-grid-stagger .passport-ticket { margin: 0 !important; }
    .itinerary-luxury::before { right: 32px; transform: none; }
    .itinerary-luxury-day { grid-template-columns: 64px 1fr; }
    .itinerary-luxury-marker { grid-column: 1 !important; grid-row: 1; }
    .itinerary-luxury-card { grid-column: 2 !important; }
    .tour-sidebar-luxury { position: static; }
    .tour-passport-card { max-width: none; width: 100%; }
}
@media (max-width: 900px) {
    .hero-editorial-visual { display: none !important; }
    .hero-editorial { min-height: auto; padding-bottom: 3rem; }
    .brand { flex: 1; min-width: 0; }
    .brand-text small { display: none; }
    .main-nav {
        position: fixed; inset: 0; top: 72px; z-index: 199;
        background: var(--cream);
        flex-direction: column; align-items: stretch;
        padding: 2.5rem; gap: 1.5rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease), visibility 0.4s var(--ease);
        visibility: hidden; pointer-events: none;
    }
    .main-nav.open {
        transform: translateX(0);
        visibility: visible; pointer-events: auto;
    }
    .nav-toggle { display: flex; margin-inline-start: auto; }
    .main-nav a:not(.btn) { font-size: 1.05rem; }
    .main-nav .btn-nav { width: 100%; margin-top: 0.5rem; }
    .journey-rail { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .journey-rail::before { display: none; }
    .bento-why { grid-template-columns: 1fr 1fr; }
    .bento-manifesto, .bento-quote { grid-column: span 2; }
    .quotes-wall { grid-template-columns: 1fr; }
    .quote-card-2, .quote-card-3 { margin-top: 0; }
    .dest-editorial { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .dest-panel { grid-column: span 1 !important; grid-row: span 1 !important; }
    .dest-panel-1 { grid-column: span 2 !important; grid-row: span 2 !important; }
    .boarding-search-grid { grid-template-columns: 1fr 1fr; }
    .night-footer__stage {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto;
        grid-template-areas:
            "brand brand"
            "cta offers"
            "bottom bottom";
    }
    .night-footer__cta { border-right: none; padding: 0; align-self: start; }
    .night-footer__offers { align-self: stretch; }
    .night-footer__bottom { margin-top: 0; }
    .night-footer__social-inline { margin-inline-start: 0; width: 100%; }
    .night-footer__bar-inner { grid-template-columns: 1fr; text-align: center; }
    .night-footer__bar-copy,
    .night-footer__bar-tagline,
    .night-footer__enamad { justify-self: center; }
    .section-editorial { grid-template-columns: 1fr; }
    .section-editorial-num { display: none; }
}
@media (max-width: 640px) {
    .passport-stub-visual { min-height: 180px; aspect-ratio: 4 / 3; }
    .gallery-editorial { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: auto; }
    .ge-1, .ge-2, .ge-3, .ge-4, .ge-5 { grid-column: span 1; grid-row: span 1; min-height: 160px; }
    .gallery-editorial-caption { position: static; margin: 1rem; }
    .mosaic-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .mosaic-1, .mosaic-2, .mosaic-3, .mosaic-4, .mosaic-5 { grid-column: span 1; grid-row: span 1; }
    .info-luxury-grid, .magazine-grid, .bento-why { grid-template-columns: 1fr; }
    .bento-manifesto, .bento-quote { grid-column: span 1; }
    .boarding-search-grid { grid-template-columns: 1fr; }
    .cta-luxury { flex-direction: column; text-align: center; }
    .hero-trust { gap: 1.5rem; flex-wrap: wrap; }
    .hero-editorial { padding-bottom: 2.5rem; }
    .night-footer__map-band { display: none; }
    .night-footer__stage {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "cta"
            "offers"
            "bottom";
        gap: 1.5rem;
        padding-top: 2rem;
    }
    .night-footer__cta { text-align: center; border: none; }
    .night-footer__cta p, .night-footer__manifesto, .night-footer__quote { max-width: none; }
    .night-footer__cta-btns { align-items: center; }
    .night-footer__bottom { flex-direction: column; align-items: stretch; }
    .night-footer__pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        max-width: 100%;
    }
    .night-footer__pills::-webkit-scrollbar { display: none; }
    .night-footer__pills .night-pill { flex-shrink: 0; white-space: nowrap; }
    .night-footer__social-inline { justify-content: center; }
    .night-footer__cta-title { font-size: 2rem; }
    .night-pin__label, .night-flow-step { font-size: 0.55rem; }
}

/* ─── احراز هویت و پنل کاربری ─── */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.auth-page-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 1.5rem;
    min-height: 0;
}
.auth-page-section {
    width: 100%;
    padding: 0;
}
.auth-page .alert {
    width: min(480px, 90vw);
    margin: 0.75rem auto 0;
    flex-shrink: 0;
}
.auth-page .card-form.auth-form {
    padding: 1.75rem 1.5rem;
}
.auth-layout { max-width: 480px; margin-inline: auto; }
.auth-form .form-group { margin-bottom: 1.15rem; }
.auth-form .form-row { margin-bottom: 1.15rem; gap: 1rem; }
.auth-form .form-row .form-group { margin-bottom: 0; }
.auth-form .form-group:last-of-type { margin-bottom: 0; }
.auth-form .btn-block { margin-top: 1.75rem; }
.auth-form .auth-links { margin-top: 1.5rem; text-align: center; font-size: 0.88rem; color: var(--ink-muted); }
.auth-form .auth-links a,
.auth-form .auth-links .auth-link-btn { color: var(--teal-dark); font-weight: 600; background: none; border: none; padding: 0; font-family: inherit; font-size: inherit; cursor: pointer; }
.auth-form .auth-link-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.auth-step-intro { text-align: center; margin-bottom: 1.5rem; }
.auth-step-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 16px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff; display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(24,168,150,0.28);
}
.auth-step-title { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.auth-step-desc { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; }
.auth-mobile-input { font-size: 1.05rem; letter-spacing: 0.04em; text-align: center; }

/* OTP boxes — inspired by modern OTP verification UX */
.otp-verify-form { text-align: center; }
.otp-verify-head { margin-bottom: 1.75rem; }
.otp-verify-icon {
    width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 14px;
    background: var(--cream-deep); color: var(--teal-dark);
    display: grid; place-items: center; border: 1px solid var(--line);
}
.otp-verify-title { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 0.5rem; }
.otp-verify-desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.8; }
.otp-mobile-display { color: var(--ink); font-weight: 700; }
.otp-verify-hint { font-size: 0.78rem; color: var(--mist); margin-top: 0.65rem; }

.otp-boxes-wrap { margin-bottom: 0.5rem; }
.otp-boxes {
    display: flex; justify-content: center; gap: 0.55rem;
    direction: ltr; margin: 0 auto 0.5rem;
}
.otp-box {
    width: 46px; height: 54px; text-align: center;
    font-size: 1.35rem; font-weight: 800; font-family: var(--font);
    border: 2px solid var(--cream-deep); border-radius: 12px;
    background: var(--cream); color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.15s;
    caret-color: transparent;
}
.otp-box:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(24,168,150,0.15); background: #fff; }
.otp-box.is-active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,98,0.2); transform: translateY(-2px); }
.otp-box.is-filled { border-color: var(--teal); background: #fff; }

.otp-success-state { padding: 1.5rem 0 0.5rem; animation: otpSuccessIn 0.4s ease; }
.otp-verify-form.is-verified [data-otp-input-area],
.otp-verify-form.is-verified [data-otp-resend-row],
.otp-verify-form.is-verified [data-otp-hint],
.otp-verify-form.is-verified .otp-submit-btn { display: none !important; }
.otp-verify-form.is-verified .otp-success-state { padding: 0.5rem 0 1rem; }
.otp-success-icon {
    width: 64px; height: 64px; margin: 0 auto 0.75rem; border-radius: 16px;
    background: linear-gradient(135deg, #e8f8f0, #d4f0e4);
    border: 2px solid #3d9b6e; color: #2a6b4a;
    display: grid; place-items: center;
    box-shadow: 0 8px 28px rgba(61,155,110,0.25);
}
.otp-success-text { font-size: 1.05rem; font-weight: 800; color: #2a6b4a; }
@keyframes otpSuccessIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.otp-verify-form .otp-submit-btn {
    margin-top: 1.25rem;
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.otp-verify-form .otp-submit-btn[hidden] { display: none; }
.otp-resend-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.35rem 0.5rem; }
.otp-resend-timer { font-size: 0.8rem; color: var(--mist); }

@media (max-width: 400px) {
    .otp-box { width: 40px; height: 48px; font-size: 1.2rem; }
    .otp-boxes { gap: 0.4rem; }
}
.field-error { display: block; color: #c0392b; font-size: 0.8rem; margin-top: 0.35rem; }
.input-error { border-color: #e74c3c !important; }

.user-panel-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; width: min(1240px, 90vw); margin: 2rem auto 4rem; align-items: start; }
.user-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.user-sidebar-head { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.user-sidebar-head strong { display: block; font-size: 1rem; }
.user-sidebar-head small { color: var(--mist); font-size: 0.78rem; }
.user-nav { display: flex; flex-direction: column; gap: 0.35rem; }
.user-nav a { padding: 0.65rem 0.85rem; border-radius: 10px; font-weight: 600; font-size: 0.88rem; color: var(--ink-muted); }
.user-nav a:hover { background: var(--cream-deep); color: var(--ink); }
.user-nav-logout { color: #c0392b !important; margin-top: 0.5rem; }
.user-panel-main { min-width: 0; }
.user-panel-header h1 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.card-form { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.user-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.user-stat-card { background: var(--white); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-sm); text-align: center; }
.user-stat-value { display: block; font-size: 2rem; font-weight: 800; color: var(--teal); }
.user-stat-label { font-size: 0.85rem; color: var(--ink-muted); font-weight: 600; }
.user-stat-link { display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--ease); }
.user-stat-link:hover { transform: translateY(-3px); color: var(--teal-dark); }
.user-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.user-table th, .user-table td { padding: 0.85rem 1rem; text-align: right; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.user-table th { background: var(--cream-deep); font-weight: 700; }
.user-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.user-search-form { display: flex; gap: 0.5rem; }
.user-search-form input { padding: 0.5rem 0.85rem; border: 1px solid var(--line); border-radius: 8px; font-family: var(--font); }
.user-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.inline-form { display: inline; }
.empty-state { text-align: center; padding: 2.5rem; }
.detail-list { display: grid; gap: 0.75rem; }
.detail-list div { display: grid; grid-template-columns: 140px 1fr; gap: 0.5rem; }
.detail-list dt { font-weight: 700; color: var(--ink-muted); font-size: 0.85rem; }
.form-divider { border: none; border-top: 1px solid var(--line); margin: 1.5rem 0; }
.badge { display: inline-block; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-contacted { background: #cce5ff; color: #004085; }
.badge-confirmed { background: #d4edda; color: #155724; }
.badge-cancelled, .badge-rejected { background: #f8d7da; color: #721c24; }
.badge-active { background: #d4edda; color: #155724; }
.badge-inactive { background: #f8d7da; color: #721c24; }
.booking-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.passenger-list { list-style: none; display: grid; gap: 0.75rem; margin: 0.75rem 0 1.25rem; }
.passenger-list li { padding: 0.75rem; background: var(--cream); border-radius: 10px; font-size: 0.88rem; display: grid; gap: 0.2rem; }
.passenger-group-title { font-size: 0.95rem; margin: 1rem 0 0.5rem; color: var(--teal-dark); }

/* ─── ویزارد رزرو ─── */
.booking-wizard-layout { max-width: 1000px; margin-inline: auto; }
.booking-wizard-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2.5rem; flex-wrap: wrap; }
.wizard-step { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; min-width: 100px; }
.wizard-step-num { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.9rem; background: var(--cream-deep); color: var(--mist); border: 2px solid var(--line); }
.wizard-step.active .wizard-step-num { background: var(--teal); color: var(--white); border-color: var(--teal); }
.wizard-step.done .wizard-step-num { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.wizard-step-label { font-size: 0.78rem; font-weight: 600; color: var(--mist); }
.wizard-step.active .wizard-step-label { color: var(--ink); }
.wizard-step-line { width: 60px; height: 2px; background: var(--line); margin: 0 0.25rem 1.2rem; }
.wizard-step-line.done { background: var(--gold); }
.booking-wizard-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; align-items: start; }
.booking-wizard-grid-wide { grid-template-columns: 1fr 1.6fr; }
.booking-wizard-form .form-actions,
.booking-final-form .form-actions { justify-content: space-between; width: 100%; }
.booking-tour-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.booking-tour-card-image img { width: 100%; height: 180px; object-fit: cover; }
.booking-tour-card-body { padding: 1.25rem; }
.booking-tour-card-body h2 { font-size: 1.15rem; margin: 0.35rem 0 1rem; }
.booking-tour-meta { list-style: none; display: grid; gap: 0.5rem; font-size: 0.88rem; }
.booking-tour-meta strong { color: var(--ink-muted); font-weight: 600; }
.passenger-counts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.passenger-fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.25rem; }
.passenger-fieldset legend { font-weight: 800; padding: 0 0.5rem; color: var(--teal-dark); }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-end; margin-top: 1.5rem; }
.booking-summary-title { font-size: 1.25rem; margin-bottom: 1rem; }
.booking-summary-subtitle { font-size: 1rem; margin: 1.25rem 0 0.75rem; }
.booking-summary-list { display: grid; gap: 0.65rem; margin-bottom: 1rem; }
.booking-summary-list div { display: grid; grid-template-columns: 130px 1fr; gap: 0.5rem; font-size: 0.9rem; }
.booking-summary-list dt { font-weight: 700; color: var(--ink-muted); }
.booking-summary-passengers { list-style: none; display: grid; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.9rem; }
.text-muted { color: var(--mist); font-size: 0.85rem; }
.consultation-notice { margin-bottom: 1rem; padding: 1rem; background: var(--cream); border-radius: 10px; }
.consultation-tour-list { list-style: none; display: grid; gap: 0.5rem; }
.consultation-tour-list a { color: var(--teal-dark); font-weight: 600; }

/* ─── تنظیمات اطلاع‌رسانی ─── */
.notify-page { display: grid; gap: 1.5rem; }
.notify-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.notify-card-head {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line);
}
.notify-card-head h2 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.notify-card-head p { font-size: 0.85rem; color: var(--mist); margin: 0; line-height: 1.7; }
.notify-card-icon {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
}
.notify-card-icon-mobile { background: #e8f8f5; color: var(--teal-dark); }
.notify-card-icon-sms { background: #fff8e6; color: #b8860b; }
.notify-card-icon-history { background: #eef2ff; color: #4338ca; }
.notify-mobile-box {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.25rem 1.5rem; background: var(--cream); border-radius: var(--radius); margin-bottom: 1.25rem;
}
.notify-mobile-number {
    font-size: 1.35rem; font-weight: 800; letter-spacing: 0.04em; color: var(--ink);
}
.notify-mobile-status { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; }
.notify-mobile-status small { font-size: 0.78rem; color: var(--mist); }
.notify-verify-block {
    display: grid; gap: 1.25rem; padding-top: 0.25rem;
}
.notify-verify-send { margin: 0; }
.notify-verify-form {
    display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: end;
    padding: 1.25rem; background: #faf9f6; border-radius: var(--radius); border: 1px dashed var(--line);
}
.notify-verify-form .form-group { margin: 0; }
.notify-code-input {
    max-width: 180px; text-align: center; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.2em;
}
.notify-prefs-form { display: grid; gap: 0.85rem; }
.notify-option {
    display: flex; align-items: flex-start; gap: 0.85rem; cursor: pointer;
    padding: 1rem 1.15rem; border: 1.5px solid var(--line); border-radius: var(--radius);
    background: var(--white); transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.notify-option:hover { border-color: rgba(24,168,150,0.35); background: #fafdfb; }
.notify-option input[type="checkbox"] {
    width: 20px; height: 20px; margin-top: 0.15rem; flex-shrink: 0;
    accent-color: var(--teal); cursor: pointer;
}
.notify-option-box { display: grid; gap: 0.25rem; flex: 1; }
.notify-option-box strong { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.notify-option-box small { font-size: 0.8rem; color: var(--mist); line-height: 1.6; }
.notify-option:has(input:checked) { border-color: var(--teal); background: rgba(24,168,150,0.04); }
.notify-option-danger:hover { border-color: rgba(192,57,43,0.3); background: #fffafa; }
.notify-option-danger:has(input:checked) { border-color: #e74c3c; background: #fff5f5; }
.notify-warning {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.9rem 1rem; border-radius: var(--radius);
    background: #fff8e6; border: 1px solid #ffe08a; color: #856404; font-size: 0.85rem; line-height: 1.7;
}
.notify-warning svg { flex-shrink: 0; margin-top: 0.1rem; }
.notify-form-actions { margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.notify-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.notify-table { box-shadow: none; border-radius: 0; }
.notify-table th { white-space: nowrap; }
.notify-msg-cell { max-width: 360px; line-height: 1.7; }
.notify-date-cell { white-space: nowrap; color: var(--ink-muted); font-size: 0.82rem; }
.user-nav a.is-active { background: rgba(24,168,150,0.1); color: var(--teal-dark); }

.profile-form .form-group { margin-bottom: 1.15rem; }
.profile-form .form-row { margin-bottom: 1.15rem; }
.profile-form .form-row .form-group { margin-bottom: 0; }
.profile-form .form-group:last-of-type { margin-bottom: 0; }
.profile-form__submit-row { align-items: end; margin-bottom: 0; }
.profile-form__submit-actions {
    margin-top: 0;
    justify-content: flex-end;
    align-self: end;
}

.user-sidebar-drawer { display: none; }

@media (max-width: 900px) {
    .user-panel-wrap { grid-template-columns: 1fr; }
    .user-sidebar--desktop { display: none; }
    .user-sidebar-drawer {
        display: block;
        position: fixed;
        inset: 0;
        top: 72px;
        z-index: 198;
        pointer-events: none;
    }
    .user-sidebar-drawer__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(6, 13, 24, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
    }
    .user-sidebar--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 88vw);
        margin: 0;
        border-radius: 0;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        pointer-events: auto;
    }
    .user-sidebar-drawer.open {
        pointer-events: auto;
    }
    .user-sidebar-drawer.open .user-sidebar-drawer__backdrop {
        opacity: 1;
        visibility: visible;
    }
    .user-sidebar-drawer.open .user-sidebar--mobile {
        transform: translateX(0);
    }
    .user-panel-body .nav-toggle { display: flex; }
    .booking-wizard-grid, .booking-wizard-grid-wide, .booking-detail-grid { grid-template-columns: 1fr; }
    .booking-tour-card { position: static; }
    .passenger-counts { grid-template-columns: 1fr; }
    .wizard-step-line { width: 30px; }
    .notify-verify-form { grid-template-columns: 1fr; }
    .notify-verify-form .btn { width: 100%; }
    .notify-mobile-box { flex-direction: column; align-items: flex-start; }
    .notify-mobile-status { align-items: flex-start; }
    .profile-form .form-row { grid-template-columns: 1fr; gap: 1.15rem; }
    .profile-form__submit-actions { width: 100%; }
    .profile-form__submit-actions .btn { width: 100%; }
}

.booking-checkin-card { grid-column: 1 / -1; text-align: center; }
.booking-checkin-qr-wrap {
    display: inline-flex;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin: 1rem 0;
}
.booking-checkin-qr-wrap canvas,
.booking-checkin-qr-wrap img { display: block; border-radius: 8px; }
.booking-checkin-code-label {
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    margin: 0;
}
.booking-checkin-done {
    color: var(--teal);
    font-weight: 600;
    margin: 0;
}
.booking-detail-grid:has(.booking-checkin-card) {
    grid-template-columns: 1fr 1fr;
}
