:root {
    --primary-cyan: #00d2d3;
    /* Vibrant Cyan */
    --dark-cyan: #01a3a4;
    /* Darker Cyan for hover */
    --text-dark: #222f3e;
    --text-light: #576574;
    --light-bg: #f4fcfd;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Utility Classes */
.text-cyan {
    color: var(--primary-cyan) !important;
}

.bg-cyan {
    background-color: var(--primary-cyan) !important;
    color: white;
}

.bg-light-cyan {
    background-color: var(--light-bg) !important;
}

.section-padding {
    padding: 90px 0;
}

/* Buttons */
.btn-travel {
    background-color: var(--primary-cyan);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 210, 211, 0.4);
    transition: all 0.3s ease;
}

.btn-travel:hover {
    background-color: var(--dark-cyan);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 210, 211, 0.6);
}

.btn-outline-travel {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-travel:hover {
    background: var(--primary-cyan);
    color: white;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark) !important;
}

.navbar-brand span {
    color: var(--primary-cyan);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-cyan) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    border-radius: 0 0 50px 50px;
}

.hero-title {
    font-size: 4.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

/* Search Box */
.search-container {
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

.search-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 10px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--primary-cyan);
}

/* Destination Cards */
.destination-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
    transition: 0.3s;
}

.dest-price {
    background: var(--primary-cyan);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

/* Services Icons */
.service-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.service-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #eee;
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(0, 210, 211, 0.1);
    color: var(--primary-cyan);
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.service-box:hover .service-icon {
    background: var(--primary-cyan);
    color: white;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.package-content {
    padding: 25px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2073&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    color: white;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 210, 211, 0.85);
}

.stat-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Gallery */
.gallery-img {
    border-radius: 15px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    filter: brightness(80%);
}

/* Contact/Booking */
.booking-section {
    background-color: var(--light-bg);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    background-color: #222f3e;
    color: #c8d6e5;
    padding: 70px 0 20px;
}

footer h4 {
    color: white;
    margin-bottom: 25px;
}

footer a {
    color: #c8d6e5;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary-cyan);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .search-container {
        margin-top: 30px;
    }
}