/* ═══════════════════════════════════════
   Secretos Para La Victoria — Styles
   ═══════════════════════════════════════ */

:root {
    --white: #ffffff;
    --bg: #f8f9fa;
    --bg-warm: #f3f1ec;
    --dark: #1a1a1a;
    --text: #2d2d2d;
    --text-secondary: #555555;
    --text-muted: #777777;
    --teal: #0c8a9e;
    --teal-deep: #075d6e;
    --teal-dark: #064550;
    --teal-light: #e6f5f8;
    --gold: #c5993e;
    --gold-hover: #b38830;
    --gold-soft: rgba(197, 153, 62, 0.1);
    --border: #e0ddd8;
    --red: #c0392b;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* AOS fallback: if AOS CSS/JS fails to load, elements with [data-aos]
   would normally stay invisible. This rule reveals them so CTAs and
   content remain reachable. AOS's own stylesheet overrides this when loaded. */
[data-aos]:not(.aos-init) { opacity: 1; transform: none; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; outline: none; }

/* ═══════════ UTILITIES ═══════════ */
.container { max-width: 1100px; margin: 0 auto; }
.section { padding: 6rem 3rem; }

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.8rem;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 540px;
    font-weight: 400;
}

.btn-primary {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.8rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 3px;
    transition: all 0.35s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(197, 153, 62, 0.35);
}

.btn-outline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.8rem;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    border-radius: 3px;
    transition: all 0.35s ease;
    display: inline-block;
}

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

.btn-teal {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.8rem;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 3px;
    transition: all 0.35s ease;
    display: inline-block;
}

.btn-teal:hover {
    background: var(--teal-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(12, 138, 158, 0.3);
}

/* ═══════════ NAVBAR ═══════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.65rem 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Logo container: stack white and dark logos in the same spot so we
   can crossfade between them in sync with the nav background. */
.nav-logo {
    position: relative;
    display: inline-block;
    line-height: 0;
}
.nav-logo img {
    height: 56px;
    display: block;
    transition: height 0.4s ease, opacity 0.4s ease;
}
.nav.scrolled .nav-logo img { height: 38px; }

.nav-logo .logo-white { opacity: 1; }
.nav-logo .logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}
.nav.scrolled .nav-logo .logo-white { opacity: 0; }
.nav.scrolled .nav-logo .logo-dark  { opacity: 1; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}

.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--gold); }

.nav-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.6rem;
    background: var(--gold);
    border: none;
    color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-btn:hover { background: var(--gold-hover); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span { background: var(--dark); }

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(145deg, #064550 0%, #0a7a8e 35%, #0c96af 55%, #1aabb8 75%, #5ec4c9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(197, 153, 62, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(6, 69, 80, 0.5), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding: 7rem 2rem 5rem;
}

.hero-org {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-speakers {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.4rem;
}

.hero-speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    border-radius: 12px;
    padding: 0.5rem;
    background: transparent;
    transition: background 0.3s ease;
}

.hero-speaker:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.hero-speaker-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.hero-speaker:hover .hero-speaker-photo,
.hero-speaker-photo:hover {
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(197, 153, 62, 0.18);
}

/* Hint that reveals on hover/focus to signal the photo is clickable */
.hero-speaker-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    margin-top: -0.2rem;
}

.hero-speaker-hint::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-speaker:hover .hero-speaker-hint,
.hero-speaker:focus-visible .hero-speaker-hint {
    opacity: 0.9;
    transform: translateY(0);
}

.hero-speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-speaker-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    text-align: center;
}

