/* ==========================================================================
   Grackle — Contact page styles
   Header/nav/hamburger/footer/whatsapp styles live in css/styles.css
   (loaded before this file). This file owns ONLY this page's sections,
   and follows the same editorial design language used across the site:
   Fraunces (serif) for headings + italic accent labels, Inter for body
   copy, restrained colour palette, hairline rules and quiet numerals
   instead of badges/blobs.
   ========================================================================== */

:root {
    --gr-indigo: #393F78;
    --gr-indigo-deep: #262a52;
    --gr-indigo-light: #5F66B6;
    --gr-orange: #FF6600;
    --gr-orange-deep: #CC5200;
    --gr-ink: #222b45;
    --gr-mist: #f5f6fb;
    --gr-cream: #faf7ec;
    --gr-line: rgba(57, 63, 120, 0.14);
    --gr-shadow-sm: 0 2px 10px rgba(31, 35, 75, 0.06);
    --gr-shadow-md: 0 10px 28px rgba(31, 35, 75, 0.10);
    --gr-radius-lg: 10px;
    --gr-radius-md: 6px;
    --gr-section-pad: clamp(4rem, 7vw, 6.5rem);
    --gr-serif: 'Fraunces', 'Georgia', serif;
}

/* ==========================================================================
   Section eyebrow accents (italic serif label, dashes hidden)
   ========================================================================== */
.co-hero .section-eyebrow,
.co-section-head .section-eyebrow,
.co-spotlight-content .section-eyebrow,
.co-cta-inner .section-eyebrow {
    font-family: var(--gr-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--gr-orange-deep);
    margin-bottom: 0.6rem;
    display: block;
}
.co-hero .section-eyebrow,
.co-cta-inner .section-eyebrow {
    color: #ffb37a;
}
.co-hero .section-eyebrow::before,
.co-hero .section-eyebrow::after,
.co-section-head .section-eyebrow::before,
.co-section-head .section-eyebrow::after,
.co-spotlight-content .section-eyebrow::before,
.co-spotlight-content .section-eyebrow::after,
.co-cta-inner .section-eyebrow::before,
.co-cta-inner .section-eyebrow::after {
    display: none;
}

/* Buttons — identical to about.css / hotel-partners.css / experience.css */
.btn-primary {
    background: var(--gr-orange);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: var(--gr-radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--gr-orange);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background: var(--gr-orange-deep);
    border-color: var(--gr-orange-deep);
    transform: translateY(-1px);
}
.btn-secondary {
    background: #fff;
    color: var(--gr-indigo);
    padding: 0.85rem 2rem;
    border-radius: var(--gr-radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 1px solid var(--gr-line);
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-secondary:hover {
    background: var(--gr-mist);
    transform: translateY(-1px);
}
.btn-outline {
    border: 1px solid var(--gr-indigo);
    color: var(--gr-indigo);
    padding: 0.78rem 1.8rem;
    border-radius: var(--gr-radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover {
    background: var(--gr-indigo);
    color: #fff;
}
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    padding: 0.78rem 1.8rem;
    border-radius: var(--gr-radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--gr-indigo);
}

/* Shared centered section heading block */
.co-section-head {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
}
.co-section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--gr-indigo);
    font-weight: 600;
    line-height: 1.25;
}
.co-section-intro {
    color: #5a5f86;
    font-size: 1.05rem;
    margin-top: 0.6rem;
}

/* ==========================================================================
   Hero — gradient panel (no photo), quick-contact row
   ========================================================================== */
.co-hero {
    position: relative;
    background: linear-gradient(150deg, #2f3566 0%, var(--gr-indigo) 45%, #454c91 100%);
    padding: calc(86px + 3.5rem) 0 4rem 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.co-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.22) 0%, rgba(255, 102, 0, 0) 70%);
    pointer-events: none;
}
.co-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.co-hero-inner h1 {
    font-size: clamp(2.3rem, 4.6vw, 3.4rem);
    color: #fff;
    line-height: 1.16;
    margin: 0.4rem 0 1.1rem 0;
}
.co-hero-lead {
    font-size: 1.14rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 540px;
    margin: 0 auto 2.4rem auto;
}
.co-hero-quick {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 2.6rem;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.co-hero-quick a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.co-hero-quick a:hover {
    color: var(--gr-orange);
}
.co-hero-quick a:hover svg {
    fill: #fff;
}
.co-hero-quick svg {
    width: 15px;
    height: 15px;
    fill: #ffb37a;
    flex-shrink: 0;
    transition: fill 0.2s ease;
}
.co-hero-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   Contact-purpose cards (mirrors hp-differentiator-card)
   ========================================================================== */
.co-cards-section {
    position: relative;
    overflow: hidden;
    padding: var(--gr-section-pad) 0;
    background: #fff;
}
.co-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.co-card {
    background: var(--gr-mist);
    border: 1px solid var(--gr-line);
    border-radius: var(--gr-radius-lg);
    padding: 2rem 1.6rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.co-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gr-shadow-md);
    border-color: rgba(255, 102, 0, 0.35);
    background: #fff;
}
.co-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gr-orange);
    border-radius: 50%;
    flex-shrink: 0;
}
.co-card:nth-child(even) .co-card-icon {
    background: var(--gr-indigo);
}
.co-card-icon svg {
    width: 44%;
    height: 44%;
    fill: #fff;
    display: block;
}
.co-card h3 {
    font-size: 1.1rem;
    text-align: left;
    color: var(--gr-indigo);
    margin-bottom: 0.5rem;
}
.co-card p {
    text-align: left;
    color: #5a5f86;
    font-size: 0.92rem;
    margin: 0 0 1.2rem 0;
    flex: 1;
}
.co-card-phone {
    font-size: 0.85rem;
    color: #5a5f86;
    margin: 0 0 0.9rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.co-card-phone a {
    color: var(--gr-indigo);
    font-weight: 600;
    text-decoration: none;
}
.co-card-phone a:hover {
    color: var(--gr-orange);
}
.co-card-link {
    color: var(--gr-orange-deep);
    font-weight: 600;
    font-size: 0.94rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.co-card-link:hover {
    color: var(--gr-orange);
}

/* ==========================================================================
   Spotlight — "always within reach" image + copy panel (mirrors hp-vision-section)
   ========================================================================== */
.co-spotlight-section {
    position: relative;
    overflow: hidden;
    padding: var(--gr-section-pad) 0;
    background: var(--gr-mist);
}
.co-spotlight-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.co-spotlight-image {
    flex: 1 1 0;
    border-radius: var(--gr-radius-lg);
    overflow: hidden;
    box-shadow: var(--gr-shadow-md);
}
.co-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3.2;
}
.co-spotlight-content {
    flex: 1 1 0;
    text-align: left;
}
.co-spotlight-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--gr-indigo);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.co-spotlight-content p {
    color: #5a5f86;
    font-size: 1.02rem;
    margin-bottom: 1.8rem;
}
.co-spotlight-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--gr-line);
}
.co-spotlight-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.co-spotlight-stat strong {
    font-family: var(--gr-serif);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--gr-indigo);
}
.co-spotlight-stat span {
    font-size: 0.82rem;
    color: #5a5f86;
}

