/* =========================================================================
   CONTACT US PAGE — Enhanced Redesign CSS (Events Page Editorial Design Language)
   Light Cinematic Hero + Playfair Display Accent + Asymmetric Editorial Grid + Zero Pills
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,400;1,600;1,700&display=swap');

.contact-page {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    overflow-x: hidden;
}

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-slide-up.is-active,
.reveal-slide-up.revealed,
.contact-hero-wrap.is-active .reveal-slide-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* =========================================================================
   HERO — Light Cinematic Showcase (Events Page Reference)
   ========================================================================= */
.contact-hero-wrap {
    background: linear-gradient(160deg, #f5f9ff 0%, #eef4ff 40%, #f7faff 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.contact-hero-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
}

.contact-orb.orb-1 {
    width: 600px; height: 600px;
    top: -150px; left: -100px;
    background: rgba(37, 99, 235, 0.1);
}

.contact-orb.orb-2 {
    width: 500px; height: 500px;
    bottom: -200px; right: -50px;
    background: rgba(99, 102, 241, 0.08);
}

.contact-watermark {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.75);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 13vw, 16rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.09em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0f172a 30%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 2s cubic-bezier(0.16, 1, 0.3, 1),
                letter-spacing 2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, letter-spacing;
    z-index: 2;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.contact-hero-wrap.is-active .contact-watermark {
    opacity: 0.045;
    letter-spacing: 0.05em;
    transform: translate(-50%, -50%) scale(1);
}

.contact-hero-inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.contact-hero-content {
    padding-right: 20px;
}

/* Events Page Signature Eyebrow */
.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.contact-eyebrow-line {
    width: 40px; height: 1px;
    background: #2563eb;
}

.contact-eyebrow-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #2563eb;
    text-transform: uppercase;
}

/* Events Page Signature Hero Title with Playfair Italic */
.contact-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-hero-title .accent {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #2563eb;
    font-size: 0.9em;
}

.contact-hero-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 35px;
    font-weight: 400;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.28);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
    color: #ffffff;
    transform: none;
    opacity: 0.95;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #ffffff;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.btn-hero-secondary:hover {
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.35);
    transform: none;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.1);
}

/* Events Page Signature Metrics Row */
.contact-hero-metrics {
    display: flex;
    gap: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.metric-card {
    display: flex;
    flex-direction: column;
}

.metric-card-val {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #0f172a 30%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Events Page Signature Rotated Graphic Card */
.contact-hero-gfx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-gfx-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.04);
    max-width: 420px;
    width: 100%;
    position: relative;
    z-index: 5;
    transform: rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-gfx-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1.5px solid #2563eb;
    transform: translate(-10px, 10px) rotate(-4deg);
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-hero-gfx:hover .contact-gfx-card {
    transform: rotate(0deg);
}

.contact-hero-gfx:hover .contact-gfx-card::before {
    transform: translate(-6px, 6px) rotate(-2deg);
}

.gfx-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.gfx-icon {
    width: 46px; height: 46px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gfx-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.gfx-body-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gfx-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.gfx-info-row:hover {
    border-color: rgba(37, 99, 235, 0.35);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.06);
}

.gfx-row-icon {
    width: 38px;
    height: 38px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gfx-row-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gfx-row-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.gfx-row-val {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.3;
}

.gfx-row-val strong {
    color: #0f172a;
    font-weight: 700;
}

.gfx-row-val.phone-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gfx-row-val.phone-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Scroll Hint Bar */
.contact-scroll-hint {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    cursor: pointer;
}

.scroll-hint-bar {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #2563eb 0%, transparent 100%);
    animation: scrollDrop 1.8s infinite;
}

@keyframes scrollDrop {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.contact-scroll-hint span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #94a3b8;
    text-transform: uppercase;
}

/* Floating Back to Top Button (Events Page Alignment) */
.contact-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.contact-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-to-top:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================================================
   EVENTS PAGE EDITORIAL SECTION HEADER
   ========================================================================= */
.editorial-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.editorial-left {
    max-width: 540px;
}

.editorial-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(37, 99, 235, 0.15);
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.04em;
}

.editorial-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.editorial-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.05;
    text-align: right;
    letter-spacing: -0.03em;
}

/* =========================================================================
   CONTACT HUBS SECTION
   ========================================================================= */
.contact-hubs-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hub-grid-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.hub-grid-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
}

.contact-status-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #2563eb;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-status-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.hub-grid-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.25;
}

.hub-grid-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
}

.hub-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.hub-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.hub-detail-link:hover {
    color: #2563eb;
}

.hub-detail-link svg {
    color: #2563eb;
    flex-shrink: 0;
}

/* Events Page Signature Card Link Arrow Button */
.editorial-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.editorial-card-link:hover {
    gap: 14px;
    color: #1d4ed8;
}

/* =========================================================================
   FORM & LOCATION SECTION
   ========================================================================= */
.contact-interactive-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 45px;
    align-items: start;
}

/* Smart Contact Form Container */
.contact-form-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 52px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    position: relative;
}

.form-header-area {
    margin-bottom: 34px;
}

.form-header-area h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.form-header-area p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* SLEEK EDITORIAL CATEGORY SELECTOR CARDS (NO PILLS) */
.category-selector-wrapper {
    margin-bottom: 36px;
}

.selector-label-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cat-select-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    position: relative;
}

.cat-select-card:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.cat-select-card.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(96, 165, 250, 0.08) 100%);
    border-color: #2563eb;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.14);
}