.hero-speaker-name strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-meta-item {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.hero-meta-item strong { color: var(--white); font-weight: 600; }

.hero-meta-item + .hero-meta-item::before {
    content: '·';
    margin-right: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ═══════════ STRIP ═══════════ */
.strip {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 1.1rem 2rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.strip strong { font-weight: 700; }

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .section-sub { margin-bottom: 2.5rem; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stat {
    padding: 1.3rem 1.3rem 1.3rem 0;
    border-bottom: 1px solid var(--border);
}

.stat:nth-child(even) { padding-left: 1.3rem; border-left: 1px solid var(--border); }
.stat:nth-child(n+3) { border-bottom: none; }

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.about-visual img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

/* ═══════════ DHMM SECTION ═══════════ */
.dhmm {
    background: var(--teal-dark);
    position: relative;
    overflow: hidden;
}

.dhmm::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(12, 138, 158, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(197, 153, 62, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.dhmm .section-eyebrow { color: var(--gold); }
.dhmm .section-heading { color: var(--white); }

.dhmm-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.dhmm-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Play button */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-play-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-play:hover .btn-play-icon { transform: scale(1.1); }

/* Video modal */
.video-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.video-overlay.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.video-container {
    width: 90vw;
    max-width: 900px;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-overlay.active .video-container { transform: scale(1); }

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.dhmm-ministries {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dhmm-ministry {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dhmm-ministry:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 153, 62, 0.3);
}

.dhmm-ministry h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
}

/* Heading variant that hosts an inline play button */
.dhmm-ministry-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.inline-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.inline-play-btn svg {
    width: 12px;
    height: 12px;
    /* Optical adjustment: the play triangle's geometric center is left of its bounding box. */
    margin-left: 2px;
}

.inline-play-btn:hover,
.inline-play-btn:focus-visible {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(197, 153, 62, 0.35);
    outline: none;
}

.dhmm-ministry p {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

.dhmm-ministry-original {
    font-size: 0.72rem !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold) !important;
    opacity: 0.75;
    margin-top: -0.15rem !important;
    margin-bottom: 0.6rem !important;
    font-weight: 500;
}

@media (max-width: 900px) {
    .dhmm-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ═══════════ GLOBAL REACH ═══════════ */
.global-reach {
    margin-top: 4.5rem;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(197, 153, 62, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(12, 138, 158, 0.08) 0%, transparent 60%);
}

.global-reach-head {
    text-align: center;
    margin-bottom: 2.6rem;
}

.global-reach-head .section-eyebrow { color: var(--gold); }

.global-reach-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 500;
    color: var(--white);
    margin-top: 0.5rem;
    line-height: 1.2;
}

.continents-row {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.4rem;
    padding: 0;
    margin: 0 auto 3rem;
    max-width: 920px;
}

.continents-row li {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.7rem 1.3rem;
    border: 1px solid rgba(197, 153, 62, 0.35);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.continents-row li:hover {
    border-color: var(--gold);
    background: rgba(197, 153, 62, 0.08);
    transform: translateY(-2px);
}

.continent-num {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 600;
}

.continent-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
}

.global-reach-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
}

.grs {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.grs:hover {
    border-color: rgba(197, 153, 62, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.grs-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.grs-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.grs-label em {
    display: block;
    margin-top: 0.35rem;
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .global-reach { padding: 2.4rem 1.2rem; margin-top: 3rem; }
    .global-reach-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .continents-row { gap: 0.55rem 0.7rem; }
    .continents-row li { padding: 0.55rem 1rem; }
    .continent-name { font-size: 0.98rem; }
    .grs-num { font-size: 2rem; }
}

/* ═══════════ PRICING ═══════════ */
.pricing {
    background: linear-gradient(135deg, #1a3a4a 0%, #0f2a36 50%, #142e3d 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(12, 138, 158, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(197, 153, 62, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.pricing .section-eyebrow { color: var(--gold); }
.pricing .section-heading { color: var(--white); }

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.pricing-badge {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-body {
    padding: 2.5rem;
    text-align: center;
}

.pricing-original {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.pricing-currency {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-includes li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 400;
}

.pricing-includes li:last-child { border-bottom: none; }

.pricing-check {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-payment {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-payment-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pricing-payment-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.pricing-payment-holder {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.15rem;
}

.pricing-payment-holder strong {
    color: var(--white);
}

.pricing-payment-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.55rem;
    line-height: 1.5;
}

.pricing-payment-note strong {
    color: var(--gold);
}

/* ═══════════ SPEAKERS ═══════════ */
.speakers {
    background: var(--bg-warm);
}

.speakers .section-eyebrow { color: var(--teal); }

.speakers-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.speakers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 760px;
    margin: 0 auto;
}

.speaker {
    background: var(--white);
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.speaker:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.speaker-photo {
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-warm), var(--bg));
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.speaker:hover .speaker-photo img { transform: scale(1.05); }

.speaker-info { padding: 1.5rem 1.5rem 2rem; }

.speaker-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.3rem;
}

.speaker-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
}

/* ═══════════ SPEAKER BIO BUTTON ═══════════ */
.speaker-bio-btn {
    display: inline-block;
    margin-top: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.speaker-bio-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-light);
}

/* ═══════════ BIO MODAL ═══════════ */
.bio-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 69, 80, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.bio-overlay.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.bio-modal {
    background: var(--white);
    width: 92%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.bio-overlay.active .bio-modal { transform: translateY(0) scale(1); }

.bio-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--teal-light);
}

.bio-header-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--teal);
}

.bio-header-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.bio-header-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

.bio-header-text p {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 0.2rem;
}

.bio-header-text p em {
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
}

.bio-guest-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    margin-bottom: 0.6rem;
    background: rgba(197, 153, 62, 0.05);
}

.bio-body .bio-lede {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    font-weight: 400;
    padding-bottom: 1.2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.bio-body .bio-lede strong { color: var(--teal-deep); }

.bio-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.bio-close:hover { border-color: var(--dark); color: var(--dark); }

.bio-body { padding: 2rem 2.5rem 2.5rem; }

.bio-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1.8rem 0 0.6rem;
}

.bio-body h3:first-child { margin-top: 0; }

.bio-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.bio-body .bio-highlight {
    background: var(--teal-light);
    border-left: 3px solid var(--teal);
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
}

/* ═══════════ TOPICS ═══════════ */
.topics { background: var(--teal-light); }
.topics .section-heading { color: var(--teal-dark); }

.topics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.topics-list { list-style: none; }

.topics-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(12, 138, 158, 0.18);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.topics-list li:first-child { border-top: 1px solid rgba(12, 138, 158, 0.18); }
.topics-list li:hover { padding-left: 0.6rem; }

.topic-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal);
    width: 2.2rem;
    flex-shrink: 0;
}

.topic-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
}

/* ═══════════ BENEFITS ═══════════ */
.benefits {
    background: var(--white);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.benefit-card {
    padding: 2rem 1.8rem;
    background: var(--bg);
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.benefit-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.benefit-card.highlight {
    background: var(--teal);
    border-color: var(--teal);
}

.benefit-card.highlight .benefit-title,
.benefit-card.highlight .benefit-desc { color: var(--white); }

.benefit-card.highlight .benefit-icon {
    background: rgba(255, 255, 255, 0.15);
}

.benefit-card.highlight .benefit-icon svg { stroke: var(--white); }

.benefit-card.highlight .benefit-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-light);
    border-radius: 50%;
}

.benefit-icon svg { width: 26px; height: 26px; stroke: var(--teal); }

.benefit-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold-soft);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 0.8rem;
}

.benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

/* ═══════════ GALLERY ═══════════ */
.gallery { background: var(--bg); }

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

#galleryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after { background: rgba(12, 138, 158, 0.15); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ═══════════ CITY PARALLAX BREAK ═══════════ */
.city-break {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: var(--teal-dark);
}

@keyframes city-break-drift {
    0%   { transform: scale(1.05) translate(0, 0); }
    50%  { transform: scale(1.12) translate(-2%, -1.5%); }
    100% { transform: scale(1.05) translate(0, 0); }
}

@keyframes city-break-glow {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 0.85; }
}

.city-break-bg {
    position: absolute;
    inset: 0;
    background:
        /* Sunset glow over horizon */
        radial-gradient(ellipse 70% 50% at 50% 90%, rgba(197, 153, 62, 0.45) 0%, rgba(197, 153, 62, 0) 60%),
        /* Soft top-left highlight */
        radial-gradient(ellipse 50% 50% at 25% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
        /* Deep diagonal teal gradient */
        linear-gradient(160deg, #03323b 0%, #064550 35%, #0c8a9e 75%, #1ba4b8 100%);
    animation: city-break-drift 28s ease-in-out infinite;
    will-change: transform;
}

/* Decorative palm-frond silhouettes (inline SVG) for tropical texture */
.city-break-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 480' preserveAspectRatio='xMidYMax slice'><g fill='rgba(0,0,0,0.28)'><path d='M-20 480 Q 80 420 110 350 Q 70 340 40 360 Q 90 320 130 290 Q 80 290 50 305 Q 100 270 145 260 Q 95 250 60 260 Q 115 230 165 230 Q 125 210 90 218 Q 140 190 195 200 L 200 480 Z'/><path d='M1220 480 Q 1100 410 1075 320 Q 1110 320 1140 345 Q 1090 295 1050 270 Q 1100 280 1130 295 Q 1075 255 1030 245 Q 1085 245 1115 255 Q 1055 220 1015 220 Q 1070 200 1110 210 Q 1055 180 1000 192 L 1000 480 Z'/></g></svg>"),
        /* Subtle horizon line */
        linear-gradient(180deg, transparent 0%, transparent 65%, rgba(0,0,0,0.18) 78%, rgba(0,0,0,0.32) 100%);
    background-size: cover, 100% 100%;
    background-position: bottom center, center;
    background-repeat: no-repeat;
}

/* Twinkling top-glow (very subtle) */
.city-break-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 320px at 75% 22%, rgba(255,255,255,0.07) 0%, transparent 70%);
    animation: city-break-glow 9s ease-in-out infinite;
}

