/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — contact.css
   SIMATS MUN 2026 | Enhanced Edition
   Sections: Hero · General Info · Venue · Social · Closing
   Palette: Burgundy / Gold / Cream  |  Playfair, Cormorant, Libre Baskerville
═══════════════════════════════════════════════════════════════ */

/* ── Active Nav Link ── */
.nav-active { color: var(--gold) !important; }
.nav-active::after { width: 100% !important; }

.nav-logo-gem {
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0.7;
    animation: gemPulse 3s ease-in-out infinite;
    margin-right: 0.3rem;
}

/* ════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(212,175,55,0.9);
}
.cursor-ring {
    width: 32px; height: 32px;
    border: 1.5px solid rgba(212,175,55,0.55);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
.cursor-ring.hovering { width: 48px; height: 48px; border-color: var(--gold); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ════════════════════════════════════════
   GOLD RIBBON TOP
════════════════════════════════════════ */
.gold-ribbon-top {
    background: linear-gradient(90deg, var(--deep-burgundy, #2e0707), var(--burgundy, #470b0b), var(--deep-burgundy, #2e0707));
    color: rgba(220,201,144,0.85);
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(212,175,55,0.3);
    display: block;
}
.gold-ribbon-top span { color: #C8A855; margin: 0 0.5rem; }

/* ════════════════════════════════════════
   NAV PROGRESS BAR
════════════════════════════════════════ */
.nav-progress {
    position: absolute;
    bottom: -2px; left: 0;
    height: 2px; width: 0%;
    background: linear-gradient(90deg, #C8A855, #D4B860, #ffd700);
    box-shadow: 0 0 8px rgba(212,175,55,0.7);
    transition: width 0.1s linear;
    z-index: 10;
}

/* ════════════════════════════════════════
   CONTACT HERO — ENHANCED
════════════════════════════════════════ */
.contact-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 110px 20px 90px;
    text-align: center;
    border-bottom: 2px solid rgba(212,175,55,0.4);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, var(--dark-burgundy, #1a0303) 0%, var(--deep-burgundy, #2e0707) 20%, var(--burgundy, #470b0b) 45%, var(--royal-red, #470b0b) 65%, var(--burgundy, #470b0b) 85%, var(--dark-burgundy, #1a0303) 100%);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('World_map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    mix-blend-mode: screen;
    pointer-events: none;
}

.contact-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(212,175,55,0.09) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 60%, rgba(212,175,55,0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(26,5,8,0.6) 0%, transparent 60%);
}

/* Floating orbs in hero */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    animation: orbFloat ease-in-out infinite;
}
.hero-orb-1 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(200,168,85,0.15) 0%, transparent 70%); top: 10%; left: 3%; animation-duration: 14s; }
.hero-orb-2 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%); top: 25%; right: 5%; animation-duration: 10s; animation-delay: -4s; }
.hero-orb-3 { width: 160px; height: 160px; background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%); bottom: 25%; left: 40%; animation-duration: 16s; animation-delay: -7s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(18px, -28px) scale(1.04); }
    66%  { transform: translate(-14px, 18px) scale(0.97); }
}

.contact-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.contact-hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold, #C8A855);
    animation: particleDrift linear infinite;
    opacity: 0;
}

@keyframes particleDrift {
    0%   { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-120px) translateX(30px) scale(1); opacity: 0; }
}

/* Corner flourishes */
.hero-corner {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.8s forwards;
}
.hero-corner-tl { top: 24px; left: 24px; }
.hero-corner-tr { top: 24px; right: 24px; }
.hero-corner-bl { bottom: 70px; left: 24px; }
.hero-corner-br { bottom: 70px; right: 24px; }

/* Twinkling star texture on hero */
.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(212,175,55,0.12) 1px, transparent 1px),
        radial-gradient(circle, rgba(212,175,55,0.06) 1px, transparent 1px);
    background-size: 70px 70px, 120px 120px;
    background-position: 0 0, 35px 35px;
    pointer-events: none;
    opacity: 0.35;
    animation: twinkle 9s ease-in-out infinite;
    z-index: 1;
}
@keyframes twinkle { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.45; } }

.contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
    animation: fadeInUp 1s ease both;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.07));
    border: 1px solid rgba(212,175,55,0.45);
    padding: 0.45rem 1.6rem;
    border-radius: 30px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.78rem;
    color: var(--pale-gold, #DCC990);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(6px);
    animation: fadeInDown 0.9s ease both;
}

