
:root {
    --primary-blue: #2c3e50;
    --primary-teal: #1a6b84;
    --secondary-orange: #e67e22;
    --accent-orange: #d35400;
    --light-gray: #ecf0f1;
    --dark-gray: #34495e;
    --medium-gray: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--light-gray);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 40px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-left, .nav-center, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 10px;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
    gap: 10px;
}

/* Adjust the logo container */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 100px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 70px;
}

/* Ensure tabs are aligned */
.tab {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    white-space: nowrap;
}

.tab:hover {
    color: var(--secondary-orange);
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: width 0.3s ease;
}

.tab:hover::after {
    width: 100%;
}

.contact-tab {
    background-color: var(--primary-teal);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-tab:hover {
    background-color: var(--accent-orange);
    color: white;
}

.contact-tab::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-teal);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.show {
    display: flex;
}

.mobile-tab {
    padding: 12px 0;
    color: var(--dark-gray);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.mobile-tab:hover {
    color: var(--secondary-orange);
    padding-left: 10px;
}

/* For mobile menu specifically */
@media (max-width: 767px) {
    .mobile-tab.contact-tab {
        background-color: var(--secondary-orange);
        color: var(--white);
        margin-top: 10px;
        border-radius: 4px;
        text-align: center;
    }

    .mobile-tab.contact-tab:hover {
        background-color: var(--accent-orange);
        color: var(--white);
    }
}

/* ===== Responsive Navigation ===== */
@media (max-width: 1023px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .navbar.scrolled .logo img {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .navbar.scrolled .logo img {
        height: 45px;
    }
    
    .mobile-menu {
        top: 70px;
    }
}

/* ===== Page Content ===== */
/* Reset and base styles */
.body-enquirepage {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(240, 239, 239, 0.3)), 
                url('Images/Nuwaraeliya\ 5.jpg');
    color: var(--dark-gray);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

/* BACKGROUND VIDEO */
.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
}

#myVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 100px;
}

@media (max-width: 768px) {
    .video-background {
        background: url('Images/Nuwaraeliya\ 5.jpg') no-repeat center center/cover;
    }
    #myVideo {
        display: none;
    }
}

/* ENQUIRE hero - UPDATED FOR MOBILE */
.enquire-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('Images/Nuwaraeliya\ 5.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px; /* To account for fixed navbar */
    padding: 0 20px;
}

.enquirehero-content {
    max-width: 1200px;
    width: 100%;
}

.enquirehero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.enquirehero-content h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Enquire hero Paragraph Margins */
.enquirehero-content p {
    margin: 0.8rem auto;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--white);
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
        
.enquirehero p:first-child {
    margin-bottom: 0.5rem;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: bold;
}

/* Mobile Adjustment - IMPROVED */
@media (max-width: 767px) {
    .enquire-hero {
        padding-top: 70px;
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('Images/Nuwaraeliya\ 4.jpg') no-repeat center center/cover;
        background-attachment: fixed;
        height: auto;
        min-height: 60vh;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 2rem;
    }
    
    .enquirehero-content {
        margin: 2rem auto;
        padding: 0 20px;
    }
    
    /* Improved font sizes for mobile */
    .enquirehero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .enquirehero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .enquirehero-content p {
        font-size: 1rem;
        margin: 0.8rem auto;
    }
    
    .enquirehero p:first-child {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
}

/* ===== Form Styles ===== */
/* Form container */
.form-container {
    background-color: rgba(255, 255, 255, 0.70);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Form layout - more organized sections */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    width: 100%;
}

/* Form sections with clear visual separation */
.form-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.form-section-header {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-teal);
    display: inline-block;
}

/* Form group styling - more organized layout */
.form-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin-bottom: 15px;
}

/* Label styles - more consistent */
.enquiry-form label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
    min-width: 120px;
    margin-right: 15px;
}

/* Input styles - more consistent sizing */
.enquiry-form input,
.enquiry-form select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s;
    flex: 1;
    min-width: 200px;
    height: 48px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary-teal);
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 107, 132, 0.2);
}

/* Textarea styling */
.enquiry-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.3s;
    width: 100%;
    min-height: 120px;
    resize: vertical;
    margin-top: 5px;
}

/* Name fields group - better organization */
.name-fields-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.name-fields-group .form-group {
    flex: 1;
    min-width: 200px;
}

/* Age group styles - better grid layout */
.age-group-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.age-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.age-group-header {
    grid-column: span 2;
    font-weight: 600;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.age-group label {
    font-weight: normal;
    font-size: 0.9rem;
    white-space: nowrap;
    color: var(--dark-gray);
}

.age-group select, 
.age-group input {
    width: 100%;
    height: 40px;
}





















/* ===== Checkbox Group ===== */
.form-group.checkbox-group {
    
    width: 100%;
    margin-bottom: 15px;
}

/* For the specific flexible dates checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    accent-color: var(--primary-teal);
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    user-select: none;
    margin: 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .form-group.checkbox-group {
        margin-left: 0px; /* Matches your form label width */
        width: calc(100% - 135px);
    }
    
    .checkbox-group {
        gap: 8px;
    }
}

