/* ===================================================================
   Blue Tiful Citywalks – RAJASTHANI HERITAGE DESIGN
   Warm desert palette · Gold ornaments · Blue City vibe
   =================================================================== */

/* ──────────── CSS Custom Properties ──────────── */
:root {
    /* ─ Core Rajasthani + Blue City Palette ─ */
    --primary:          #1a3a6b;          /* Deep Jodhpur indigo */
    --primary-light:    #2a5298;
    --jodhpur-blue:     #4A90B8;          /* Signature Blue City blue */
    --jodhpur-blue-deep:#2E6E8F;
    --jodhpur-blue-soft: rgba(74,144,184,.10);
    --accent-saffron:   #E8782A;          /* Warm saffron */
    --accent-gold:      #D4A853;          /* Antique gold */
    --accent-gold-light:#F0D48A;
    --terracotta:       #C0522A;          /* Earthy terracotta */
    --accent-yellow:    #E6B422;          /* Warm gold CTA */

    /* ─ Backgrounds ─ */
    --bg-warm:          #FDF6EC;          /* Desert cream */
    --bg-sand:          #F5EBDD;          /* Parchment sand */
    --bg-dark:          #1A1209;          /* Warm brown-black */
    --bg-dark-accent:   #2A1F10;

    /* ─ Text ─ */
    --text-dark:        #2C1810;          /* Warm dark brown */
    --text-muted:       #6B5B4E;          /* Warm grey-brown */
    --text-light:       #A89585;

    /* ─ Borders & Shadows ─ */
    --card-border:      #E8D8C4;
    --shadow-sm:        0 2px 8px rgba(42,25,8,.06);
    --shadow-lg:        0 10px 40px rgba(42,25,8,.10);
    --shadow-xl:        0 20px 60px rgba(42,25,8,.14);
    --shadow-gold:      0 4px 24px rgba(212,168,83,.25);

    /* ─ Utilities ─ */
    --radius-lg:        0.75rem;
    --radius-xl:        1rem;
    --radius-2xl:       1.25rem;
    --transition:       all .35s cubic-bezier(.4,0,.2,1);

    /* ─ Ornamental ─ */
    --ornament-height:  32px;
}

/* ──────────── Base / Global ──────────── */
*,*::before,*::after { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-warm);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
}

.font-serif { font-family: 'Playfair Display', serif; }

::selection { background: rgba(212,168,83,.35); color: #1A1209; }

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: var(--transition); }

/* ──────────── Utility colors ──────────── */
.text-primary       { color: var(--primary) !important; }
.text-accent-yellow { color: var(--accent-gold) !important; }
.text-accent-gold   { color: var(--accent-gold) !important; }
.text-sky-200       { color: var(--jodhpur-blue) !important; }
.text-jodhpur-blue  { color: var(--jodhpur-blue) !important; }
.text-saffron       { color: var(--accent-saffron) !important; }

/* ──────────── Shared section helpers ──────────── */
.py-section { padding-top: 5rem; padding-bottom: 5rem; }

.section-label {
    display: inline-block;
    color: var(--accent-saffron);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-gold);
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); color: var(--text-dark); }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

/* ── Gold Ornamental Divider ── */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
}
.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.ornament-divider .ornament-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    opacity: .7;
}

/* =========================================================
   NAVBAR – Pill-Shaped Floating Transparent Bar
   ========================================================= */

/* The fixed-top header just provides positioning context */
header.fixed-top {
    background: transparent !important;
    padding: .75rem 1rem;
}

.navbar-custom {
    background: rgba(151, 132, 113, 0.55);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;
    padding: .35rem .6rem .35rem 1.4rem;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0,0,0,.12);
}

.navbar-custom.scrolled {
    background: rgba(70, 58, 45, 0.82);
    box-shadow: 0 6px 40px rgba(0,0,0,.22);
    border-color: rgba(255,255,255,.06);
}

/* ── Brand ── */
.brand-icon { font-size: 1.6rem; color: rgba(255,255,255,.85) !important; }
.brand-text {
    font-size: 1.4rem;
    color: #fff !important;
    font-weight: 400;
}
.brand-sub {
    font-size: .95rem;
    color: rgba(255,255,255,.55) !important;
    font-style: italic;
}

