

/* Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
    /* Yeh container ko horizontally center kar dega */
    margin: 2rem auto; 
    /* Agar screen badi hai toh cards ko center align rakhega */
    justify-content: center; 
    align-items: flex-start;

    
}

.card {
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    min-width: 320px;
    /* Dono cards par ek badiya aur clear shadow lagane ke liye */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); 
    transition: box-shadow 0.3s ease; /* Smooth effect ke liye */
}

/* Optional: Agar aap chahte hain ki hover karne par shadow aur dark ho jaye */
.card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Typography */
h2 {
    font-family: 'Georgia', serif;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

.header-center {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Form Styles */
.form-rowa {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-groupa {
    flex: 1;
    margin-bottom: 1rem;
}

.form-rowa .form-groupa {
    margin-bottom: 0;
}

label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #334155 !important;
}

input, select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    /* Yahan fallback color (#cbd5e1) add kiya gaya hai taaki bina click kiye bhi border dikhe */
    border: 1px solid var(--border-color, #cbd5e1);
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark, #333);
    background-color: #fff;
}

input:focus, select:focus {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.3);
}

/* Container ka class name theek kiya gaya (button-groupa) */
.button-groupa {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center; /* Buttons ko center me laane ke liye */
    width: 100%;
}

.btna {
    flex: 1; /* Dono buttons ko barabar jagah (50-50) lene ke liye */
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    transition: opacity 0.2s;
    text-align: center; /* Text ko center karne ke liye */
}

.btna:hover {
    opacity: 0.9;
}

/* Class name theek kiya gaya (.btn-whatsappa) */
.btn-whatsappa {
    /* Agar var() kaam nahi karega toh #25D366 apply ho jayega */
    background-color: var(--whatsapp-green, #25D366); 
    color: white;
}

.btn-emaila {
    /* Agar var() kaam nahi karega toh #0099ff apply ho jayega */
    background-color: white;
    color: var(--primary-blue, #0099ff);
    border: 1px solid var(--primary-blue, #0099ff);
}

/* Custom Tour Section Container */
.custom-tour-section {
    padding: 4rem 1rem;
    font-family: 'Arial', sans-serif;
    background-color: #f8fafc; /* Page ka light background */
}

/* Main Header Text */
.custom-tour-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.custom-tour-header h2 {
    font-family: 'Georgia', serif;
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.custom-tour-header p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Wrapper to center the form card and set its max width */
.custom-form-wrapper {
    max-width: 700px; /* Form ko thoda narrow aur center me rakhne ke liye */
    margin: 0 auto;
}

/* Ensure the card takes full width of its wrapper */
.custom-form-wrapper .card {
    width: 100%;
    box-sizing: border-box;
}



.call-text {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    color: var(--text-light);
}

.call-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
}

/* Right Column: Tags & Lists */
.location-group {
    margin-bottom: 1.5rem;
}

.location-group h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #f1f5f9;
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #475569;
    font-weight: 500;
}

/* Included Features Box */
.included-box {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.2rem;
    margin-top: 2rem;
}

.included-box h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.included-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.included-box li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.included-box li::before {
    content: "✓";
    color: #94a3b8;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Features Section Container */
.features-section {
    padding: 4rem 1rem;
    max-width: 1100px; 
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: bold;
}

/* Grid Layout for Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    gap: 1.5rem;
}

/* Individual Feature Card */
.feature-card {
    background-color: #f8fafc; /* Light grayish-blue background */
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Orange Icon Box */
.feature-icon {
    background-color: #f97316; /* Bright Orange */
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3); /* Orange soft shadow */
}

/* Ensure SVGs inherit color and are properly sized */
.feature-icon svg {
    color: white;
}

/* Typography inside card */
.feature-content h3 {
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 600;
}

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

/* Responsive Design (Mobile & Tablet) */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr; /* Mobile: 1 column */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-rowa, .button-group {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive adjustment for Vehicle Type half-width row */
@media (max-width: 768px) {
    .form-rowa {
        flex-direction: column;
        gap: 1rem;
    }
    .form-rowa > .form-groupa[style] {
        flex: 1 1 auto !important; /* Mobile par full width karne ke liye */
    }
}