/* Tablet (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .form-group.checkbox-group {
        margin-left: 0px;
        width: calc(100% - 120px);
    }
    
    .checkbox-group label {
        white-space: normal;
    }
}

/* Mobile (767px and below) - keeps your existing good mobile styles */
@media (max-width: 767px) {
    .form-group.checkbox-group {
        margin-left: 0;
        width: 100%;
    }
    
    .checkbox-group {
        gap: 15px;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    
    .checkbox-group label {
        font-size: 0.95rem;
        white-space: normal;
    }
}




































/* Date fields group */
.date-fields-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.date-fields-group .form-group {
    flex: 1;
    min-width: 200px;
}

/* Button styles - more prominent */
.submit-btn {
    background-color: var(--primary-teal);
    color: var(--white);
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    display: block;
}

.submit-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Error message styling */
.error-message {
    color: #e74c3c;
    font-size: 0.85em;
    margin-top: 5px;
    display: none;
    width: 100%;
    padding-left: 135px;
}

/* Required field indicator */
.required-field::after {
    content: " *";
    color: #e74c3c;
}

/* Success message */
.success-message {
    background-color: #2ecc71;
    color: var(--white);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
    font-size: 1rem;
}

/* Responsive adjustments for form */
@media (max-width: 767px) {
    .form-container {
        padding: 20px 15px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .enquiry-form label {
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        width: 100%;
        min-width: 100%;
    }
    
    .name-fields-group .form-group,
    .date-fields-group .form-group {
        min-width: 100%;
    }
    
    .age-group-container {
        grid-template-columns: 1fr;
    }
    
    .error-message {
        padding-left: 0;
    }
    
    .submit-btn {
        max-width: 100%;
    }
}

/* ===== Footer ===== */
.simple-footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.simple-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-orange), var(--primary-teal));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.footer-center {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-orange);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--secondary-orange);
    transition: all 0.3s;
}

.footer-links a:hover i {
    transform: rotate(360deg);
}

.footer-logo {
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    margin-right: 15px;
    color: var(--secondary-orange);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    margin: 0 0 5px;
    color: var(--white);
    font-size: 1rem;
}

.contact-item p, .contact-item a {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-orange);
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-media a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-orange), var(--accent-orange));
    opacity: 0;
    transition: all 0.3s;
}

.social-media a:hover::after {
    opacity: 1;
}

.social-media a i {
    position: relative;
    z-index: 1;
}

.social-media a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin: 0 0 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
    padding: 0 5px;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-orange);
    transition: width 0.3s;
}

.footer-legal a:hover {
    color: var(--secondary-orange);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Footer decorations */
.footer-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.footer-decoration.shape-1 {
    top: 50px;
    left: 5%;
    font-size: 10rem;
    color: var(--secondary-orange);
}

.footer-decoration.shape-2 {
    bottom: 100px;
    right: 10%;
    font-size: 8rem;
    color: var(--primary-teal);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        gap: 30px;
    }
    
     .footer-center, .footer-contact {
        flex: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .footer-links {
        flex: 1;
        max-width: 100%;
        text-align: left;
        padding: 0 15px;
        margin-left: 1000px;
    }






    .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .simple-footer {
        padding-top: 60px;
    }
    
    .footer-links h3, .footer-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal a {
        padding: 5px 0;
    }
    
    .footer-legal a::after {
        bottom: 0;
    }
     .footer-links, .footer-center, .footer-contact {
        min-width: 100%;
        text-align: center;
    }
.footer-legal {
        flex-direction: column;
        gap: 5px;
    }


}













/* Travelers Information Section */
.travelers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.travelers-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.age-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.age-category {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.age-category label {
    font-weight: normal;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.age-category select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
}

/* Mobile View */
/* ===== Travelers Information Section - Updated ===== */
.travelers-container {
    width: 100%;
}

.travelers-section {
    margin-bottom: 25px;
}

.age-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.age-category {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.age-category label {
    font-weight: normal;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.age-category select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
}

/* Travelers Information Section */
.travelers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.traveler-group {
    background: #f9f9f9;
    border: 3px solid #eee;
    border-radius: 20px;
    padding: 8px;
}

.traveler-group h4 {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.age-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.age-row label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    flex: 1;
}

.age-row select {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
}

/* Mobile View */
@media (max-width: 767px) {
    .travelers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .traveler-group {
        padding: 15px;
    }
    
    .age-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .age-row select {
        width: 100%;
    }
}

/* Error State */
.traveler-group.error {
    border-color: #e74c3c;
    background-color: #fff9f9;
}

#travelerError {
    margin-top: 15px;
    padding-left: 0;
    text-align: center;
}

/* Error state for traveler groups */
.traveler-group.error {
    border-color: #e74c3c;
    background-color: #fff9f9;
}

.traveler-group.error h4 .required-field {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Error message styling */
#travelerError {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
    width: 100%;
}

/* Add these media queries at the end of your CSS */

/* Add these media queries to your CSS */

/* Tablet mode (typically 768px - 1023px) */
@media (max-width: 1023px) {
    
    /* Tablet and mobile styles */
    .contact-tab {
        background-color: teal; /* New highlight color (orange) */
        color: #ffffff; /* White text */
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .contact-tab:hover {
        background-color: #d35400; /* Darker orange on hover */
        color: #ffffff;
    }}

    /* For mobile menu specifically */
@media (max-width: 767px) {
    .mobile-tab.contact-tab {
        background-color: teal; /* Orange background */
        color: #ffffff; /* White text */
        margin-top: 10px;
        border-radius: 4px;
        text-align: center;
    }

    .mobile-tab.contact-tab:hover {
        background-color: #d35400; /* Darker orange on hover */
        color: #ffffff;
    }
}