.elementor-3612 .elementor-element.elementor-element-3e5de4d{--display:flex;}.elementor-3612 .elementor-element.elementor-element-84e6e67{width:100%;max-width:100%;}.elementor-3612 .elementor-element.elementor-element-84e6e67 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-84e6e67 *//* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #070B13;
    color: #FFFFFF;
    min-height: 100vh;
}

/* Contact Section with Background Image Layout */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 45vh; /* इमेज के अनुसार हाइट को सेट किया गया है */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    text-align: center;
    /* इमेज के अनुसार डार्क शाम/बादलों वाला बैकग्राउंड */
    background-image: url('https://unsplash.com');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* डार्क ओवरले (ताकि इमेज के ऊपर टेक्स्ट का रंग बिल्कुल इमेज जैसा गहरा और साफ़ दिखे) */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(7, 11, 19, 0.9) 100%);
    z-index: 1;
}

/* Content Wrapper */
.content-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    width: 100%;
}

/* Subtitle (Green Style Match) */
.green-sub-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #34D399; /* इमेज के अनुसार सटीक हल्का हरा रंग */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

/* Typography Headings */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; /* बड़ी स्क्रीन के लिए परफेक्ट बोल्ड और बड़ी फॉन्ट साइज */
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #9CA3AF; /* इमेज के अनुसार म्यूटेड सिल्वर/ग्रे टेक्स्ट रंग */
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Responsive Adjustments (Mobile Friendly)
   ========================================================================== */

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 16px;
        min-height: auto;
    }
    
    .section-heading {
        font-size: 2.4rem; /* मोबाइल पर टेक्स्ट को टूटने से बचाने के लिए ऑटो-एडजस्ट */
        margin-bottom: 16px;
    }
    
    .section-desc {
        font-size: 1.05rem;
        line-height: 1.5;
    }
}
/* Base Style Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #070B13;
    color: #FFFFFF;
}

/* Section Main Layout with Background Image Overlay */
.inquiry-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://unsplash.com'); /* बैकग्राउंड इमेज */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Image Transparent Dark Overlay */
.inquiry-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 17, 30, 0.78);
    z-index: 1;
}

/* Core Container Split Grid */
.inquiry-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* LEFT SIDE: Contact Columns */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Interactive Info Cards (Links) */
.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none; /* लिंक अंडरलाइन हटाए */
    color: inherit;
    transition: all 0.3s ease;
}

a.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.info-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
}

.info-icon-box svg {
    width: 20px;
    height: 20px;
}

.icon-green { color: #34D399; }
.icon-blue { color: #60A5FA; }
.icon-orange { color: #FB923C; }

.info-text-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: #FFFFFF;
}

/* Why Travel Card Styling */
.why-us-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 24px;
    border-radius: 12px;
    margin-top: 10px;
}

.why-us-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #FFFFFF;
}

.why-us-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-us-list li {
    font-size: 0.95rem;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: #34D399;
    font-weight: bold;
}

/* RIGHT SIDE: Form Panel Layout */
.form-column {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #E5E7EB;
}

/* Inputs Architecture */
.input-wrapper, .select-wrapper {
    position: relative;
    width: 100%;
}

.field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #6B7280;
    pointer-events: none;
}

.textarea-wrapper .field-icon {
    top: 24px;
}

.input-wrapper input, 
.input-wrapper textarea,
.select-wrapper select {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: #090F1C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.select-wrapper select {
    padding-left: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org' fill='none' stroke='%236B7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.input-wrapper input:focus, 
.input-wrapper textarea:focus,
.select-wrapper select:focus {
    border-color: #5BB08C;
}

/* Beautiful Submit Button Custom Color Match */
.submit-inquiry-btn {
    background-color: #5BB08C; /* Exact Mint Green Tone */
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.submit-inquiry-btn:hover {
    background-color: #4FA37F;
}

.send-icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   POPUP MODAL COMPONENT (JavaScript Active State)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.modal-success-icon {
    width: 50px;
    height: 50px;
    background: rgba(91, 176, 140, 0.2);
    color: #5BB08C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 16px auto;
}

.modal-box h2 { margin-bottom: 10px; font-size: 1.5rem; }
.modal-box p { color: #9CA3AF; font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; }

.close-modal-btn {
    background: #5BB08C;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

/* ==========================================================================
   Responsive Adjustments (Mobile Friendly Layouts)
   ========================================================================== */

/* Tablets Screens */
@media (max-width: 968px) {
    .inquiry-container {
        grid-template-columns: 1fr; /* Stack Left info and Form columns */
        gap: 30px;
    }
}

/* Mobile Screens */
@media (max-width: 600px) {
    .form-column {
        padding: 24px 16px; /* Decrease padding on small screens */
    }
    .form-row {
        grid-template-columns: 1fr; /* Stack fields inside the form row */
    }
}/* End custom CSS */