.badge-ornament {
    font-size: 0.6rem;
    color: var(--gold, #C8A855);
    animation: gemPulse 3s ease-in-out infinite;
}

.hero-title-block { margin-bottom: 1.6rem; }

.hero-pre-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--pale-gold, #DCC990);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--cream, #F5F1E8);
    letter-spacing: 4px;
    line-height: 1.1;
    animation: fadeInDown 0.9s ease 0.15s both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.title-gold-line {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #D4B860 25%, #C8A855 50%, #D4B860 75%, #ffd700 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    filter: drop-shadow(0 0 25px rgba(255,215,0,0.45));
    font-size: 1.05em;
}

.contact-hero-tagline-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.3s both;
}

.tagline-line {
    width: 65px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,175,55,0.7));
}
.tagline-line-r { background: linear-gradient(to left, transparent, rgba(212,175,55,0.7)); }

.contact-hero-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    line-height: 2;
    color: rgba(245,241,232,0.88);
    max-width: 780px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.contact-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(245,241,232,0.1), rgba(245,241,232,0.05));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 60px;
    padding: 1rem 2.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(212,175,55,0.15);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    gap: 0.1rem;
    cursor: default;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C8A855, #D4B860);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    transition: transform 0.3s ease;
}

.hero-stat-lbl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.72rem;
    color: rgba(212,175,55,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-stat-sep {
    color: rgba(212,175,55,0.35);
    font-size: 0.5rem;
    padding: 0;
}

.hero-quick-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.hero-action-primary {
    background: linear-gradient(135deg, #C8A855, #D4B860);
    color: #470b0b;
    box-shadow: 0 4px 22px rgba(212,175,55,0.55);
}
.hero-action-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(212,175,55,0.75); }

.hero-action-secondary {
    background: transparent;
    color: #C8A855;
    border: 1.5px solid rgba(212,175,55,0.6);
}
.hero-action-secondary:hover {
    background: rgba(212,175,55,0.12);
    border-color: #C8A855;
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.2);
}

.contact-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    animation: fadeIn 1.5s ease 1.5s both;
}

.scroll-indicator {
    width: 26px; height: 42px;
    border: 2px solid rgba(212,175,55,0.45);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px; height: 8px;
    background: #C8A855;
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: 0.35; }
}

.contact-hero-scroll span {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.7rem;
    color: rgba(212,175,55,0.55);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* ════════════════════════════════════════
   ORNATE DIVIDERS
════════════════════════════════════════ */
.ornate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2rem;
    background: linear-gradient(90deg, #2e0707, #470b0b, #2e0707);
    gap: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scaleX(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.ornate-divider.visible { opacity: 1; transform: scaleX(1); }
.ornate-divider::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.06) 50%, transparent 100%);
}
.ornate-divider-light {
    background: linear-gradient(90deg, #FAF8F3, #F5F1E8, #FAF8F3);
}

.od-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5));
    max-width: 300px;
}
.od-line-r { background: linear-gradient(90deg, rgba(212,175,55,0.5), transparent); }
.od-line-dark { background: linear-gradient(90deg, transparent, rgba(71,11,11,0.3)) !important; }
.od-line-dark.od-line-r { background: linear-gradient(90deg, rgba(71,11,11,0.3), transparent) !important; }