/* ── Nav Links ── */
.navbar-custom .nav-link {
    color: rgba(255,255,255,.75);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .015em;
    transition: var(--transition);
    padding: .5rem .75rem;
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #fff;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 50%;
}

/* ── CTA Button inside navbar ── */
.btn-cta-yellow {
    background: linear-gradient(135deg, var(--accent-saffron), var(--terracotta));
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(232,120,42,.30);
    transition: var(--transition);
}

.btn-cta-yellow:hover {
    background: linear-gradient(135deg, var(--terracotta), var(--accent-saffron));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,120,42,.40);
}

/* ── Offcanvas Mobile Menu ── */
.offcanvas {
    max-width: 300px;
    background: var(--bg-warm);
}

.offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 1.25rem;
}

.offcanvas .offcanvas-body .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: .75rem 0;
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

.offcanvas .offcanvas-body .nav-link:hover {
    color: var(--accent-saffron);
}

.offcanvas .offcanvas-body .nav-link::after {
    display: none;
}

/* ── Mobile toggler icon color ── */
.navbar-custom .navbar-toggler .material-icons-round {
    color: #fff;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
    min-height: 100vh;
    position: relative;
    padding-top: 6rem;
}

.hero-bg { z-index: 0; }

.hero-overlay {
    background: linear-gradient(to right,
        rgba(26,18,9,.90),
        rgba(26,58,107,.75),
        rgba(192,82,42,.20),
        transparent);
    z-index: 1;
}

.hero-img {
    object-position: center;
    transform: scale(1.05);
}

.hero-badge {
    background: linear-gradient(135deg, rgba(74,144,184,.20), rgba(212,168,83,.15));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74,144,184,.35);
    color: #cde6f5;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jodhpur-blue);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%      { opacity: .3; }
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.15;
    text-shadow: 0 2px 30px rgba(26,18,9,.30);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    opacity: .92;
    max-width: 520px;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
}

.whatsapp-icon { width: 24px; height: 24px; }

.hero-btn-primary {
    padding: .9rem 2rem;
}

.btn-glass {
    background: rgba(212,168,83,.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(212,168,83,.40);
    transition: var(--transition);
    padding: .9rem 2rem;
}

.btn-glass:hover {
    background: rgba(212,168,83,.30);
    color: #fff;
}

/* scroll indicator */
.scroll-arrow {
    font-size: 2.5rem;
    opacity: .6;
    color: var(--accent-gold-light);
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(10px); }
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-section {
    background: var(--bg-sand);
    position: relative;
}

/* .features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--accent-gold) 50%, transparent 95%);
    opacity: .4;
} */

.feature-card {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-saffron));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(232,120,42,.12), rgba(212,168,83,.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-saffron);
    font-size: 1.75rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--accent-saffron), var(--terracotta));
    color: #fff;
}

.feature-title { font-size: 1.2rem; color: var(--text-dark); margin-bottom: .75rem; }
.feature-text  { color: var(--text-muted); line-height: 1.7; margin: 0; }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
    background: var(--bg-warm);
    position: relative;
}

.about-image-wrap { position: relative; }

.about-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.about-blob-yellow {
    width: 100px; height: 100px;
    background: rgba(212,168,83,.20);
    top: -20px; left: -20px;
}

.about-blob-blue {
    width: 130px; height: 130px;
    background: rgba(74,144,184,.18);
    bottom: -20px; right: -20px;
}

.about-img-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 3px rgba(74,144,184,.15);
    transform: rotate(2deg);
    transition: transform .5s ease;
    z-index: 1;
    border: 3px solid rgba(212,168,83,.25);
}

.about-img-container:hover { transform: rotate(0deg); }

.about-img {
    height: 600px;
    object-fit: cover;
}

.about-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26,18,9,.85));
    padding: 2rem;
}

.about-title { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--text-dark); line-height: 1.25; }
.about-text  { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; }

.underline-svg {
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 2px;
    left: 0;
    color: rgba(212,168,83,.55);
    z-index: -1;
}

.stat-number { font-size: 1.75rem; color: var(--jodhpur-blue-deep); }
.stat-label  { font-size: .8rem; color: var(--text-muted); }
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--card-border);
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */
.gallery-section {
    background: linear-gradient(180deg, var(--bg-sand) 0%, rgba(74,144,184,.04) 50%, var(--bg-sand) 100%);
    position: relative;
}

/* .gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--accent-gold) 50%, transparent 95%);
    opacity: .4;
} */

