:root {
    --primary-orange: #FF6600;
    --primary-blue: #0099FF;
    --primary-green: #33CC33;
    --accent-yellow: #FFCC00;
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f0f8ff; /* AliceBlue for a subtle tint */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 180px; /* Reduced from 270px to balance layout */
    width: auto;
    max-width: none;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-orange), #ff4500); /* Gradient background */
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* Added shadow */
    transition: 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    height: 75vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Add overlay to ensure text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

.hero-search {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color); /* Ensure text is visible in search box */
    text-align: left;
}

.hero-search input, .hero-search select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

.hero-search button {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

.search-section {
    background: linear-gradient(to right, var(--primary-blue), #0077cc); /* Gradient background */
    padding: 2rem 0;
    position: relative;
    z-index: 10; /* Ensure it's above the carousel */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Packages Section */
.packages {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-title span {
    color: var(--primary-orange);
    font-weight: bold;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    height: 200px;
    background-color: #ddd;
    position: relative;
    background-size: cover;
    background-position: center;
}

.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.package-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.package-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex: 1;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* About Section */
.about {
    background-color: var(--white);
    padding: 4rem 5%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #003366; /* Dark Blue instead of almost black */
    color: var(--white);
    padding: 3rem 5% 1rem;
    border-top: 5px solid var(--primary-orange);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for now */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Swiper Carousel */
.swiper {
    width: 100%;
    height: 100%;
}

.hero-slider {
    width: 100%;
    height: 100%; /* Fill the hero container */
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4); /* Overlay for better text visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 1rem;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

/* Package Details Page */
.details-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.details-gallery {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-info h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.details-price {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: block;
}

.details-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.details-meta {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f0f0f0;
    border-radius: 8px;
}

.details-meta p {
    margin-bottom: 0.5rem;
}

.details-meta i {
    color: var(--primary-orange);
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .details-container {
        grid-template-columns: 1fr;
    }
    
    .details-gallery {
        height: 300px;
    }
}