.od-center { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.od-gem { color: #C8A855; font-size: 0.55rem; animation: gemPulse 3s ease-in-out infinite; }
.od-gem-dark { color: #470b0b !important; }
.od-text { font-family: 'Playfair Display', serif; font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(212,175,55,0.75); }
.od-text-dark { color: rgba(71,11,11,0.55) !important; }

/* ════════════════════════════════════════
   CORNER ORNAMENTS
════════════════════════════════════════ */
.corner-ornament {
    position: absolute;
    color: rgba(212,175,55,0.22);
    font-size: 1.4rem;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    animation: gemPulse 4s ease-in-out infinite;
}
.corner-tl { top: 18px; left: 22px; }
.corner-br { bottom: 18px; right: 22px; }
.closing-corner { color: rgba(212,175,55,0.18); }

/* ════════════════════════════════════════
   SHARED SECTION HELPERS
════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: var(--pale-gold, #DCC990);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.section-eyebrow-dark {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: rgba(71,11,11,0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 0.7rem;
}

.title-underline {
    width: 80px; height: 2.5px;
    background: linear-gradient(90deg, transparent, #C8A855, #D4B860, #C8A855, transparent);
    margin: 0 auto 0.7rem;
    box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

.section-tagline {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 1px;
}

.section-intro-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    line-height: 1.9;
    text-align: center;
    max-width: 820px;
    margin: -1.5rem auto 3rem;
    position: relative;
    z-index: 1;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 20%, rgba(212,175,55,0.05) 0%, transparent 32%),
        radial-gradient(circle at 92% 80%, rgba(212,175,55,0.04) 0%, transparent 32%);
    pointer-events: none;
}

.section-diagonal-accent {
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ════════════════════════════════════════
   SECTION 1 — GENERAL CONTACT INFO
════════════════════════════════════════ */
.contact-info-section-full {
    background: linear-gradient(145deg, #FAF8F3 0%, #F5F1E8 50%, #fafaf8 100%);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.contact-info-section-full .section-title  { color: #470b0b !important; }
.contact-info-section-full .section-tagline { color: rgba(71,11,11,0.65) !important; }
.contact-info-section-full .section-intro-note { color: rgba(26,26,26,0.72); }
.contact-info-section-full .title-underline {
    background: linear-gradient(90deg, transparent, #470b0b, #C8A855, #470b0b, transparent) !important;
    box-shadow: 0 0 8px rgba(71,11,11,0.25) !important;
}

.general-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.info-tile {
    background: linear-gradient(145deg, #ffffff, #FAF8F3);
    border-radius: 20px;
    padding: 2.8rem 1.8rem 2rem;
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow: 0 8px 30px rgba(71,11,11,0.07), 0 1px 0 rgba(212,175,55,0.2) inset;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #470b0b, #C8A855, #D4B860, #C8A855, #470b0b);
    background-size: 300% 100%;
    animation: shimmer 4s linear infinite;
}

.info-tile-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(212,175,55,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.info-tile:hover { transform: translateY(-9px); box-shadow: 0 20px 50px rgba(71,11,11,0.14), 0 0 0 1.5px rgba(212,175,55,0.4); }
.info-tile:hover .info-tile-glow { opacity: 1; }

.info-tile-icon {
    width: 66px; height: 66px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #470b0b, #5a0d0d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A855;
    box-shadow: 0 8px 22px rgba(71,11,11,0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.info-tile-icon svg { width: 28px; height: 28px; }
.info-tile:hover .info-tile-icon { transform: scale(1.1) rotate(-8deg); box-shadow: 0 12px 28px rgba(71,11,11,0.4); }

.info-tile-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.72rem;
    color: rgba(71,11,11,0.48);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.5rem;
}

.info-tile-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #470b0b;
    margin-bottom: 0.55rem;
    letter-spacing: 0.3px;
}
.info-tile-value a { color: #470b0b; text-decoration: none; transition: color 0.3s; }
.info-tile-value a:hover { color: #8a1a1a; text-decoration: underline; text-underline-offset: 3px; }

.info-tile-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.94rem;
    color: rgba(26,26,26,0.58);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 1.3rem;
}

.info-tile-cta { margin-top: auto; }

.tile-link-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #470b0b;
    text-decoration: none;
    border-bottom: 1px solid rgba(71,11,11,0.25);
    padding-bottom: 1px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.tile-link-btn:hover { color: #8a1a1a; border-color: #8a1a1a; transform: translateX(4px); }

/* Quick contact banner */
.quick-contact-banner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2e0707, #470b0b 40%, #5a0d0d 70%, #470b0b);
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 12px 40px rgba(71,11,11,0.2);
    overflow: hidden;
}

.quick-contact-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C8A855, #D4B860, #C8A855, transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.qcb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.qcb-text { display: flex; align-items: center; gap: 1.2rem; }

.qcb-ornament {
    color: #C8A855;
    font-size: 1.2rem;
    animation: gemPulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.qcb-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #C8A855;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.qcb-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(245,241,232,0.8);
    line-height: 1.5;
}

.qcb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, #C8A855, #D4B860);
    color: #470b0b;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212,175,55,0.55);
    flex-shrink: 0;
}
.qcb-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,175,55,0.75); }

/* ════════════════════════════════════════
   SECTION 2 — VENUE
════════════════════════════════════════ */
.venue-section {
    background: linear-gradient(135deg, #2e0707 0%, #470b0b 30%, #5a0d0d 60%, #470b0b 90%, #2e0707 100%);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.venue-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(212,175,55,0.07) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 50%, rgba(212,175,55,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.venue-bg-map {
    position: absolute;
    inset: 0;
    background-image: url('World_map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.055;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Twinkling dots on venue section */
.venue-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(212,175,55,0.12) 1px, transparent 1px),
        radial-gradient(circle, rgba(212,175,55,0.06) 1px, transparent 1px);
    background-size: 65px 65px, 110px 110px;
    background-position: 0 0, 32px 32px;
    pointer-events: none;
    opacity: 0.3;
    animation: twinkle 10s ease-in-out infinite;
    z-index: 0;
}

.venue-section .section-title { color: #C8A855 !important; }
.venue-section .section-tagline { color: rgba(245,241,232,0.7) !important; }
.venue-section .section-eyebrow { color: rgba(220,201,144,0.75) !important; }

.venue-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.venue-crest {
    width: 84px; height: 84px;
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.06));
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A855;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.2);
    transition: transform 0.4s ease;
}
.venue-crest:hover { transform: scale(1.06) rotate(-5deg); }

.venue-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #C8A855;
    margin-bottom: 0.6rem;
    letter-spacing: 1.5px;
    line-height: 1.3;
}
.venue-name em {
    font-style: italic;
    font-weight: 600;
    color: #DCC990;
    font-size: 0.85em;
    display: block;
}

.venue-address { margin-bottom: 2rem; }
.venue-address p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: rgba(245,241,232,0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.venue-desc-block {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.2rem;
    border-left: 2px solid rgba(212,175,55,0.25);
    padding-left: 1.5rem;
}
.venue-desc-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.92;
    color: rgba(245,241,232,0.82);
}

.venue-notes { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
.venue-note-item { display: flex; align-items: center; gap: 0.9rem; }
.note-diamond { color: #C8A855; font-size: 0.65rem; flex-shrink: 0; }
.venue-note-item span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem;
    color: rgba(245,241,232,0.78);
    line-height: 1.5;
}

.venue-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, #C8A855, #D4B860);
    color: #470b0b;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 22px rgba(212,175,55,0.5);
}
.venue-directions-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(212,175,55,0.7); }

/* Map frame */
.venue-map-placeholder { display: flex; justify-content: center; }

.map-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, rgba(245,241,232,0.08), rgba(212,175,55,0.06));
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(212,175,55,0.05) 30px, rgba(212,175,55,0.05) 31px),
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(212,175,55,0.05) 30px, rgba(212,175,55,0.05) 31px);
    border-radius: 20px;
}