.cat-select-card.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: #2563eb;
    border-radius: 0 4px 4px 0;
}

.cat-icon-box {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.cat-select-card.active .cat-icon-box {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.cat-text-box h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.cat-text-box p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

/* Category Checkmark Badge */
.cat-check-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.cat-select-card.active .cat-check-badge {
    opacity: 1;
    transform: scale(1);
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* =========================================================================
   CUSTOM UPGRADED DROPDOWN COMPONENT
   ========================================================================= */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper select {
    display: none !important;
}

/* Custom Dropdown Trigger */
.custom-select-trigger {
    width: 100% !important;
    padding: 16px 48px 16px 52px !important;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 0.96rem !important;
    color: #0f172a !important;
    font-family: inherit !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.25s ease !important;
    user-select: none !important;
    box-sizing: border-box !important;
}

.custom-select-trigger.placeholder {
    color: #94a3b8 !important;
}

.custom-select-wrapper.open .custom-select-trigger {
    background: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

.custom-select-arrow {
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #64748b !important;
    pointer-events: none !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    z-index: 4 !important;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: translateY(-50%) rotate(180deg) !important;
    color: #2563eb !important;
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.14);
    z-index: 99;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 8px 0;
}

.custom-select-wrapper.open .custom-select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-group-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #2563eb;
    text-transform: uppercase;
    padding: 10px 20px 6px;
    background: rgba(37, 99, 235, 0.04);
    border-top: 1px solid rgba(0,0,0,0.04);
}

.custom-select-group-title:first-child {
    border-top: none;
}

.custom-select-option {
    padding: 12px 20px 12px 36px;
    font-size: 0.92rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.custom-select-option::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.custom-select-option:hover {
    background: #f1f5f9;
    color: #2563eb;
    padding-left: 40px;
}

.custom-select-option:hover::before {
    background: #2563eb;
}

.custom-select-option.selected {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-weight: 700;
}

.custom-select-option.selected::before {
    background: #2563eb;
}

/* Form Controls */
.smart-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 22px;
}

.smart-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.smart-form-group.full-width {
    grid-column: 1 / -1;
}

.smart-form-group label {
    font-size: 0.83rem;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.smart-form-group label span.required {
    color: #ef4444;
}

.input-with-icon,
.custom-select-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.input-icon,
.input-with-icon .input-icon,
.custom-select-wrapper .input-icon {
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #94a3b8 !important;
    pointer-events: none !important;
    transition: color 0.25s ease !important;
    z-index: 5 !important;
    width: 18px !important;
    height: 18px !important;
}

.input-with-icon:focus-within .input-icon,
.custom-select-wrapper.open .input-icon {
    color: #2563eb !important;
}

.smart-input,
.input-with-icon .smart-input,
.input-with-icon input {
    width: 100% !important;
    padding: 16px 20px 16px 52px !important;
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 0.96rem !important;
    color: #0f172a !important;
    font-family: inherit !important;
    outline: none !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.smart-input.no-icon,
textarea.smart-input {
    padding-left: 20px !important;
}

.smart-input::placeholder {
    color: #94a3b8;
}

.smart-input:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-with-icon:focus-within .input-icon {
    color: #2563eb;
}

textarea.smart-input {
    resize: vertical;
    min-height: 140px;
    padding-top: 15px;
}

/* Submit Button */
.btn-submit-form {
    grid-column: 1 / -1;
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    margin-top: 10px;
}

.btn-submit-form:hover {
    transform: none;
    opacity: 0.96;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}

.btn-submit-form:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success Card */
#formSuccess {
    display: none;
    text-align: center;
    padding: 45px 20px;
}

.success-badge-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border: 2px solid #86efac;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: bounceIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.success-desc {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.btn-reset-form {
    padding: 14px 34px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.btn-reset-form:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Right Column — Map & Directions Guide */
.contact-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.map-card-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
}

.map-card-header {
    padding: 24px 28px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.map-card-header p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

.map-iframe-container {
    width: 100%;
    height: 310px;
    position: relative;
    background: #e2e8f0;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-card-footer {
    padding: 20px 28px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.map-location-tag {
    font-size: 0.88rem;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-map-direct {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #2563eb;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-map-direct:hover {
    color: #ffffff;
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Transport & Access Card */
.transport-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
}

.transport-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.transport-badge {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.transport-info h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.transport-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* =========================================================================
   FAQ SECTION
   ========================================================================= */
.contact-faq-section {
    padding: 90px 0 100px;
    background: #ffffff;
}

.faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background: #2563eb;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================================
   BOTTOM CTA BAR
   ========================================================================= */
.contact-cta-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
}

.cta-text p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #2563eb;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-cta-phone:hover {
    color: #ffffff;
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #10b981;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-cta-whatsapp:hover {
    color: #ffffff;
    background: #059669;
    transform: translateY(-2px);
}

/* =========================================================================
   RESPONSIVE LAYOUT
   ========================================================================= */
@media (max-width: 1200px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-content {
        padding-right: 0;
    }

    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .category-cards-grid {
        grid-template-columns: 1fr;
    }

    .editorial-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .editorial-title {
        text-align: left;
    }

    .contact-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .contact-hero-wrap {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-metrics {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hubs-grid {
        grid-template-columns: 1fr;
    }

    .smart-form-grid {
        grid-template-columns: 1fr;
    }
}