.gallery-item {
    height: 300px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-item:hover {
    box-shadow: var(--shadow-gold);
    border-color: rgba(212,168,83,.40);
}

.gallery-img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gallery-item:hover .gallery-img { transform: scale(1.10); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(26,18,9,.70));
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
    font-size: 1.15rem;
    letter-spacing: .05em;
    border-bottom: 1px solid rgba(212,168,83,.60);
    padding-bottom: 4px;
    transform: translateY(12px);
    transition: transform .5s ease;
    color: var(--accent-gold-light);
}

.gallery-item:hover .gallery-label { transform: translateY(0); }

/* =========================================================
   REVIEWS / TESTIMONIALS SECTION
   ========================================================= */
.reviews-section {
    background: var(--bg-warm);
    position: relative;
}

/* .reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--accent-gold) 50%, transparent 95%);
    opacity: .4;
} */

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(212,168,83,.20);
    pointer-events: none;
}

.review-card:hover { box-shadow: var(--shadow-lg); }

.star-icon { font-size: 1.15rem; color: var(--accent-gold) !important; }

.review-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.reviewer-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px solid rgba(212,168,83,.30);
}

.reviewer-name { font-size: .9rem; color: var(--text-dark); }
.reviewer-location { font-size: .78rem; color: var(--text-light); }

/* Swiper nav buttons */
.btn-swiper-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
}

.btn-swiper-nav:hover {
    background: var(--bg-warm);
    border-color: var(--accent-gold);
    color: var(--accent-saffron);
}

/* =========================================================
   INSTAGRAM SECTION
   ========================================================= */
.instagram-section { background: var(--bg-sand); }

.instagram-embed { height: 72vh; }

.btn-hover-lift { transition: var(--transition); }
.btn-hover-lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-accent));
    color: #fff;
    padding: 5rem 0 2.5rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-saffron), var(--accent-gold));
}

.footer-blob {
    position: absolute;
    top: 0; right: 0;
    width: 380px; height: 380px;
    background: rgba(212,168,83,.06);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(50%, -50%);
}

.footer-cta-title { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--accent-gold-light); }
.footer-cta-subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 460px; }

.btn-instagram {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff;
    border: none;
    transition: var(--transition);
}
.btn-instagram:hover {
    background: linear-gradient(135deg, #6d28d9, #be185d);
    color: #fff;
    transform: translateY(-2px);
}

.footer-desc { color: var(--text-light); font-size: .9rem; line-height: 1.7; max-width: 360px; }
.footer-heading { font-size: 1rem; color: var(--accent-gold); }

.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--text-light); font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-gold); }

.footer-contact li { color: var(--text-light); font-size: .9rem; margin-bottom: .5rem; }

.footer-bottom { color: var(--text-light); font-size: .85rem; }

.footer-social {
    color: var(--text-light);
    transition: var(--transition);
}
.footer-social:hover { color: var(--accent-gold); }

/* =========================================================
   GSAP Animation Base States
   ========================================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

/* =========================================================
   RESPONSIVE OVERRIDES
   ========================================================= */

/* ── Mobile (< 576px) ── */
@media (max-width: 575.98px) {
    .py-section { padding-top: 3rem; padding-bottom: 3rem; }
    .hero-section { min-height: 90vh; padding-top: 5rem; }
    .about-img { height: 360px; }
    .gallery-item { height: 160px; }
    .instagram-embed { height: 50vh; }
    .site-footer { padding: 3rem 0 2rem; }
    .stat-number { font-size: 1.4rem; }
    .footer-cta-title { font-size: 1.6rem; }
    .section-label { padding-left: 1.5rem; font-size: .7rem; }
    .section-label::before { width: 14px; }
}

/* ── Tablet (576px – 991px) ── */
@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-section { min-height: 85vh; }
    .about-img { height: 420px; }
    .gallery-item { height: 260px; }
    .instagram-embed { height: 60vh; }
}

/* ── Laptop (992px – 1199px) ── */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .about-img { height: 500px; }
}

/* ── Desktop (1200px +) ── */
@media (min-width: 1200px) {
    .py-section { padding-top: 6rem; padding-bottom: 6rem; }
}

/* =========================================================
   CTA SECTION (Standalone)
   ========================================================= */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2a3d 50%, var(--bg-dark-accent) 100%);
    position: relative;
    overflow: hidden;
}