.city-break-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 65%),
        linear-gradient(180deg, rgba(3, 50, 59, 0.35) 0%, rgba(3, 50, 59, 0.1) 40%, rgba(3, 50, 59, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    z-index: 1;
}

.city-break-text {
    text-align: center;
    color: var(--white);
    max-width: 720px;
}

.city-break-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.45rem 1.1rem;
    border: 1px solid rgba(197, 153, 62, 0.5);
    border-radius: 999px;
    background: rgba(6, 69, 80, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-bottom: 1.3rem;
}

.city-break-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.city-break-text h3 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.city-break-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 1rem auto 1.1rem;
}

.city-break-text p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 0.55rem;
}

.city-break-venue {
    font-size: 0.85rem !important;
    letter-spacing: 0.15em !important;
    opacity: 0.75 !important;
    text-transform: none !important;
    font-weight: 400 !important;
}

/* ═══════════ DETAILS ═══════════ */
.details {
    background: var(--teal-dark);
    position: relative;
    overflow: hidden;
}

.details::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(12,138,158,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.details .section-eyebrow { color: var(--gold); }
.details .section-heading { color: var(--white); }

.details-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.details-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.detail-card-v2 {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.detail-card-v2:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(197,153,62,0.3);
    transform: translateX(6px);
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(197,153,62,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}

.detail-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.detail-card-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.detail-card-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.15rem;
}

.details-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.detail-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.detail-action-btn svg {
    width: 18px;
    height: 18px;
}

.detail-action-btn.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37,211,102,0.12);
}

.details-cta-wrap {
    text-align: center;
    position: relative;
    z-index: 1;
}

.details-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1rem;
    font-style: italic;
}

/* ═══════════ FINAL CTA ═══════════ */
.final-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    text-align: center;
    padding: 5.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta .section-eyebrow { color: rgba(255,255,255,0.85); }
.final-cta .section-heading { color: var(--white); }
.final-cta .section-sub { margin: 0 auto 2rem; color: rgba(255,255,255,0.9); }

.final-cta .btn-primary {
    background: var(--white);
    color: var(--gold-hover);
    font-weight: 700;
}

.final-cta .btn-primary:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ═══════════ FOOTER ═══════════ */
.footer {
    background: var(--teal-dark);
    padding: 2.5rem 3rem;
    text-align: center;
}

.footer-logo {
    height: 30px;
    margin: 0 auto 0.8rem;
    opacity: 0.4;
    filter: brightness(10);
}

.footer-contact { margin-bottom: 0.6rem; }

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════ MODAL ═══════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 69, 80, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.modal {
    background: var(--white);
    width: 92%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-top {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--teal-light);
}

.modal-top h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
}

.modal-top p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.modal-close:hover { border-color: var(--dark); color: var(--dark); }

.modal-body iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    display: block;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.6rem 1.5rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 0.9rem 1.5rem;
        color: var(--text-secondary);
    }
    .nav-links a:hover { background: var(--teal-light); color: var(--gold); }

    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .section { padding: 4.5rem 1.5rem; }

    .about-layout, .topics-layout { grid-template-columns: 1fr; gap: 3rem; }
    .speakers-grid { grid-template-columns: 1fr; max-width: 380px; }
    .details-actions { gap: 0.6rem; }
    .benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-speakers { gap: 2.5rem; }
    .hero-speaker-photo { width: 150px; height: 150px; }
    .hero-speaker-name strong { font-size: 1.2rem; }
    .city-break { height: 360px; }
    .city-break-bg { background-attachment: scroll; }
    #galleryGrid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    #galleryGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .section { padding: 3.5rem 1.2rem; }
    .nav { padding: 0.8rem 1rem; }
    .detail-action-btn { flex: 1; justify-content: center; min-width: 0; font-size: 0.82rem; padding: 0.6rem 1rem; }
    .modal { width: 96%; }
    .modal-top { padding: 1.5rem; }
    .final-cta { padding: 3.5rem 1.2rem; }
    .speaker-photo { height: 280px; }
    .hero-speaker-photo { width: 120px; height: 120px; }
    .hero-speakers { gap: 1.5rem; }
    .bio-modal { width: 96%; }
    .bio-header { padding: 1.5rem; gap: 1rem; }
    .bio-body { padding: 1.5rem; }
    .bio-header-photo { width: 64px; height: 64px; }
    .pricing-body { padding: 1.5rem; }
    .pricing-amount { font-size: 2.8rem; }
}