.map-ornament {
    position: absolute;
    width: 20px; height: 20px;
    border-style: solid;
    border-color: rgba(212,175,55,0.6);
    z-index: 2;
}
.map-ornament.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.map-ornament.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.map-ornament.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.map-ornament.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.map-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
}

.map-pin-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.map-pin-pulse {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(212,175,55,0.4);
    animation: pulseSlow 3s ease-in-out infinite;
}
.map-pin-pulse-2 {
    width: 80px; height: 80px;
    animation-delay: -1.5s;
    border-color: rgba(212,175,55,0.2);
}

@keyframes pulseSlow {
    0%, 100% { transform: scale(0.9); opacity: 0.6; }
    50%       { transform: scale(1.2); opacity: 0.15; }
}

.map-pin {
    color: #C8A855;
    animation: mapPinBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(212,175,55,0.5));
    position: relative;
    z-index: 1;
}

@keyframes mapPinBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

.map-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C8A855;
    letter-spacing: 1px;
}

.map-sublabel {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: rgba(245,241,232,0.65);
    margin-bottom: 0.3rem;
}

.map-date-badge {
    display: inline-block;
    padding: 0.22rem 0.85rem;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.75rem;
    color: #DCC990;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.6rem;
    background: linear-gradient(135deg, #C8A855, #D4B860);
    color: #470b0b;
    text-decoration: none;
    border-radius: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 14px rgba(212,175,55,0.4);
}
.map-directions-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.6); }

