/* =====================================================
   CONTACT.CSS — Emerald Peak
   @import home.css (emerald green + Oswald)
   ===================================================== */

@import url('home.css');

/* ══════════════════════════════════════════════
   CONTACT HERO
══════════════════════════════════════════════ */
.contact-hero {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--dark);
}

/* Animated emerald mesh background */
.ch-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 10% 30%, rgba(26,122,74,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 90% 70%, rgba(26,122,74,0.1) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,149,42,0.07) 0%, transparent 50%),
        var(--dark);
}

/* Drifting grid lines */
.ch-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg,  transparent, transparent 80px, rgba(26,122,74,1) 80px, rgba(26,122,74,1) 81px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(26,122,74,1) 80px, rgba(26,122,74,1) 81px);
    animation: chGridDrift 25s linear infinite;
}
@keyframes chGridDrift { 0%{transform:translate(0,0)} 100%{transform:translate(80px,80px)} }

/* Floating diamonds */
.ch-diamond {
    position: absolute; pointer-events: none; opacity: 0;
    animation: diamondRise 16s ease-in-out infinite;
}
@keyframes diamondRise {
    0%   { opacity: 0;   transform: translateY(0)     rotate(0deg)   scale(0.6); }
    10%  { opacity: 0.35; }
    80%  { opacity: 0.15; }
    100% { opacity: 0;   transform: translateY(-90vh) rotate(200deg) scale(1.1); }
}

.contact-hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px; max-width: 860px;
}
.ch-breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.9s ease 0.2s forwards;
}
.ch-breadcrumb a {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    color: rgba(238,245,241,0.4); font-size: 0.7rem; letter-spacing: 3px;
    text-transform: uppercase; text-decoration: none; transition: 0.3s;
}
.ch-breadcrumb a:hover { color: var(--gold); }
.ch-breadcrumb .sep { color: rgba(201,149,42,0.4); font-size: 0.65rem; }
.ch-breadcrumb .cur {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
}
.ch-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem; letter-spacing: 6px; color: var(--gold);
    text-transform: uppercase; margin-bottom: 20px;
    opacity: 0; animation: fadeUp 0.9s ease 0.35s forwards;
}
.contact-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.06em; font-weight: 500; line-height: 1;
    opacity: 0; animation: fadeUp 0.9s ease 0.55s forwards;
}
.contact-hero-content h1 em {
    font-style: italic; color: var(--gold);
    font-family: 'Cormorant Garamond', serif; font-size: 1.12em; font-weight: 300;
}
.ch-sub {
    font-family: 'Oswald', sans-serif; font-weight: 200;
    font-size: 0.85rem; letter-spacing: 5px; color: rgba(238,245,241,0.5);
    text-transform: uppercase; margin-top: 22px;
    opacity: 0; animation: fadeUp 0.9s ease 0.75s forwards;
}
.ch-divider {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    margin: 44px auto 0;
    opacity: 0; animation: fadeUp 0.9s ease 0.95s forwards;
}
.ch-divider::before,
.ch-divider::after {
    content: ''; display: block; width: 90px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.ch-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.ch-divider span { color: var(--gold); font-size: 1rem; }

/* Hero quick-contact pills */
.ch-pills {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-top: 48px;
    opacity: 0; animation: fadeUp 0.9s ease 1.1s forwards;
}
.ch-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 50px;
    background: rgba(26,122,74,0.12); border: 1px solid rgba(26,122,74,0.3);
    text-decoration: none; color: var(--white); transition: 0.35s;
    backdrop-filter: blur(8px);
}
.ch-pill:hover {
    background: rgba(201,149,42,0.12); border-color: rgba(201,149,42,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.ch-pill .pi { font-size: 1rem; }
.ch-pill .pt {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted);
}
.ch-pill .pv {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    font-size: 0.82rem; letter-spacing: 1px; color: var(--white);
}

/* Scroll cue */
.ch-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3;
    opacity: 0; animation: fadeUp 0.9s ease 1.4s forwards;
}
.ch-scroll span {
    font-family: 'Oswald', sans-serif; font-weight: 200;
    font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(238,245,241,0.3);
}
.ch-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ══════════════════════════════════════════════
   CONTACT INFO CARDS SECTION
══════════════════════════════════════════════ */
.contact-info-section {
    position: relative; z-index: 10;
    background: var(--dark-2);
    padding: 80px 6%;
    overflow: hidden;
}
.contact-info-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ci-header { text-align: center; margin-bottom: 80px; }
.ci-header h2 {
    font-family: 'Oswald', 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); margin-top: 16px; font-weight: 500;
}
.ci-header h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }

