/* ============================================
   WAYTOTRIP — CINEMATIC 3D TRAVEL CONTACT CSS (contact.css)
   ============================================ */
:root {
    --bg-dark: #030814;
    --gold-primary: #ffc400;
    --gold-glow: rgba(255, 196, 0, 0.45);
    --cyan-primary: #00e5ff;
    --cyan-glow: rgba(0, 229, 255, 0.35);
    --green-active: #10b981;
    --glass-card: rgba(8, 20, 36, 0.90);
    --glass-border: rgba(255, 196, 0, 0.3);
    --text-white: #ffffff;
    --text-sub: #a0aec0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    position: relative;
}

/* Fixed Header Navbar Always Visible */
#navbar, header#navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60px !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(3, 9, 16, 0.96) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-bottom: 1px solid rgba(255, 196, 0, 0.4) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.8) !important;
}

/* ============================================
   1. VIBRANT COSMIC SPACE & AURORA NEBULA
   ============================================ */
#contact-space-viewport {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, #0c1c38 0%, #030918 50%, #01040a 100%);
    pointer-events: none;
}

.aurora-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 160vw;
    height: 90vh;
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(255, 196, 0, 0.28) 0%, rgba(245, 158, 11, 0.15) 35%, transparent 70%),
        radial-gradient(ellipse at 75% 30%, rgba(0, 229, 255, 0.25) 0%, rgba(59, 130, 246, 0.15) 40%, transparent 75%),
        radial-gradient(ellipse at 50% 70%, rgba(147, 51, 234, 0.20) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: cosmicNebulaPulse 14s ease-in-out infinite alternate;
}

@keyframes cosmicNebulaPulse {
    0% { transform: translateX(-50%) scale(1) rotate(-1deg); opacity: 0.85; }
    50% { transform: translateX(-48%) scale(1.2) rotate(2deg); opacity: 1; }
    100% { transform: translateX(-52%) scale(0.95) rotate(-2deg); opacity: 0.9; }
}

.tempo-starfield {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.tempo-star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    animation: starPulse var(--dur, 3s) ease-in-out infinite alternate;
}

@keyframes starPulse {
    0% { opacity: 0.2; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 12px #ffffff, 0 0 20px rgba(255, 196, 0, 0.8); }
    100% { opacity: 0.3; transform: scale(0.85); }
}

.cosmic-meteor {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 196, 0, 0.9), rgba(0, 229, 255, 0.5), transparent);
    border-radius: 50%;
    transform: rotate(-38deg);
    opacity: 0;
    pointer-events: none;
    animation: cosmicMeteorShower var(--meteor-dur, 8s) linear infinite;
    animation-delay: var(--meteor-delay, 0s);
}

@keyframes cosmicMeteorShower {
    0% { transform: translateX(0) translateY(0) rotate(-38deg); opacity: 0; }
    4% { opacity: 1; filter: drop-shadow(0 0 10px #ffc400); }
    12% { transform: translateX(-500px) translateY(350px) rotate(-38deg); opacity: 0; }
    100% { transform: translateX(-500px) translateY(350px) rotate(-38deg); opacity: 0; }
}

/* ============================================
   2. MAIN PAGE CONTAINER
   ============================================ */
#contact-main-layout {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding-top: 105px;
    padding-bottom: 60px;
    max-width: 1320px;
    margin: 0 auto;
    width: 94%;
}

/* Hero Header */
.contact-hero-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 196, 0, 0.15);
    border: 1px solid rgba(255, 196, 0, 0.45);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(255, 196, 0, 0.25);
}