/* ════════════════════════════════════════
   SECTION 3 — SOCIAL MEDIA
════════════════════════════════════════ */
.social-section {
    background: linear-gradient(145deg, #FAF8F3 0%, #F5F1E8 50%, #fafaf8 100%);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.social-section .section-title  { color: #470b0b !important; }
.social-section .section-tagline { color: rgba(71,11,11,0.65) !important; }
.social-section .title-underline {
    background: linear-gradient(90deg, transparent, #470b0b, #C8A855, #470b0b, transparent) !important;
    box-shadow: 0 0 8px rgba(71,11,11,0.25) !important;
}
.social-section .section-eyebrow { color: rgba(71,11,11,0.5) !important; }

.social-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.95;
    color: rgba(26,26,26,0.72);
    text-align: center;
    max-width: 780px;
    margin: -1.5rem auto 3.5rem;
    position: relative;
    z-index: 1;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 880px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.social-platform-card {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    background: linear-gradient(145deg, #ffffff, #FAF8F3);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 2.5rem 2.2rem;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(71,11,11,0.07);
}

.social-platform-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #470b0b, #C8A855, #D4B860, #C8A855, #470b0b);
    background-size: 300% 100%;
    animation: shimmer 4s linear infinite;
}

.social-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 30%) var(--my, 30%), rgba(212,175,55,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.social-platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.45);
    box-shadow: 0 20px 55px rgba(71,11,11,0.14), 0 0 0 1.5px rgba(212,175,55,0.35);
}
.social-platform-card:hover .social-card-glow { opacity: 1; }

.platform-icon-wrap { flex-shrink: 0; }

.platform-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, #470b0b, #5a0d0d);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C8A855;
    box-shadow: 0 8px 22px rgba(71,11,11,0.28);
    transition: all 0.4s ease;
}

.social-platform-card:hover .platform-icon {
    background: linear-gradient(135deg, #C8A855, #D4B860);
    color: #470b0b;
    transform: scale(1.08) rotate(-6deg);
}

.platform-content { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }

.platform-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #470b0b;
    letter-spacing: 0.8px;
    margin-bottom: 0.1rem;
}

.platform-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(71,11,11,0.55);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.platform-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(26,26,26,0.68);
    line-height: 1.65;
}

