/* ==========================================================================
   Green Tour & Travels - Premium Contact & 24/7 Support Stylesheet
   Fully Responsive & Modernized
   ========================================================================== */

/* Root Variables */
:root {
    --contact-primary: #8B1A5E;
    --contact-primary-dark: #6e1249;
    --contact-primary-light: #f8e8f2;
    --contact-primary-glow: rgba(139, 26, 94, 0.18);
    --contact-dark: #1a2b3d;
    --contact-gray-dark: #334155;
    --contact-gray-muted: #64748b;
    --contact-gray-light: #f8fafc;
    --contact-border: #e2e8f0;
    --contact-radius-lg: 20px;
    --contact-radius-md: 14px;
    --contact-radius-sm: 10px;
    --contact-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.contact-hero-wrap {
    position: relative;
    padding: 70px 0 110px;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(
            135deg,
            rgba(38, 6, 27, 0.90) 0%,
            rgba(68, 12, 48, 0.88) 45%,
            rgba(110, 18, 73, 0.84) 100%
        ),
        url('/assets/frontend/images/flight.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.contact-hero-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 450px at 80% 40%, rgba(139, 26, 94, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 500px 350px at 15% 85%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

/* Breadcrumb */
.contact-breadcrumb {
	display: inline-flex !important;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
	padding: 6px 16px !important;
}

.contact-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.contact-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

/* Hero Typography */
.contact-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fde047;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    margin-bottom: 16px;
}

.contact-hero-h1 {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.contact-hero-h1 span {
    color: #f9a8d4;
    background: linear-gradient(120deg, #fbcfe8, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 24px;
}

.contact-quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    text-decoration: none;
}

.contact-quick-pill:hover {
    background: rgba(139, 26, 94, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-quick-pill .pill-icon {
    color: #fbbf24;
}

/* --------------------------------------------------------------------------
   Floating Stats Strip
   -------------------------------------------------------------------------- */
.contact-stats-strip-container {
    position: relative;
    z-index: 10;
    margin-top: -46px;
    padding: 0 15px;
}

.contact-stats-strip {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 24px;
    box-shadow: var(--contact-shadow);
    border: 1px solid var(--contact-border);
    max-width: 1050px;
    margin: 0 auto;
}

.contact-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    transition: transform 0.2s;
}

.contact-stat-item:hover {
    transform: translateY(-2px);
}

.contact-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-stat-label {
    font-size: 11px;
    color: var(--contact-gray-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-stat-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--contact-dark);
}

/* Stat borders on desktop */
@media (min-width: 768px) {
    .stat-col-bordered {
        border-left: 1px solid var(--contact-border);
    }
}

@media (max-width: 767px) {
    .contact-stats-strip-container {
        margin-top: -30px;
    }
    .contact-stats-strip {
        padding: 10px 14px;
    }
    .contact-stat-item {
        padding: 10px 6px;
    }
    .contact-stat-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .contact-stat-val {
        font-size: 14px;
    }
}

/* --------------------------------------------------------------------------
   Main Content Layout
   -------------------------------------------------------------------------- */
.contact-main-section {
    padding: 60px 0 85px;
    background: #f8fafc;
}

/* Sidebar Info Cards */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-card {
    background: #fff;
    border-radius: var(--contact-radius-lg);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid var(--contact-border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.contact-info-card:hover {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.contact-info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #f1f5f9;
}

.contact-info-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #8B1A5E, #6e1249);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 26, 94, 0.25);
}

.contact-info-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--contact-dark);
    margin: 0;
}

/* Contact Rows */
.c-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.2s;
    margin-bottom: 8px;
}

.c-row:hover {
    background: #f8fafc;
}

.c-row:last-of-type {
    margin-bottom: 0;
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.c-lbl {
    font-size: 11px;
    color: var(--contact-gray-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.c-val {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--contact-dark);
    text-decoration: none;
    display: block;
    word-break: break-word;
    transition: color 0.2s;
}

.c-val:hover {
    color: var(--contact-primary);
}

.avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
    margin-top: 4px;
}

.avail-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 13px;
    background: linear-gradient(135deg, #25d366, #16a34a);
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
    transition: all 0.25s ease;
    border: none;
    width: 100%;
    margin-top: 14px;
}

.wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Contact Form Card
   -------------------------------------------------------------------------- */
.cf-card {
    background: #fff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--contact-border);
}

.cf-eye {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--contact-primary);
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cf-title {
    font-size: clamp(22px, 3.2vw, 28px);
    font-weight: 800;
    color: var(--contact-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.cf-sub2 {
    font-size: 14px;
    color: var(--contact-gray-muted);
    line-height: 1.5;
}

.cf-lbl {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--contact-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}

/* Modern Input Groups with Icons */
.cf-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cf-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
    transition: color 0.2s;
    z-index: 2;
}

.cf-inp {
    width: 100%;
    height: 50px;
    border: 1.5px solid var(--contact-border);
    border-radius: 12px;
    padding: 0 16px 0 44px;
    font-size: 14.5px;
    color: var(--contact-dark);
    background: #fdfdfe;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
}

.cf-inp:focus {
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 4px var(--contact-primary-glow);
    background: #fff;
}

.cf-inp:focus + .cf-input-icon,
.cf-input-wrapper:focus-within .cf-input-icon {
    color: var(--contact-primary);
}

.cf-ta-wrapper {
    align-items: flex-start;
}

.cf-ta-wrapper .cf-input-icon {
    top: 20px;
    transform: none;
}

.cf-ta {
    height: auto !important;
    padding: 14px 16px 14px 44px !important;
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Service Chips */
.schips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.schip-in {
    display: none;
}

.schip-lbl {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1.5px solid var(--contact-border);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--contact-gray-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8fafc;
    user-select: none;
}

.schip-lbl:hover {
    border-color: #d4a0c0;
    color: var(--contact-primary);
    background: #fdf4f9;
}

.schip-in:checked + .schip-lbl {
    border-color: var(--contact-primary);
    background: var(--contact-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 26, 94, 0.25);
}

/* Submit Button & Assurance */
.cf-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 38px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8B1A5E, #6e1249);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(139, 26, 94, 0.35);
    transition: all 0.25s ease;
    font-family: inherit;
}

.cf-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(139, 26, 94, 0.45);
    color: #fff;
}

.cf-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.resp-g {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--contact-gray-muted);
}

.resp-g i {
    color: #22c55e;
}

/* --------------------------------------------------------------------------
   Captcha Verification Box Responsive Design
   -------------------------------------------------------------------------- */
.contact-captcha-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-captcha-box:focus-within {
    border-color: #cbd5e1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.captcha-img-holder {
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.captcha-img-holder img {
    height: 46px;
    width: 160px;
    display: block;
    cursor: pointer;
    user-select: none;
}

.captcha-refresh-btn {
    height: 46px;
    width: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #cbd5e1;
    color: #475569;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.captcha-refresh-btn:hover {
    background: #f1f5f9;
    color: var(--contact-primary);
    border-color: #94a3b8;
    transform: scale(1.04);
}

.captcha-input-field {
    height: 46px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.captcha-input-field:focus {
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 3px var(--contact-primary-glow);
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-sec {
    padding: 75px 0 85px;
    background: #fff;
}

.faq-eye {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f8e8f2;
    color: #8b1a5e;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.faq-ttl {
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
    color: #1a2b3d;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.faq-sub {
    font-size: 15px;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto 48px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #f8fafc;
    border: 1.5px solid #e9eef5;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.faq-item.faq-open {
    border-color: #d4a0c0;
    box-shadow: 0 6px 24px rgba(139, 26, 94, 0.08);
    background: #fff;
}

.faq-trig {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
}

.faq-tico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
    background: #f8e8f2;
    color: #8b1a5e;
}

.faq-item.faq-open .faq-tico {
    background: #8b1a5e;
    color: #fff;
}

.faq-ttext {
    flex: 1;
    font-size: 15.5px;
    font-weight: 700;
    color: #1a2b3d;
    line-height: 1.45;
}

.faq-chev {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e9eef5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #64748b;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.25s, color 0.25s;
}

.faq-item.faq-open .faq-chev {
    transform: rotate(180deg);
    background: #f8e8f2;
    color: #8b1a5e;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-in {
    padding: 0 24px 22px calc(22px + 38px + 16px);
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-wrap {
    background: linear-gradient(135deg, #26061b 0%, #460d32 50%, #8B1A5E 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-ttl {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn-c {
    background: #fff;
    color: #8b1a5e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-c:hover {
    color: #6e1249;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.26);
}

.cta-btn-w {
    background: linear-gradient(135deg, #25d366, #16a34a);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.32);
}

.cta-btn-w:hover {
    color: #fff;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.42);
}

/* --------------------------------------------------------------------------
   Mobile Floating Action Bar (Sticky at bottom on phones)
   -------------------------------------------------------------------------- */
.contact-mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #e2e8f0;
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.contact-mobile-sticky-bar .mobile-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-btn-call {
    background: #8B1A5E;
    color: #fff;
}

.mobile-btn-wa {
    background: #25d366;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Media Queries & Responsiveness
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .contact-hero-wrap {
        padding: 50px 0 90px;
        min-height: auto;
    }
    .contact-main-section {
        padding: 45px 0 65px;
    }
    .cf-card {
        padding: 30px 24px;
    }
    .contact-info-card {
        padding: 24px 20px;
    }
}

@media (max-width: 767px) {
    .cf-card {
        padding: 24px 16px;
        border-radius: 18px;
    }
    .cf-inp {
        height: 46px;
        font-size: 14px;
    }
    .cf-ta {
        min-height: 110px;
    }
    .faq-body-in {
        padding-left: 20px;
    }
    .faq-trig {
        padding: 16px;
    }
    .cta-wrap {
        padding: 45px 0;
    }
    .cf-submit {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .contact-captcha-inner {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .captcha-img-holder {
        width: 100%;
    }
    .captcha-img-holder img {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
    .captcha-refresh-btn {
        width: 100%;
    }
}