.contact-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-hero-title span {
    background: linear-gradient(135deg, #fffbc8 0%, #ffc400 50%, #ff9100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 196, 0, 0.5);
}

.contact-hero-sub {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    color: var(--text-sub);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   3. TWO-COLUMN HIGH-IMPACT GRID
   ============================================ */
.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: start;
}

/* LEFT COLUMN: 3D LEVITATING DELHI HQ SHOWCASE CARD */
.office-3d-card {
    background: var(--glass-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0,0,0,0.85), 0 0 40px rgba(255, 196, 0, 0.15);
    transition: all 0.4s ease;
}

.office-3d-card:hover {
    box-shadow: 0 35px 80px rgba(0,0,0,0.9), 0 0 50px rgba(255, 196, 0, 0.3);
    border-color: rgba(255, 196, 0, 0.6);
}

.office-media-box {
    position: relative;
    height: 210px;
    width: 100%;
    overflow: hidden;
}

.office-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.office-3d-card:hover .office-media-img {
    transform: scale(1.08);
}

.office-live-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(3, 9, 16, 0.90);
    backdrop-filter: blur(12px);
    border: 1px solid var(--green-active);
    color: var(--green-active);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-active);
    box-shadow: 0 0 8px var(--green-active);
    animation: livePulse 1.5s ease-out infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.office-content-box {
    padding: 24px;
}

.office-header-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-header-sub {
    font-size: 0.76rem;
    color: var(--text-sub);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

/* Info Rows */
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.info-icon-glow {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.2), rgba(255, 196, 0, 0.05));
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 196, 0, 0.2);
}

.info-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
}

.info-val {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

.direct-buttons-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.glow-action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-call-gold {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.25), rgba(255, 196, 0, 0.08));
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 196, 0, 0.2);
}

.btn-call-gold:hover {
    background: var(--gold-primary);
    color: #02060c;
    box-shadow: 0 0 30px rgba(255, 196, 0, 0.6);
    transform: translateY(-2px);
}

.btn-wa-green {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-wa-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* RIGHT COLUMN: VISUAL INTERACTIVE TRAVEL FORM CARD */
.inquiry-card-box {
    background: var(--glass-card);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    padding: clamp(22px, 4vw, 32px);
    box-shadow: 0 25px 65px rgba(0,0,0,0.85);
}

.form-title-main {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
}

.form-sub-main {
    font-size: 0.76rem;
    color: var(--text-sub);
    margin-bottom: 22px;
}

/* Visual Travel Service Cards Selector Grid */
.visual-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.v-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v-service-card i {
    font-size: 1.2rem;
    color: var(--gold-primary);
    width: 24px;
    text-align: center;
}

.v-service-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
}

.v-service-sub {
    font-size: 0.6rem;
    color: var(--text-sub);
}

.v-service-card:hover, .v-service-card.active {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.22), rgba(255, 196, 0, 0.06));
    border-color: var(--gold-primary);
    box-shadow: 0 0 22px rgba(255, 196, 0, 0.3);
    transform: translateY(-2px);
}

.v-service-card.active i {
    filter: drop-shadow(0 0 8px var(--gold-primary));
}

/* Form Inputs Grid */
.form-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.f-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.f-group.full {
    grid-column: 1 / -1;
}

.f-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.f-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 6px 14px;
    height: 46px;
    transition: all 0.3s;
}

.f-wrapper:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 18px rgba(255, 196, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.f-wrapper i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.f-input, .f-textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    outline: none;
}

.f-textarea {
    resize: none;
    height: 85px;
    padding-top: 8px;
}

.submit-inquiry-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd000 0%, #ff9a00 50%, #e68000 100%);
    color: #02060c;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 196, 0, 0.45);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 196, 0, 0.65);
}

/* Home Button */
.home-glow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.18), rgba(255, 196, 0, 0.06));
    border: 1.5px solid #ffc400;
    color: #ffc400;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 18px rgba(255, 196, 0, 0.25);
}

.home-glow-btn:hover {
    background: #ffc400;
    color: #02060c;
    box-shadow: 0 0 28px rgba(255, 196, 0, 0.6);
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    #contact-main-layout {
        padding-top: 95px;
        width: 92%;
    }

    .contact-grid-container {
        grid-template-columns: 1fr;
    }

    .visual-service-grid {
        grid-template-columns: 1fr 1fr;
    }

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