/* Info cards grid */
.ci-cards {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-bottom: 80px;
}
.ci-card {
    position: relative; overflow: hidden;
    border-radius: 24px; padding: 48px 36px;
    background: var(--dark-3); border: 1px solid rgba(26,122,74,0.15);
    text-align: center; transition: all 0.45s ease;
    transform-style: preserve-3d;
}
.ci-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,122,74,0.08) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.ci-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0); transform-origin: center; transition: transform 0.45s ease;
}
.ci-card:hover {
    border-color: rgba(201,149,42,0.35);
    transform: translateY(-14px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px rgba(26,122,74,0.06);
}
.ci-card:hover::before { opacity: 1; }
.ci-card:hover::after { transform: scaleX(1); }

.ci-icon-ring {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
    background: rgba(26,122,74,0.1);
    border: 1px solid rgba(26,122,74,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; position: relative; transition: 0.4s;
}
.ci-icon-ring::after {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    border: 1px solid rgba(201,149,42,0.12);
    animation: ringBreath 3s ease-in-out infinite;
}
@keyframes ringBreath { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:0;transform:scale(1.2)} }
.ci-card:hover .ci-icon-ring {
    background: rgba(201,149,42,0.12);
    border-color: rgba(201,149,42,0.3);
    transform: scale(1.08);
}

.ci-card-label {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px; display: block;
}
.ci-card h3 {
    font-family: 'Oswald', 'Cinzel', serif;
    font-size: 1.1rem; color: var(--white); margin-bottom: 16px; font-weight: 500;
}
.ci-card-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; color: rgba(238,245,241,0.8); line-height: 1.8;
    font-weight: 300; text-decoration: none; transition: 0.3s;
    display: block;
}
.ci-card-val:hover { color: var(--gold); }
.ci-card p.ci-note {
    color: var(--text-muted); font-size: 0.8rem; line-height: 1.7;
    margin-top: 8px; font-weight: 300;
}

/* ══════════════════════════════════════════════
   FULL-WIDTH CONTACT DETAILS STRIP
══════════════════════════════════════════════ */
.contact-details-section {
    position: relative; z-index: 10;
    background: var(--dark-3);
    padding: 80px 6%;
    overflow: hidden;
}
.contact-details-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}

/* Left: company details */
.cd-company { }
.cd-company-header { margin-bottom: 48px; }
.cd-company-header h2 {
    font-family: 'Oswald', 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); font-weight: 500;
    margin-top: 14px;
}
.cd-company-header h2 span { color: var(--gold); }
.cd-company-header .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; color: var(--text-muted); font-style: italic; margin-top: 8px;
}

.cd-row {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 20px 22px; border-radius: 16px;
    background: rgba(26,122,74,0.05); border: 1px solid rgba(26,122,74,0.1);
    margin-bottom: 14px; transition: 0.3s;
}
.cd-row:hover { background: rgba(26,122,74,0.1); border-color: rgba(26,122,74,0.22); }
.cd-row .cd-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cd-row .cd-content label {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted); display: block; margin-bottom: 4px;
}
.cd-row .cd-content span,   
.cd-row .cd-content a {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem; color: var(--white); text-decoration: none; transition: 0.3s;
    display: block;
    word-break: break-word;
    word-spacing: normal;
    letter-spacing: normal;
    text-align: left;
}
.cd-row .cd-content a:hover { color: var(--gold); }

/* Right: map + hours */
.cd-right { }
.cd-map-wrap {
    border-radius: 20px; overflow: hidden; margin-bottom: 28px;
    border: 1px solid rgba(26,122,74,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cd-map-placeholder {
    height: 260px;
    background: linear-gradient(135deg, #0a3018, #082614);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 14px; position: relative; overflow: hidden;
}
/* Animated pin on map */
.cd-map-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg,  transparent, transparent 30px, rgba(26,122,74,0.08) 30px, rgba(26,122,74,0.08) 31px),
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(26,122,74,0.08) 30px, rgba(26,122,74,0.08) 31px);
}
.map-pin-wrap {
    position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.map-pin-icon { font-size: 2.4rem; animation: mapPinBounce 2s ease-in-out infinite; }
@keyframes mapPinBounce {
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-8px)}
}
.map-pulse {
    width: 60px; height: 12px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,149,42,0.3), transparent);
    animation: pulseShadow 2s ease-in-out infinite;
}
@keyframes pulseShadow {
    0%,100%{transform:scale(1);opacity:0.6}
    50%{transform:scale(0.8);opacity:0.3}
}
.map-pin-wrap p {
    font-family: 'Oswald', sans-serif; font-weight: 400;
    font-size: 0.82rem; letter-spacing: 2px; color: var(--white); text-align: center; z-index: 2;
}
.map-pin-wrap small {
    font-size: 0.68rem; color: var(--text-muted); letter-spacing: 1px; z-index: 2;
}

.cd-map-link {
    display: block; padding: 14px 20px; text-align: center;
    background: rgba(201,149,42,0.08); border-top: 1px solid rgba(26,122,74,0.15);
    font-family: 'Oswald', sans-serif; font-weight: 400;
    font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); text-decoration: none; transition: 0.3s;
}
.cd-map-link:hover { background: rgba(201,149,42,0.15); }