/* .cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-saffron), var(--accent-gold));
} */

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -80px;
    width: 350px; height: 350px;
    background: rgba(212,168,83,.08);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--accent-gold-light);
}

.cta-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 460px;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
    background: var(--bg-sand);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--accent-gold) 50%, transparent 95%);
    opacity: .4;
}

/* ── Contact Form Card ── */
.contact-form-card {
    background: var(--bg-warm);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-saffron));
}

.contact-form-heading {
    font-size: 1.4rem;
    color: var(--text-dark);
}

/* ── Form Floating Inputs ── */
.contact-form .form-floating {
    position: relative;
}

.contact-form .form-floating > .form-control {
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg) !important;
    background: #fff;
    font-size: .95rem;
    color: var(--text-dark);
    transition: var(--transition);
    height: calc(3.5rem + 2px);
    padding: 1.625rem .75rem .625rem;
}

.contact-form .form-floating > .form-control:focus {
    border-color: var(--jodhpur-blue);
    box-shadow: 0 0 0 3px rgba(74,144,184,.12);
    outline: none;
}

.contact-form .form-floating > label {
    padding: 1rem .75rem;
    font-size: .95rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--jodhpur-blue);
    font-size: .8rem;
    opacity: .85;
}

.contact-form .form-floating > textarea.form-control {
    height: 120px;
    min-height: 120px;
    resize: vertical;
}

/* ── Connect Card (Right Column) ── */
.connect-card {
    background: var(--bg-warm);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.connect-subtitle {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.6;
}

/* Connect link cards */
.connect-link-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.connect-link-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent-gold);
    opacity: 0;
    transition: var(--transition);
}

.connect-link-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,168,83,.35);
    transform: translateX(6px);
}

.connect-link-card:hover::before {
    opacity: 1;
}

.connect-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.connect-icon-wrap .whatsapp-icon {
    width: 26px;
    height: 26px;
}

.connect-icon-whatsapp {
    background: linear-gradient(135deg, rgba(37,211,102,.12), rgba(37,211,102,.06));
    color: #25D366;
}

.connect-icon-instagram {
    background: linear-gradient(135deg, rgba(131,58,180,.12), rgba(225,48,108,.08));
    color: #C13584;
}

.connect-icon-tripadvisor {
    background: linear-gradient(135deg, rgba(52,224,161,.12), rgba(0,175,98,.08));
    color: #00AF62;
}

.connect-link-card:hover .connect-icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.connect-link-card:hover .connect-icon-instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C);
    color: #fff;
}

.connect-link-card:hover .connect-icon-tripadvisor {
    background: linear-gradient(135deg, #34E0A1, #00AF62);
    color: #fff;
}

.connect-link-title {
    font-size: .95rem;
    color: var(--text-dark);
}

.connect-link-desc {
    font-size: .8rem;
    color: var(--text-muted);
}

.connect-arrow {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.connect-link-card:hover .connect-arrow {
    color: var(--accent-saffron);
    transform: translateX(4px);
}

/* Response time block */
.connect-info-block {
    background: linear-gradient(135deg, rgba(74,144,184,.08), rgba(212,168,83,.08));
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    border: 1px dashed rgba(212,168,83,.30);
}

.connect-info-text {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.6;
}

/* ── Form Validation States ── */
.contact-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220,53,69,.12) !important;
}

.contact-input.is-valid {
    border-color: #198754 !important;
    box-shadow: 0 0 0 3px rgba(25,135,84,.10) !important;
}

.contact-input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220,53,69,.20) !important;
}

.contact-input.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(25,135,84,.18) !important;
}


.form-error-msg {
    color: #dc3545;
    font-size: .78rem;
    margin-top: .35rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    animation: fadeInError .25s ease;
}

.form-error-msg::before {
    content: '⚠';
    font-size: .7rem;
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Success button state after submit */
.btn-success-state {
    background: linear-gradient(135deg, #198754, #157347) !important;
    box-shadow: 0 4px 20px rgba(25,135,84,.30) !important;
}

/* ── Contact Responsive ── */
@media (max-width: 575.98px) {
    .contact-form-card,
    .connect-card {
        padding: 1.5rem;
    }
    .cta-title { font-size: 1.6rem; }
}

/* ── Scrollbar hide utility ── */
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