.platform-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #470b0b;
    letter-spacing: 0.8px;
    margin-top: 0.4rem;
    border-bottom: 1px solid rgba(71,11,11,0.2);
    padding-bottom: 1px;
    width: fit-content;
    transition: all 0.3s ease;
}
.platform-cta span { transition: transform 0.3s ease; }
.social-platform-card:hover .platform-cta { color: #8a1a1a; border-color: #8a1a1a; }
.social-platform-card:hover .platform-cta span { transform: translateX(4px); }

/* Response strip */
.response-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e0707, #470b0b 40%, #5a0d0d 70%, #470b0b);
    border-radius: 100px;
    padding: 1.4rem 3.5rem;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 10px 35px rgba(71,11,11,0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.rs-item { display: flex; align-items: center; gap: 0.9rem; padding: 0 2rem; }
.rs-icon { color: #C8A855; font-size: 0.6rem; animation: gemPulse 3s ease-in-out infinite; flex-shrink: 0; }
.rs-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #C8A855; letter-spacing: 0.5px; }
.rs-item span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: rgba(245,241,232,0.65); letter-spacing: 0.5px; }
.rs-divider { width: 1px; height: 36px; background: rgba(212,175,55,0.25); flex-shrink: 0; }

/* ════════════════════════════════════════
   CLOSING BANNER
════════════════════════════════════════ */
.closing-banner {
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.closing-banner .closing-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2e0707 0%, #470b0b 35%, #5a0d0d 65%, #470b0b 90%, #2e0707 100%);
}

.closing-banner .closing-overlay {
    position: absolute;
    inset: 0;
    background-image: url('World_map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Closing sparks */
.closing-sparks {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.closing-spark {
    position: absolute;
    width: 2px; height: 2px;
    background: #C8A855;
    border-radius: 50%;
    animation: sparkRise var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
    box-shadow: 0 0 4px rgba(212,175,55,0.8);
}
@keyframes sparkRise {
    0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
    15%  { opacity: 0.9; }
    85%  { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-120px) translateX(var(--drift, 20px)) scale(1.2); }
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.closing-ornament-top, .closing-ornament-bottom {
    width: 120px; height: 1.5px;
    background: linear-gradient(90deg, transparent, #C8A855, #D4B860, #C8A855, transparent);
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
    position: relative;
}
.closing-ornament-top { margin-bottom: 1.5rem; }
.closing-ornament-bottom { margin-top: 1.5rem; }
.closing-ornament-top::before, .closing-ornament-top::after,
.closing-ornament-bottom::before, .closing-ornament-bottom::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: #C8A855;
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    box-shadow: 0 0 8px #C8A855;
}
.closing-ornament-top::before, .closing-ornament-bottom::before { left: 0; }
.closing-ornament-top::after, .closing-ornament-bottom::after { right: 0; }

.closing-gem { font-size: 1.2rem; color: #C8A855; margin-bottom: 1.5rem; animation: gemPulse 3s ease-in-out infinite; }

.closing-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.95;
    color: rgba(245,241,232,0.92);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
    position: relative;
}

.closing-quote::before, .closing-quote::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(212,175,55,0.25);
    position: absolute;
    line-height: 1;
}
.closing-quote::before { top: -1.2rem; left: -0.8rem; }
.closing-quote::after  { content: '"'; bottom: -3rem; right: -0.5rem; }

.closing-attribution {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #DCC990;
    letter-spacing: 1px;
    margin-bottom: 2.8rem;
    margin-top: 0.8rem;
    opacity: 0.85;
}

.closing-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.closing-cta {
    min-width: 180px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 38px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #C8A855, #D4B860, #C8A855);
    background-size: 200% 100%;
    color: #470b0b;
    border: 2px solid #C8A855;
    box-shadow: 0 4px 22px rgba(212,175,55,0.55);
    animation: shimmer 3s linear infinite;
}
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(212,175,55,0.8); }

.secondary-btn {
    background: transparent;
    color: #C8A855;
    border: 2px solid rgba(212,175,55,0.6);
}
.secondary-btn:hover {
    background: linear-gradient(135deg, #C8A855, #D4B860);
    color: #470b0b;
    border-color: #C8A855;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.6);
}

.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.closing-cta:hover .btn-shine { left: 100%; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes shimmer   { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
@keyframes gemPulse  { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; text-shadow: 0 0 10px rgba(212,175,55,0.7); } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown{ from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.back-to-top {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #470b0b, #5a0d0d);
    border: 1.5px solid rgba(212,175,55,0.5);
    border-radius: 50%;
    color: #C8A855;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    flex-shrink: 0;
}
.back-to-top:hover { background: linear-gradient(135deg, #C8A855, #D4B860); color: #470b0b; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,175,55,0.5); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
    .general-info-grid  { grid-template-columns: repeat(2, 1fr); }
    .venue-content      { grid-template-columns: 1fr 360px; gap: 3rem; }
}

@media (max-width: 1024px) {
    .venue-content      { grid-template-columns: 1fr; }
    .venue-map-placeholder { justify-content: flex-start; max-width: 420px; }
    .social-platforms   { max-width: 100%; }
}

@media (max-width: 768px) {
    .contact-hero-title { font-size: 2.4rem; }
    .contact-hero-stats { flex-wrap: wrap; padding: 1rem 1.5rem; }
    .hero-stat          { padding: 0 1rem; }
    .hero-stat-sep      { display: none; }
    .hero-quick-actions { flex-direction: column; align-items: center; }
    .hero-action-btn    { width: 100%; max-width: 280px; justify-content: center; }
    .hero-corner        { display: none; }
    .general-info-grid  { grid-template-columns: 1fr; }
    .social-platforms   { grid-template-columns: 1fr; }
    .social-platform-card { gap: 1.2rem; padding: 2rem 1.6rem; }
    .qcb-inner          { flex-direction: column; align-items: flex-start; padding: 1.8rem 2rem; }
    .response-strip     { border-radius: 16px; padding: 1.5rem 2rem; }
    .rs-divider         { display: none; }
    .rs-item            { padding: 0; }
    .venue-name         { font-size: 1.6rem; }
    .closing-quote      { font-size: 1.2rem; }
    .closing-actions    { flex-direction: column; align-items: center; }
    .closing-cta        { width: 100%; max-width: 280px; text-align: center; }
    .gold-ribbon-top    { font-size: 0.58rem; }
    .corner-ornament    { font-size: 1rem; }
}

@media (max-width: 480px) {
    .contact-hero       { padding: 90px 15px 70px; }
    .contact-hero-title { font-size: 1.95rem; letter-spacing: 2px; }
    .contact-hero-badge { font-size: 0.7rem; letter-spacing: 2px; }
    .contact-hero-intro { font-size: 1rem; }
    .contact-info-section-full,
    .venue-section,
    .social-section,
    .closing-banner     { padding: 65px 15px; }
    .map-frame          { aspect-ratio: 3/2; }
}