/* Business hours card */
.cd-hours {
    border-radius: 16px; background: var(--dark-2);
    border: 1px solid rgba(26,122,74,0.15); padding: 28px 28px 24px;
}
.cd-hours-title {
    font-family: 'Oswald', 'Cinzel', serif; font-weight: 500;
    font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.cd-hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid rgba(26,122,74,0.1);
}
.cd-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.cd-hours-row .day {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-muted);
}
.cd-hours-row .time {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem; color: var(--white); font-weight: 300;
}
.cd-hours-row .time.open { color: #4ade80; }
.cd-hours-row .time.closed { color: var(--text-muted); }

/* ══════════════════════════════════════════════
   SOCIAL / CONNECT SECTION
══════════════════════════════════════════════ */
.connect-section {
    position: relative; z-index: 10;
    background: var(--dark-2); padding: 100px 6%;
    overflow: hidden;
    border-top: 1px solid rgba(26,122,74,0.12);
}
.connect-inner {
    max-width: 900px; margin: 0 auto; text-align: center;
}
.connect-inner h2 {
    font-family: 'Oswald', 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); font-weight: 500;
    margin: 16px 0 12px;
}
.connect-inner h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }
.connect-inner p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 50px; }

/* Action channels */
.connect-channels {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    margin-bottom: 50px;
}
.cc-channel {
    display: flex; flex-direction: column; align-items: center;
    padding: 36px 24px; border-radius: 20px;
    background: var(--dark-3); border: 1px solid rgba(26,122,74,0.12);
    text-decoration: none; transition: all 0.4s; position: relative; overflow: hidden;
}
.cc-channel::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,122,74,0.1) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.cc-channel:hover {
    border-color: rgba(201,149,42,0.35); transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.cc-channel:hover::after { opacity: 1; }
.cc-emoji { font-size: 2.2rem; margin-bottom: 14px; transition: transform 0.35s; }
.cc-channel:hover .cc-emoji { transform: scale(1.15) rotate(-5deg); }
.cc-ch-label {
    font-family: 'Oswald', sans-serif; font-weight: 300;
    font-size: 0.66rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 6px;
}
.cc-ch-val {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem; color: var(--white); font-weight: 300; text-align: center;
}
.cc-channel:hover .cc-ch-val { color: var(--gold); }

/* WhatsApp special CTA */
.whatsapp-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 44px; border-radius: 50px;
    background: linear-gradient(135deg, #1a7a4a, #22a060);
    color: #fff; font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; transition: 0.35s;
    box-shadow: 0 10px 30px rgba(26,122,74,0.4);
}
.whatsapp-cta:hover {
    background: linear-gradient(135deg, #22a060, #2ecc82);
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(26,122,74,0.5);
}
.whatsapp-cta .wa-icon { font-size: 1.2rem; }

/* ══════════════════════════════════════════════
   CTA BOTTOM STRIP
══════════════════════════════════════════════ */
.contact-cta-strip {
    position: relative; z-index: 10;
    background: var(--dark);
    padding: 100px 6%; text-align: center; overflow: hidden;
    border-top: 1px solid rgba(201,149,42,0.1);
}
.contact-cta-strip::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 100% at 50% 50%, rgba(201,149,42,0.06) 0%, transparent 60%);
}
.cta-strip-wrap { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-strip-wrap h2 {
    font-family: 'Oswald', 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 14px; font-weight: 500;
}
.cta-strip-wrap h2 em { font-style: italic; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15em; }
.cta-strip-wrap p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 42px; }
.cta-strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-solid {
    padding: 16px 42px; background: var(--gold); color: var(--dark);
    font-family: 'Oswald', serif; font-size: 0.82rem; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border-radius: 3px;
    transition: 0.3s; font-weight: 500;
    box-shadow: 0 8px 24px rgba(201,149,42,0.3);
}
.cta-btn-solid:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,149,42,0.4); }
.cta-btn-border {
    padding: 16px 42px; border: 1px solid rgba(201,149,42,0.45); color: var(--gold);
    font-family: 'Oswald', serif; font-size: 0.82rem; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: 0.3s;
}
.cta-btn-border:hover { background: rgba(201,149,42,0.08); transform: translateY(-3px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .contact-details-inner { grid-template-columns: 1fr; gap: 50px; }
    .ci-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .connect-channels { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 50px; }
}
@media (max-width: 768px) {
    .ch-pills { flex-direction: column; align-items: center; }
    .ci-cards { grid-template-columns: 1fr; }
    .connect-channels { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .cta-strip-btns { flex-direction: column; align-items: center; }
    .cta-btn-solid, .cta-btn-border { width: 100%; max-width: 280px; text-align: center; }
    .contact-hero-content h1 { letter-spacing: 0.03em; }
}