/* Global Styles */
: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);
    
    /* From second code */
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #2c3e50;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation Bar - From first code */
.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;
}




@media (max-width: 1023px) {


    
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
 
    
    .hero-form {
        width: 120%;
    }
    
    .form-row {
        flex-direction: column;
    }
}


/* Header Styles from second code */
.header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1562612545-4c3a3c4eb343?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-bar {
    display: flex;
    flex: 1;
    min-width: 250px;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    border-color: var(--accent-color);
}

.search-bar button {
    padding: 0 20px;
    background-color: var(--primary-teal);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background-color: var(--secondary-orange);
}








.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.sort-options label {
    font-weight: 600;
}

.sort-options select {
    padding: 10px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    
}


/* Change the border/glow when the dropdown is focused */
.sort-options select:focus {
    border-color: teal; /* Example blue highlight */
    box-shadow: 0 0 0 2px rgba(77, 144, 254, 0.2); /* Optional glow */
}

/* Change the selected option background (dropdown open) */
.sort-options select option:checked {
    background-color: teal; /* Selected option highlight */
    color: white;
}

/* Remove custom hover (let browser handle it) */
 .sort-options select option:hover {
    background-color: teal; 
} 














/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.tab-btn.active {
   background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}


.tab-btn:hover:not(.active) {
    background: #f1f1f1;
}









/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.package-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 20px;
}

.package-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-color);
    color: var(--text-light);
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.package-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.package-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.package-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.package-duration, .package-price {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.package-actions {
    display: flex;
    justify-content: space-between;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-teal);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-orange);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-orange);
    color: white;
    border: none;
}

/* PACKAGE hero */
.package-hero {
      position: relative; /* Add this to contain the absolute positioned form */
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('Images/Lipton\ Seat\ 1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.packagehero-content h1 {
    color: #ffffff;
    font-size: clamp(4rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
}
.packagehero-content h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.packagehero-content p {
    margin: 0.8rem 3rem;
    font-size: clamp(1rem, 3vw, 1.1rem);
}

.packagehero p:first-child {
    margin-bottom: 0.5rem;
    font-size: clamp(5rem, 4vw, 1.4rem);
    font-weight: bold;
}

/* Footer - From first code */
.simple-footer {
    background: var(--primary-blue);
    color: 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-center, .footer-contact {
    flex: 1;
    min-width: 390px;
    margin-bottom: 20px;
    padding: 0 30px;
}

.footer-links {
    flex: 1;
    min-width: 20px;
    margin-bottom: 20px;
    padding: 0 30px;
    margin-left: 150px;
}

.footer-links h3, .footer-contact h3 {
    color: 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-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.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;
}

.footer-contact {
    position: relative;
}

.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: 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: flex-start;
}

.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: 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: 1024px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar.scrolled .logo img {
        height: 40px;
    }
     .package-hero {
        
        height: 70vh;
    }

     .hero-form {
        width: 120%;
    }
    
    .form-row {
        flex-direction: column;
    }
   
}

@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
 
    .contact-item {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .package-hero {
        padding-top: 70px;
        height: auto;
        min-height: 50vh;
    }
    
    .packagehero-content h1 {
        font-size: 1.8rem;
    }
    
    .packagehero-content h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .packagehero-content p {
        margin: 0.8rem 1rem;
    }
    
    .filter-controls {
        flex-direction: column;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    

}


/* 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;
    }


}








/* Hero Form */
/* Update your hero form styles */
.hero-form-container {
    position: absolute;
    bottom: 295px; /* Adjust this value to position it exactly where you want */
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.hero-form {
    background: rgba(255, 255, 255, 0.445);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-align: center;
    font-size: 1.5rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input,
.form-row select,
.form-row input[type="date"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    min-height: 48px;
}

.form-row input[type="date"] {
    /* Special styling for date input */
    color: var(--medium-gray);
}

.form-row select {
    /* Special styling for select dropdown */
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
}

.inquiry-btn {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 48px;
}

.inquiry-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-form {
        width: 90%;
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .package-hero {
        padding-bottom: 100px; /* Make space for the form */
    }
    
    .hero-form-container {
        bottom: -80px; /* Adjust for mobile */
    }
}

@media (max-width: 480px) {
    .hero-form {
        width: 95%;
        padding: 15px;
    }
    
    .hero-form h3 {
        font-size: 1.3rem;
    }
}/* Add these to your existing media queries */

@media (max-width: 768px) {
    .hero-form-container {
        position: relative; /* Change from absolute to relative for better flow */
        bottom: auto;
        margin-top: -50px; /* Pull up slightly into the hero */
        padding: 0 15px;
    }
    
    .hero-form {
        width: 100%;
        padding: 20px;
    }
    
    .form-row input,
    .form-row select,
    .form-row input[type="date"] {
        padding: 15px; /* Larger padding for touch */
        font-size: 1.1rem; /* Slightly larger text */
    }
    
    .inquiry-btn {
        padding: 16px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-form {
        padding: 15px 10px;
    }
    
    .form-row input,
    .form-row select,
    .form-row input[type="date"] {
        min-height: 52px; /* Even larger touch target */
    }
    
    input[type="date"] {
        color: #333; /* Better contrast on mobile */
    }
}


/* 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;
    }
}


    
/* Add these media queries at the end of your CSS */

/* Add these media queries to your CSS */

/* Tablet mode (typically 768px - 1023px) for nav bar */
@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;
    }}