
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        body {
            line-height: 1.5;
            color: #333;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            font-size: 14px; /* Reduced base font size */
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(0, 0, 0, 0.8);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0; /* Reduced padding */
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 20px; /* Reduced font size */
            font-weight: 700;
            color: #2c3e50;
            text-decoration: none;
        }
        
        .logo img {
            height: 35px; /* Reduced logo size */
            margin-right: 8px; /* Reduced margin */
        }
        
        .logo span {
            color: #3498db;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        nav ul li {
            margin-left: 15px; /* Reduced margin */
        }
        
        nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 14px; /* Reduced font size */
        }
        
        nav ul li a:hover, nav ul li a.active {
            color: #3498db;
        }
        
        .auth-buttons {
            display: flex;
            gap: 8px; /* Reduced gap */
        }
        
        .auth-btn {
            padding: 6px 12px; /* Reduced padding */
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 13px; /* Reduced font size */
        }
        
        .signin-btn {
            background: transparent;
            color: white;
            border: 1px solid white;
        }
        
        .signin-btn:hover {
            background: white;
            color: #2c3e50;
        }
        
        .signup-btn {
            background: #3498db;
            color: white;
            border: 1px solid #3498db;
        }
        
        .signup-btn:hover {
            background: #2980b9;
            border-color: #2980b9;
        }
        
        /* Page Content */
        .page-content {
            flex: 1;
        }
        
        .page-hero {
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1528543606781-2f6e6857f318?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjF8fHRyYXZlbHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=800');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 0; /* Reduced padding */
            text-align: center;
            margin-bottom: 30px; /* Reduced margin */
        }
        
        .page-hero h1 {
            font-size: 2rem; /* Reduced font size */
            margin-bottom: 10px; /* Reduced margin */
        }
        
        .page-hero p {
            font-size: 1rem; /* Reduced font size */
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Home Page Styles */
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://plus.unsplash.com/premium_photo-1673240367277-e1d394465b56?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1469');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 175px; /* Reduced padding */
            text-align: center;
        }
        
        .hero h1 {
            font-size: 1.8rem; /* Reduced font size */
            margin-bottom: 10px; /* Reduced margin */
        }
        
        .hero p {
            font-size: 1rem; /* Reduced font size */
            max-width: 700px;
            margin: 0 auto 20px; /* Reduced margin */
        }
        
        .booking-form {
            background: white;
            border-radius: 10px;
            padding: 8px; /* Reduced padding */
            max-width: 1000px;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: #333;
        }
        
        .form-row {
            display: flex;
            flex-wrap: nowrap;
            gap: 8px; /* Reduced gap */
            margin-bottom: 0;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-group.searchloc {
            flex: 4; /* Increased flex value to make it wider */
        }
        
        .form-group.date-group {
            flex: 2;
        }
        
        .form-group.guest-group {
            flex: 2;
        }
        
        .form-group.btn-group {
            flex: 2;
            display: flex;
            align-items: center;
        }
        
        .form-control {
            width: 100%;
            padding: 8px 10px; /* Reduced padding */
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 12px; /* Reduced font size */
            cursor: pointer;
        }
        
        /* Form Label Enhancement */
        .form-group label {
            font-size: 13px !important; /* Increased font size */
            margin-bottom: 6px !important;
            display: block;
            color: #555;
            font-weight: 600;
        }
        
        /* Location Dropdown Styles */
        .location-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            display: none;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .location-dropdown.active {
            display: block;
        }
        
        .location-option {
            padding: 8px 10px; /* Reduced padding */
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: background-color 0.2s;
            font-size: 12px; /* Reduced font size */
            justify-content: space-between;
        }
        
        .location-option:hover {
            background-color: #f1f8ff;
        }
        
        .location-option .location-left {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .location-option i {
            margin-right: 8px; /* Reduced margin */
            color: #3498db;
            width: 16px; /* Reduced width */
            text-align: center;
            font-size: 12px; /* Reduced font size */
        }
        
        .location-option .location-name {
            font-weight: 500;
        }
        
        .location-option .location-type {
            font-size: 10px; /* Reduced font size */
            color: #7f8c8d;
            margin-left: 4px; /* Reduced margin */
        }
        
        /* Guest Selector Styles */
        .guest-selector-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 300px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px; /* Reduced padding */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            display: none;
        }
        
        .guest-selector-dropdown.active {
            display: block;
        }
        
        .guest-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px; /* Reduced margin */
        }
        
        .guest-option:last-child {
            margin-bottom: 0;
        }
        
        .guest-label {
            font-weight: 500;
            font-size: 12px; /* Reduced font size */
        }
        
        .guest-counter {
            display: flex;
            align-items: center;
            gap: 8px; /* Reduced gap */
        }
        
        .counter-btn {
            width: 25px; /* Reduced size */
            height: 25px; /* Reduced size */
            border: 1px solid #3498db;
            background: white;
            color: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 12px; /* Reduced font size */
        }
        
        .counter-btn:disabled {
            border-color: #ddd;
            color: #ddd;
            cursor: not-allowed;
        }
        
        .counter-value {
            min-width: 25px; /* Reduced size */
            text-align: center;
            font-weight: 500;
            font-size: 12px; /* Reduced font size */
        }
        
        .child-age-container {
            margin-top: 8px; /* Reduced margin */
            padding-top: 8px; /* Reduced padding */
            border-top: 1px solid #eee;
            display: none;
        }
        
        .child-age-container.active {
            display: block;
        }
        
        .child-age-inputs {
            display: flex;
            gap: 4px; /* Reduced gap */
            flex-wrap: wrap;
        }
        
        .child-age-inputs .form-group {
            flex: 1;
            min-width: 70px; /* Reduced min-width */
        }
        
        .btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 8px 15px; /* Reduced padding */
            border-radius: 5px;
            font-size: 12px; /* Reduced font size */
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        
        .btn:hover {
            background-color: #2980b9;
        }
        
        .modify-btn {
            background-color: #f39c12;
            max-width: 120px; /* Reduced max-width */
            margin-top: 10px; /* Reduced margin */
        }
        
        .modify-btn:hover {
            background-color: #e67e22;
        }
        
        /* Sticky Booking Summary */
        .sticky-booking-summary {
            position: sticky;
            top: 70px;
            background: white;
            border-radius: 10px;
            padding: 12px 15px; /* Reduced padding */
            margin: 15px auto; /* Reduced margin */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: #333;
            display: none;
            z-index: 99;
            max-width: 1000px;
        }
        
        .sticky-booking-summary.active {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sticky-booking-details {
            display: flex;
            flex-wrap: wrap;
            gap: 15px; /* Reduced gap */
            flex: 1;
        }
        
        .sticky-booking-detail {
            flex: 1;
            min-width: 150px; /* Reduced min-width */
        }
        
        .sticky-booking-detail label {
            font-weight: 500;
            color: #7f8c8d;
            font-size: 11px; /* Reduced font size */
            display: block;
            margin-bottom: 4px; /* Reduced margin */
        }
        
        .sticky-booking-detail span {
            font-size: 12px; /* Reduced font size */
            color: #2c3e50;
        }
        
        .sticky-modify-btn {
            background-color: #f39c12;
            color: white;
            border: none;
            padding: 6px 12px; /* Reduced padding */
            border-radius: 5px;
            font-size: 11px; /* Reduced font size */
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            white-space: nowrap;
        }
        
        .sticky-modify-btn:hover {
            background-color: #e67e22;
        }
        
        /* Hotel Listings */
        .hotel-listings {
            display: flex;
            gap: 15px; /* Reduced gap */
            margin-top: 30px; /* Reduced margin */
            display: none; /* Hidden by default */
        }
        
        .hotel-cards-container {
            width: 80%;
            max-height: 10000px; /* Fixed height for scrolling */
            overflow-y: auto; /* Enable vertical scrolling */
        }
        
        .hotel-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px; /* Reduced gap */
        }
        
        .hotel-filters {
            width: 20%;
            background: white;
            border-radius: 10px;
            padding: 15px; /* Reduced padding */
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        
        .filter-section {
            margin-bottom: 15px; /* Reduced margin */
        }
        
        .filter-section h3 {
            font-size: 1rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 8px; /* Reduced margin */
            padding-bottom: 4px; /* Reduced padding */
            border-bottom: 1px solid #eee;
        }
        
        .filter-option {
            margin-bottom: 6px; /* Reduced margin */
            display: flex;
            align-items: center;
        }
        
        .filter-option input {
            margin-right: 6px; /* Reduced margin */
        }
        
        .filter-option label {
            font-size: 12px; /* Reduced font size */
            color: #555;
        }
        
        .hotel-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .hotel-img {
            height: 150px; /* Reduced height */
            width: 100%;
            object-fit: cover;
        }
        
        .hotel-info {
            padding: 12px; /* Reduced padding */
        }
        
        .hotel-name {
            font-size: 1rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 4px; /* Reduced margin */
        }
        
        .hotel-address {
            color: #7f8c8d;
            font-size: 11px; /* Reduced font size */
            margin-bottom: 6px; /* Reduced margin */
        }
        
        .hotel-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px; /* Reduced margin */
        }
        
        .hotel-city, .hotel-category {
            font-size: 11px; /* Reduced font size */
            color: #555;
        }
        
        .hotel-reviews {
            display: flex;
            align-items: center;
            margin-top: 8px; /* Reduced margin */
        }
        
        .hotel-rating {
            background: #3498db;
            color: white;
            padding: 2px 6px; /* Reduced padding */
            border-radius: 4px;
            font-size: 10px; /* Reduced font size */
            font-weight: bold;
            margin-right: 6px; /* Reduced margin */
        }
        
        .hotel-review-count {
            font-size: 10px; /* Reduced font size */
            color: #7f8c8d;
        }
        
        /* Destinations Section */
        .section {
            padding: 0 0; /*Reduced padding */
            padding-bottom: 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 25px; /* Reduced margin */
        }
        
        .section-title h2 {
            font-size: 1.5rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 8px; /* Reduced margin */
        }
        
        .section-title p {
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            font-size: 13px; /* Reduced font size */
        }
        
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Reduced minmax */
            gap: 15px; /* Reduced gap */
        }
        
        .destination-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        
        .destination-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .destination-img {
            height: 130px; /* Reduced height */
            width: 100%;
            object-fit: cover;
        }
        
        .destination-info {
            padding: 12px; /* Reduced padding */
        }
        
        .destination-info h3 {
            margin-bottom: 4px; /* Reduced margin */
            color: #2c3e50;
            font-size: 1rem; /* Reduced font size */
        }
        
        .destination-info p {
            color: #7f8c8d;
            font-size: 11px; /* Reduced font size */
        }
        
        /* Services Section */
        .services {
            background-color: #f1f8ff;
        }
        
        .service-row {
            display: flex;
            align-items: center;
            gap: 25px; /* Reduced gap */
            margin-bottom: 30px; /* Reduced margin */
        }
        
        .service-img {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .service-content {
            flex: 1;
        }
        
        .service-content h3 {
            font-size: 1.3rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 12px; /* Reduced margin */
        }
        
        .service-content p {
            margin-bottom: 12px; /* Reduced margin */
            color: #555;
            font-size: 13px; /* Reduced font size */
        }
        
        .features-list {
            list-style: none;
            margin-bottom: 12px; /* Reduced margin */
        }
        
        .features-list li {
            margin-bottom: 6px; /* Reduced margin */
            display: flex;
            align-items: flex-start;
            font-size: 13px; /* Reduced font size */
        }
        
        .features-list li:before {
            content: "✓";
            color: #3498db;
            font-weight: bold;
            margin-right: 6px; /* Reduced margin */
        }
        
        /* Services Page Styles */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Reduced minmax */
            gap: 25px; /* Reduced gap */
            margin-top: 30px; /* Reduced margin */
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 25px; /* Reduced padding */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 70px; /* Reduced size */
            height: 70px; /* Reduced size */
            background: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px; /* Reduced margin */
            color: white;
            font-size: 25px; /* Reduced font size */
        }
        
        .service-card h3 {
            font-size: 1.2rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 12px; /* Reduced margin */
        }
        
        .service-card p {
            color: #7f8c8d;
            margin-bottom: 15px; /* Reduced margin */
            font-size: 13px; /* Reduced font size */
        }
        
        .service-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            text-align: left;
            margin-top: 12px; /* Reduced margin */
        }
        
        .service-details.active {
            max-height: 500px;
        }
        
        /* About Us Page Styles */
        .about-content {
            display: flex;
            gap: 30px; /* Reduced gap */
            align-items: center;
            margin-bottom: 40px; /* Reduced margin */
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 1.5rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 15px; /* Reduced margin */
        }
        
        .about-text p {
            margin-bottom: 15px; /* Reduced margin */
            color: #555;
            font-size: 13px; /* Reduced font size */
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: 350px; /* Reduced height */
            object-fit: cover;
            display: block;
        }
        
        .milestone-container {
            display: flex;
            justify-content: space-between;
            margin: 30px 0; /* Reduced margin */
            flex-wrap: wrap;
            gap: 15px; /* Reduced gap */
        }
        
        .milestone {
            text-align: center;
            flex: 1;
            min-width: 180px; /* Reduced min-width */
            padding: 15px; /* Reduced padding */
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .milestone-icon {
            width: 60px; /* Reduced size */
            height: 60px; /* Reduced size */
            background: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px; /* Reduced margin */
            color: white;
            font-size: 25px; /* Reduced font size */
        }
        
        .milestone h3 {
            font-size: 1.3rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 8px; /* Reduced margin */
        }
        
        .milestone p {
            color: #7f8c8d;
            font-size: 12px; /* Reduced font size */
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Reduced minmax */
            gap: 25px; /* Reduced gap */
            margin-top: 30px; /* Reduced margin */
        }
        
        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-5px);
        }
        
        .team-img {
            height: 180px; /* Reduced height */
            width: 100%;
            object-fit: cover;
        }
        
        .team-info {
            padding: 15px; /* Reduced padding */
        }
        
        .team-info h3 {
            font-size: 1.1rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 4px; /* Reduced margin */
        }
        
        .team-info p {
            color: #3498db;
            margin-bottom: 8px; /* Reduced margin */
            font-weight: 500;
            font-size: 12px; /* Reduced font size */
        }
        
        .team-info .social-links {
            display: flex;
            justify-content: center;
            gap: 8px; /* Reduced gap */
            margin-top: 12px; /* Reduced margin */
        }
        
        .team-info .social-links a {
            width: 30px; /* Reduced size */
            height: 30px; /* Reduced size */
            background: #f1f8ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3498db;
            text-decoration: none;
            transition: background 0.3s, color 0.3s;
        }
        
        .team-info .social-links a:hover {
            background: #3498db;
            color: white;
        }
        
        /* Contact Page Styles */
        .contact-content {
            display: flex;
            gap: 30px; /* Reduced gap */
            margin-bottom: 40px; /* Reduced margin */
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h2 {
            font-size: 1.5rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 15px; /* Reduced margin */
        }
        
        .contact-info p {
            margin-bottom: 15px; /* Reduced margin */
            color: #555;
            font-size: 13px; /* Reduced font size */
        }
        
        .contact-details {
            margin-top: 25px; /* Reduced margin */
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px; /* Reduced margin */
        }
        
        .contact-icon {
            width: 45px; /* Reduced size */
            height: 45px; /* Reduced size */
            background: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px; /* Reduced font size */
            margin-right: 12px; /* Reduced margin */
            flex-shrink: 0;
        }
        
        .contact-text h3 {
            font-size: 1rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 4px; /* Reduced margin */
        }
        
        .contact-text p {
            margin-bottom: 0;
            color: #7f8c8d;
            font-size: 12px; /* Reduced font size */
        }
        
        .contact-form {
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 25px; /* Reduced padding */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form h2 {
            font-size: 1.5rem; /* Reduced font size */
            color: #2c3e50;
            margin-bottom: 15px; /* Reduced margin */
        }
        
        .form-group {
            margin-bottom: 15px; /* Reduced margin */
        }
                
        .form-control {
            width: 100%;
            padding: 8px 10px; /* Reduced padding */
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 13px; /* Reduced font size */
        }
        
        textarea.form-control {
            min-height: 120px; /* Reduced height */
            resize: vertical;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 30px; /* Reduced margin */
        }
        
        .map-container iframe {
            width: 100%;
            height: 350px; /* Reduced height */
            border: none;
        }
        
        /* Conclusion Section */
        .conclusion {
            text-align: center;
            padding: 30px 0; /* Reduced padding */
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
        }
        
        .conclusion h2 {
            font-size: 1.5rem; /* Reduced font size */
            margin-bottom: 12px; /* Reduced margin */
        }
        
        .conclusion p {
            max-width: 700px;
            margin: 0 auto 15px; /* Reduced margin */
            font-size: 13px; /* Reduced font size */
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 30px 0 15px; /* Reduced padding */
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 25px; /* Reduced gap */
            margin-bottom: 25px; /* Reduced margin */
        }
        
        .footer-column {
            flex: 1;
            min-width: 160px; /* Reduced min-width */
        }
        
        .footer-column h3 {
            font-size: 1rem; /* Reduced font size */
            margin-bottom: 12px; /* Reduced margin */
            color: #3498db;
        }
        
        .footer-column p, .footer-column a {
            color: #bdc3c7;
            margin-bottom: 6px; /* Reduced margin */
            display: block;
            text-decoration: none;
            font-size: 12px; /* Reduced font size */
        }
        
        .footer-column a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            gap: 8px; /* Reduced gap */
            margin-top: 12px; /* Reduced margin */
        }
        
        .social-links a {
            width: 35px; /* Reduced size */
            height: 35px; /* Reduced size */
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ecf0f1;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background: #3498db;
        }
        
        .copyright {
            text-align: center;
            padding-top: 15px; /* Reduced padding */
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 11px; /* Reduced font size */
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hotel-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 8px 0; /* Reduced padding */
            }
            
            nav ul {
                margin-top: 8px; /* Reduced margin */
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 4px 6px; /* Reduced margin */
            }
            
            .hero {
                padding: 25px 0; /* Reduced padding */
            }
            
            .hero h1 {
                font-size: 1.5rem; /* Reduced font size */
            }
            
            .form-row {
                flex-direction: column;
            }
            
            .form-group.searchloc, 
            .form-group.date-group, 
            .form-group.guest-group, 
            .form-group.btn-group {
                width: 100%;
            }
            
            .service-row, .about-content, .contact-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 15px; /* Reduced gap */
            }
            
            .guest-selector-dropdown {
                width: 100%;
                left: 0;
            }
            
            .page-hero {
                padding: 40px 0; /* Reduced padding */
            }
            
            .page-hero h1 {
                font-size: 1.7rem; /* Reduced font size */
            }
            
            .hotel-listings {
                flex-direction: column;
            }
            
            .hotel-cards-container, .hotel-filters {
                width: 100%;
            }
            
            .hotel-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .booking-details {
                flex-direction: column;
            }
            
            .sticky-booking-summary {
                flex-direction: column;
                gap: 10px;
            }
            
            .sticky-booking-details {
                flex-direction: column;
                gap: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .hotel-cards {
                grid-template-columns: 1fr;
            }
            
            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .auth-btn {
                text-align: center;
            }
        }
        
        /* Page Navigation */
        .page-navigation {
            display: none;
        }
        
        /* Show active page */
        #home-page {
            display: block;
        }
        
        /* Search results view */
        .search-results-view .hero {
            display: none;
        }
        
        .search-results-view .sticky-booking-summary {
            display: flex;
        }
        
        .search-results-view .hotel-listings {
            display: flex;
        }
        
        .search-results-view .destinations-section,
        .search-results-view .services-section,
        .search-results-view .conclusion-section {
            display: none;
        }

        /* Updated Sticky Booking Summary */
        .sticky-booking-summary {
            position: sticky;
            top: 70px;
            background: white;
            border-radius: 10px;
            padding: 12px 15px;
            margin: 15px auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: #333;
            display: none;
            z-index: 99;
            max-width: 1000px;
            border-left: 4px solid #3498db;
        }

        .sticky-booking-summary.active {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sticky-booking-details {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            flex: 1;
        }

        .sticky-booking-detail {
            flex: 1;
            min-width: 150px;
        }

        .sticky-booking-detail label {
            font-weight: 500;
            color: #7f8c8d;
            font-size: 11px;
            display: block;
            margin-bottom: 4px;
        }

        .sticky-booking-detail span {
            font-size: 12px;
            color: #2c3e50;
            font-weight: 600;
        }

        .sticky-modify-btn {
            background-color: #f39c12;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .sticky-modify-btn:hover {
            background-color: #e67e22;
        }

        /* Updated Hotel Listings Layout */
        .hotel-listings {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            display: none;
        }

        .hotel-cards-container {
            width: 90%;
            max-height: 10000px;
            overflow-y: auto;
        }

        .hotel-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .hotel-filters {
            width: 20%;
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }

        /* Search Results Header */
        .search-results-header {
            display: none;
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #3498db;
        }

        .search-results-header.active {
            display: block;
        }

        .search-results-title {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-results-title i {
            color: #3498db;
        }

        .search-results-details {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 10px;
            align-items: center;
        }

        .search-results-detail {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .search-results-detail i {
            color: #3498db;
            font-size: 12px;
        }

        .search-results-detail span {
            font-size: 12px;
            color: #555;
            font-weight: 500;
        }

        .search-results-count {
            font-size: 14px;
            color: #7f8c8d;
            font-weight: 500;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .search-results-details {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }

            
            .sticky-booking-details {
                flex-direction: column;
                gap: 8px;
            }
            
            .search-results-details {
                flex-direction: column;
                gap: 8px;
            }
            
            .hotel-listings {
                flex-direction: column;
            }
            
            .hotel-cards-container, .hotel-filters {
                width: 100%;
            }
            
            .hotel-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .hotel-cards {
                grid-template-columns: 1fr;
            }
        }

        /* 09-11 Update*/
        /* Hotel Price Styles */
        .hotel-price {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid #eee;
        }

        .price-range {
            font-weight: bold;
            color: #2c3e50;
            font-size: 12px;
            display: block;
        }

        .meal-plan {
            color: #7f8c8d;
            font-size: 11px;
            display: block;
            margin-top: 2px;
        }

        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 25px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #7f8c8d;
        }

        .close-modal:hover {
            color: #2c3e50;
        }

        /* Chatbot Styles */
        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .chatbot-icon {
            width: 60px;
            height: 60px;
            background: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            transition: transform 0.3s;
        }

        .chatbot-icon:hover {
            transform: scale(1.1);
        }

        .chatbot-window {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 350px;
            height: 450px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
        }

        .chatbot-window.active {
            display: flex;
        }

        .chatbot-header {
            background: #3498db;
            color: white;
            padding: 15px;
            border-radius: 15px 15px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-header h3 {
            margin: 0;
            font-size: 16px;
        }

        .close-chatbot {
            cursor: pointer;
            font-size: 20px;
        }

        .chatbot-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .message {
            padding: 10px 15px;
            border-radius: 18px;
            max-width: 80%;
            word-wrap: break-word;
        }

        .user-message {
            background: #3498db;
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }

        .bot-message {
            background: #f1f8ff;
            color: #2c3e50;
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }

        .chatbot-input {
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }

        .chatbot-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
        }

        .chatbot-input button {
            background: #3498db;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chatbot-input button:hover {
            background: #2980b9;
        }

        /* Price Range Inputs */
        .price-range-inputs {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Filter Section Enhancements */
        .filter-section {
            margin-bottom: 20px;
        }

        .filter-section h3 {
            font-size: 14px;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .filter-option {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .filter-option input {
            margin-right: 8px;
        }

        .filter-option label {
            font-size: 13px;
            color: #555;
            cursor: pointer;
        }

        /* Responsive Chatbot */
        @media (max-width: 480px) {
            .chatbot-window {
                width: 300px;
                height: 400px;
                right: -50px;
            }
            
            .chatbot-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        /* Date Input Enhancement */
        input[type="date"] {
            cursor: pointer;
        }

        input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            padding: 5px;
            margin-right: 2px;
        }

        /* Modify Search Form Width */
        .modify-search-form {
            width: 100% !important;
            max-width: 100% !important;
        }

        
        /*Revised Formto be Checked*?
        /* Form Label Enhancement */
        .form-group label {
            font-size: 13px !important; /* Increased font size */
            margin-bottom: 6px !important;
            display: block;
            color: #555;
            font-weight: 600;
        }

        /* Form Height Alignment */
        .form-group.searchloc .form-control,
        .form-group.guest-group .form-control,
        .form-group.date-group .form-control {
            height: 42px !important; /* Same height for all inputs */
            padding: 10px 12px !important;
            font-size: 14px !important;
        }

        /* Button Alignment */
        .form-group.btn-group {
            display: flex;
            align-items: flex-end;
        }

        .form-group.btn-group .btn {
            height: 42px !important; /* Same height as inputs */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px !important;
        }

        /* Enhanced Modal Design */
        .modal-content {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            border: none;
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c);
            border-radius: 20px 20px 0 0;
        }

        .modal-inner {
            background: white;
            padding: 30px;
            border-radius: 16px;
            margin-top: 10px;
        }

        .modal h2 {
            color: white;
            text-align: center;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 700;
        }

        .modal .form-group {
            margin-bottom: 20px;
        }

        .modal .form-control {
            border: 2px solid #e3f2fd;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .modal .form-control:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .modal .btn {
            background: linear-gradient(135deg, #3498db, #2980b9);
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            margin-top: 10px;
            transition: all 0.3s;
        }

        .modal .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin: 20px 0;
            display: none;
        }

        .success-message i {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
        }

        .success-message h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        /* Enhanced Chatbot AI */
        .chatbot-window {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            overflow: hidden;
        }

        .chatbot-header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .chatbot-messages {
            background: rgba(255, 255, 255, 0.95);
        }

        .bot-message {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border-radius: 18px 18px 18px 5px;
        }

        .user-message {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            border-radius: 18px 18px 5px 18px;
        }

        .chatbot-input {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .chatbot-input input {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .chatbot-input button {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }

        /* Loading Animation */
        .loading-dots {
            display: inline-block;
        }

        .loading-dots::after {
            content: '...';
            animation: dots 1.5s steps(4, end) infinite;
        }

        @keyframes dots {
            0%, 20% { content: '.'; }
            40% { content: '..'; }
            60%, 100% { content: '...'; }
        }


        /* Modify Form Specific Styles */
        .modify-search-form .guest-group {
            position: relative;
        }

        .modify-search-form .guest-selector-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 300px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            display: none;
        }

        .modify-search-form .guest-selector-dropdown.active {
            display: block;
        }

        .modify-search-form .guest-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .modify-search-form .guest-option:last-child {
            margin-bottom: 0;
        }

        .modify-search-form .guest-label {
            font-weight: 500;
            font-size: 12px;
        }

        .modify-search-form .guest-counter {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modify-search-form .counter-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #3498db;
            background: white;
            color: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 12px;
        }

        .modify-search-form .counter-btn:disabled {
            border-color: #ddd;
            color: #ddd;
            cursor: not-allowed;
        }

        .modify-search-form .counter-value {
            min-width: 25px;
            text-align: center;
            font-weight: 500;
            font-size: 12px;
        }

        /* Modify Child Age Container */
        .modify-search-form .child-age-container {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid #eee;
            display: none;
        }

        .modify-search-form .child-age-container.active {
            display: block;
        }

        .modify-search-form .child-age-inputs {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
        }

        .modify-search-form .child-age-inputs .form-group {
            flex: 1;
            min-width: 70px;
        }

        /* Ensure modify form inputs have same height */
        .modify-search-form .form-control {
            height: 42px !important;
            padding: 10px 12px !important;
            font-size: 14px !important;
        }

        .modify-search-form .btn {
            height: 42px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px !important;
        }



        /* Compact Modal Styles */
.modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: none;
    width: 90%;
    max-width: 400px; /* Smaller width */
    margin: 10% auto;
    padding: 0;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c);
    border-radius: 15px 15px 0 0;
}

.modal-inner {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.modal h2 {
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
}

.modal .form-group {
    margin-bottom: 15px;
}

.modal .form-control {
    border: 2px solid #e3f2fd;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s;
    height: 42px;
}

.modal .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.modal textarea.form-control {
    height: 80px;
    resize: vertical;
    min-height: 80px;
}

.modal .btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    margin-top: 5px;
    transition: all 0.3s;
    height: 46px;
}

.modal .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.success-message i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.success-message h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.success-message p {
    font-size: 13px;
    margin: 0;
}

/* Close Button */
.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    background: rgba(255,255,255,0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-modal:hover {
    background: rgba(255,255,255,0.3);
}

/* Required Field Indicator */
.required::after {
    content: " *";
    color: #e74c3c;
}

/* Compact Form Layout */
.compact-form .form-group {
    margin-bottom: 12px;
}

.compact-form label {
    font-size: 12px !important;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    color: #2c3e50;
}

/* Mobile Responsive for Modal */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-inner {
        padding: 15px;
    }
    
    .modal h2 {
        padding: 15px;
        font-size: 18px;
    }
}

/* Add these styles to your existing style.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.5;
    color: #333;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 14px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 35px;
    margin-right: 8px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

nav ul li a:hover, nav ul li a.active {
    color: #3498db;
}

.auth-buttons {
    display: flex;
    gap: 8px;
}

.auth-btn {
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
}

.signin-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.signin-btn:hover {
    background: white;
    color: #2c3e50;
}

.signup-btn {
    background: #3498db;
    color: white;
    border: 1px solid #3498db;
}

.signup-btn:hover {
    background: #2980b9;
    border-color: #2980b9;
}

/* Page Content */
.page-content {
    flex: 1;
}

.page-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1528543606781-2f6e6857f318?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjF8fHRyYXZlbHxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=800');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Home Page Styles */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://plus.unsplash.com/premium_photo-1673240367277-e1d394465b56?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1469');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 175px;
    text-align: center;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.booking-form {
    background: white;
    border-radius: 10px;
    padding: 8px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
}

.form-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 0;
}

.form-group {
    position: relative;
}

.form-group.searchloc {
    flex: 4;
}

.form-group.date-group {
    flex: 2;
}

.form-group.guest-group {
    flex: 2;
}

.form-group.btn-group {
    flex: 2;
    display: flex;
    align-items: center;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

/* Form Label Enhancement */
.form-group label {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    display: block;
    color: #555;
    font-weight: 600;
}

/* Location Dropdown Styles */
.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.location-dropdown.active {
    display: block;
}

.location-option {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
    font-size: 12px;
    justify-content: space-between;
}

.location-option:hover {
    background-color: #f1f8ff;
}

.location-option .location-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.location-option i {
    margin-right: 8px;
    color: #3498db;
    width: 16px;
    text-align: center;
    font-size: 12px;
}

.location-option .location-name {
    font-weight: 500;
}

.location-option .location-type {
    font-size: 10px;
    color: #7f8c8d;
    margin-left: 4px;
}

/* Guest Selector Styles */
.guest-selector-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
}

.guest-selector-dropdown.active {
    display: block;
}

.guest-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.guest-option:last-child {
    margin-bottom: 0;
}

.guest-label {
    font-weight: 500;
    font-size: 12px;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #3498db;
    background: white;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.counter-btn:disabled {
    border-color: #ddd;
    color: #ddd;
    cursor: not-allowed;
}

.counter-value {
    min-width: 25px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
}

.child-age-container {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee;
    display: none;
}

.child-age-container.active {
    display: block;
}

.child-age-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.child-age-group {
    display: flex;
    flex-direction: column;
}

.child-age-group label {
    font-size: 12px;
    margin-bottom: 5px;
    color: #7f8c8d;
}

.child-age-group select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 12px;
}

.btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn:hover {
    background-color: #2980b9;
}

/* Hotel Listings */
.hotel-listings {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}


.hotel-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hotel-filters {
    width: 20%;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.filter-section {
    margin-bottom: 15px;
}

.filter-section h3 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #eee;
}

.filter-option {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.filter-option input {
    margin-right: 6px;
}

.filter-option label {
    font-size: 12px;
    color: #555;
}

.hotel-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hotel-img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.hotel-info {
    padding: 12px;
}

.hotel-name {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 4px;
}

.hotel-address {
    color: #7f8c8d;
    font-size: 11px;
    margin-bottom: 6px;
}

.hotel-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hotel-city, .hotel-category {
    font-size: 11px;
    color: #555;
}

.hotel-reviews {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.hotel-rating {
    background: #3498db;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    margin-right: 6px;
}

.hotel-review-count {
    font-size: 10px;
    color: #7f8c8d;
}

/* Hotel Price Styles */
.hotel-price {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.price-range {
    font-weight: bold;
    color: #2c3e50;
    font-size: 12px;
    display: block;
}

.meal-plan {
    color: #7f8c8d;
    font-size: 11px;
    display: block;
    margin-top: 2px;
}




/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-inner {
    padding: 20px;
}

.modal h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Auth Modal Styles */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #7f8c8d;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}

.auth-type-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-type-btn {
    flex: 1;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.auth-type-btn:hover {
    background: #e9ecef;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.social-login {
    text-align: center;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-login p {
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 14px;
}

.google-btn {
    background: #db4437 !important;
    width: 100%;
}

.google-btn:hover {
    background: #c23321 !important;
}

.login-option {
    text-align: center;
    margin-top: 15px;
}

.link-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
}

.link-btn:hover {
    color: #2980b9;
}

.registration-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reg-option-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.reg-option-btn:hover {
    background: #e9ecef;
    border-color: #3498db;
}

.reg-option-btn i {
    font-size: 24px;
    color: #3498db;
}

.reg-option-btn span {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    display: none;
}

.success-message i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.success-message h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Required Field Indicator */
.required::after {
    content: " *";
    color: #e74c3c;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0 15px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-column {
    flex: 1;
    min-width: 160px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #3498db;
}

.footer-column p, .footer-column a {
    color: #bdc3c7;
    margin-bottom: 6px;
    display: block;
    text-decoration: none;
    font-size: 12px;
}

.footer-column a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #3498db;
}

.copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 11px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hotel-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 8px 0;
    }
    
    nav ul {
        margin-top: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 4px 6px;
    }
    
    .hero {
        padding: 25px 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group.searchloc, 
    .form-group.date-group, 
    .form-group.guest-group, 
    .form-group.btn-group {
        width: 100%;
    }
    
    .hotel-listings {
        flex-direction: column;
    }
    
    .hotel-cards-container, .hotel-filters {
        width: 100%;
    }
    
    .hotel-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .auth-type-buttons {
        flex-direction: column;
    }
    
    .registration-options {
        gap: 10px;
    }
    
    .reg-option-btn {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hotel-cards {
        grid-template-columns: 1fr;
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .auth-btn {
        text-align: center;
    }
    
    .modal-content {
        width: 98%;
        margin: 5% auto;
    }
    
    .modal-inner {
        padding: 15px;
    }
    
    .tab-btn {
        font-size: 14px;
        padding: 10px;
    }
}



/* Add these styles to your existing style.css */

/* Add these styles to your existing style.css */

/* Enhanced Modal Styles for Centering */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    margin: 0 auto;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Compact Auth Modal Styles */
.auth-modal-content {
    max-width: 400px !important;
    width: 95% !important;
}

.compact-form {
    padding: 15px !important;
}

.compact-form .form-group {
    margin-bottom: 12px;
}

.compact-form label {
    font-size: 13px !important;
    margin-bottom: 4px !important;
    display: block;
    color: #555;
    font-weight: 600;
}

.compact-form .form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
}

.compact-form textarea.form-control {
    height: 80px;
    resize: vertical;
    min-height: 80px;
}

/* Compact Auth Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #7f8c8d;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}

/* Compact Auth Type Buttons */
.auth-type-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.auth-type-btn {
    flex: 1;
    padding: 8px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
    min-width: 100px;
}

.auth-type-btn:hover {
    background: #e9ecef;
}

/* Compact Auth Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.auth-form .form-group {
    margin-bottom: 12px;
}

.auth-form .form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
    font-size: 12px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.social-login {
    text-align: center;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.social-login p {
    margin-bottom: 12px;
    color: #7f8c8d;
    font-size: 12px;
}

.google-btn {
    background: #db4437 !important;
    width: 100%;
    padding: 8px !important;
    font-size: 14px !important;
}

.google-btn:hover {
    background: #c23321 !important;
}

.login-option {
    text-align: center;
    margin-top: 12px;
}

.link-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    text-decoration: underline;
    font-size: 12px;
}

.link-btn:hover {
    color: #2980b9;
}

.registration-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reg-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.reg-option-btn:hover {
    background: #e9ecef;
    border-color: #3498db;
}

.reg-option-btn i {
    font-size: 20px;
    color: #3498db;
}

.reg-option-btn span {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

/* Enhanced Guest Counter */
.guest-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #3498db;
    background: white;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
}

.counter-btn:hover:not(:disabled) {
    background: #3498db;
    color: white;
}

.counter-btn:disabled {
    border-color: #ddd;
    color: #ddd;
    cursor: not-allowed;
}

.counter-value {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

/* Child Age Inputs */
.child-age-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.child-age-group {
    display: flex;
    flex-direction: column;
}

.child-age-group label {
    font-size: 11px;
    margin-bottom: 4px;
    color: #7f8c8d;
    font-weight: 500;
}

.child-age-group select {
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    height: 35px;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.success-message i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.success-message h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.success-message p {
    font-size: 13px;
    margin: 0;
}

/* Required Field Indicator */
.required::after {
    content: " *";
    color: #e74c3c;
}

/* Close Button */
.close-modal {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 18px;
    cursor: pointer;
    color: #7f8c8d;
    background: rgba(0,0,0,0.05);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-modal:hover {
    background: rgba(0,0,0,0.1);
    color: #2c3e50;
}

/* Responsive Design for Modals */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 10px auto;
    }
    
    .auth-modal-content {
        width: 98% !important;
    }
    
    .compact-form {
        padding: 12px !important;
    }
    
    .auth-type-buttons {
        flex-direction: column;
    }
    
    .auth-type-btn {
        min-width: auto;
    }
    
    .registration-options {
        gap: 8px;
    }
    
    .reg-option-btn {
        padding: 12px;
    }
    
    .reg-option-btn i {
        font-size: 18px;
    }
    
    .reg-option-btn span {
        font-size: 13px;
    }
    
    .child-age-inputs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .modal-content {
        width: 98%;
        margin: 5px auto;
    }
    
    .compact-form {
        padding: 10px !important;
    }
    
    .auth-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 8px;
        font-size: 13px;
    }
}