/* ==========================================================================
   Quick links — "find what you came for"
   ========================================================================== */
.co-links-section {
    position: relative;
    overflow: hidden;
    padding: var(--gr-section-pad) 0;
    background: #fff;
}
.co-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.co-link-card {
    background: var(--gr-mist);
    border: 1px solid var(--gr-line);
    border-radius: var(--gr-radius-lg);
    padding: 1.5rem 1.4rem;
    text-align: left;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.co-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gr-shadow-md);
    border-color: rgba(255, 102, 0, 0.35);
}
.co-link-card span.co-link-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gr-orange-deep);
}
.co-link-card h4 {
    font-size: 1.02rem;
    color: var(--gr-indigo);
    margin: 0;
}
.co-link-card .co-link-arrow {
    color: var(--gr-indigo-light);
    font-weight: 600;
    font-size: 0.88rem;
}

/* ==========================================================================
   Closing CTA banner (mirrors ex-cta-section / sk-cta-section)
   ========================================================================== */
.co-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #2f3566 0%, var(--gr-indigo) 45%, #454c91 100%);
    padding: var(--gr-section-pad) 0;
    color: #fff;
    text-align: center;
}
.co-cta-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.co-cta-inner h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
}
.co-cta-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    margin-bottom: 2.2rem;
}
.co-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .co-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .co-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .co-spotlight-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    .co-spotlight-content {
        text-align: center;
    }
    .co-spotlight-content h2,
    .co-spotlight-content p {
        text-align: center;
    }
    .co-spotlight-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .co-hero {
        padding: calc(78px + 2.2rem) 0 3rem 0;
    }
    .co-hero-inner h1 {
        font-size: clamp(1.7rem, 6.5vw, 2.1rem);
        line-height: 1.22;
    }
    .co-hero-lead {
        font-size: 1rem;
        margin: 0 auto 1.8rem auto;
    }
    .co-hero-quick {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .co-hero-quick a {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .co-hero-divider {
        display: none;
    }
    .co-cards-grid {
        grid-template-columns: 1fr;
    }
    .co-links-grid {
        grid-template-columns: 1fr;
    }
    .co-spotlight-stats {
        flex-wrap: wrap;
        gap: 1.4rem;
    }
    .co-cta-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .co-cta-actions .btn-primary,
    .co-cta-actions .btn-outline-light {
        text-align: center;
        width: 100%;
    }
}
