:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --bg-gradient: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Dark Theme */
body.dark-theme {
    --light-color: #121212;
    --dark-color: #f8f9fa;
    --text-light: #212529;
    --text-dark: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #4895ef 0%, #4361ee 100%);
    background-color: var(--light-color);
    color: var(--text-dark);
}

/* Dark mode specific styles */
body.dark-theme .navbar,
body.dark-theme .footer,
body.dark-theme .form-container,
body.dark-theme .contact-form,
body.dark-theme .card,
body.dark-theme .service-box,
body.dark-theme .review-card {
    background-color: #1e1e1e !important;
    color: var(--text-dark) !important;
}

body.dark-theme .nav-link,
body.dark-theme .footer a,
body.dark-theme .footer p,
body.dark-theme .footer-text,
body.dark-theme .form-control,
body.dark-theme .form-label,
body.dark-theme .card-text,
body.dark-theme .service-text,
body.dark-theme .review-card p,
body.dark-theme .copyright-text {
    color: var(--text-dark) !important;
}

body.dark-theme .footer a:hover {
    color: var(--accent-color) !important;
}

body.dark-theme .footer i {
    color: var(--accent-color) !important;
}

body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select {
    background-color: #2d2d2d !important;
    color: var(--text-dark) !important;
    border-color: #444 !important;
}

body.dark-theme .nav-brand,
body.dark-theme .book-now,
body.dark-theme .gallery-text h2 {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
    padding-top: 60px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 0.8rem 1rem;
}

.nav-brand {
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    position: relative;
    margin: 0 0.5rem;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Bottom Navbar */
.mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--light-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: 0.5rem 0;
}

.mobile-nav-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-navbar a {
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: var(--transition);
    text-align: center;
}

.mobile-navbar a.active {
    color: var(--primary-color);
}

/* Theme Toggle Mobile Styles */
.theme-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gradient);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hide on desktop */
@media (min-width: 768px) {
    .theme-toggle {
        display: none !important;
    }
}

/* Video Carousel */
#videoCarousel {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: -60px;
}

#videoCarousel .carousel-inner,
#videoCarousel .carousel-item {
    height: 100%;
}

#videoCarousel video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center top;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    padding: 0 1rem;
    z-index: 10;
}

.carousel-h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.carousel-p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Custom Button */
.custom-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--bg-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
    color: white;
}

.custom-btn:active {
    transform: translateY(1px);
}

.custom-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3f37c9 0%, #4361ee 100%);
    z-index: -1;
    transition: var(--transition);
}

.custom-btn:hover::after {
    opacity: 0;
}

/* Section Headings */
.book-now {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.book-now::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

/* Book Now Section */
.form-container {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.form-control {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(67, 97, 238, 0.2);
    transition: var(--transition);
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234361ee' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
}

/* Packages Section */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 1.5rem;
    background: var(--light-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-title i {
    margin-right: 0.5rem;
}

.card-text {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rating {
    display: block;
    margin-bottom: 1rem;
}

.rating i {
    color: #ffc107;
    margin-right: 0.2rem;
    font-size: 0.9rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price s {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 0.5rem;
}

#show-card-btn {
    margin: 1.5rem auto;
    display: block;
}

/* Services Section */
.service-icon {
    font-size: 2.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-box {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--light-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-box:hover .service-icon {
    transform: scale(1.2);
}

.service-text {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Gallery Section */
#image-slider {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
}

#image-slider img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(67, 97, 238, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

#image-slider:hover .carousel-control-prev,
#image-slider:hover .carousel-control-next {
    opacity: 1;
}

.gallery-text {
    padding: 1.5rem;
}

.gallery-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gallery-text p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Review Section */
.review-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 1.5rem;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--primary-color);
}

.review-card h5 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.review-card p {
    color: var(--text-dark);
    opacity: 0.8;
    text-align: center;
    margin-bottom: 15px;
    font-style: italic;
}

.review-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-form {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(67, 97, 238, 0.2);
    transition: var(--transition);
    margin-bottom: 1rem;
    background: var(--light-color);
    color: var(--text-dark);
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.contact-form textarea {
    min-height: 150px;
}

.contact-img {
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Footer Section */
.footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 3rem 0 1.5rem;
    position: relative;
}

body.dark-theme .footer {
    background: #1e1e1e !important;
    backdrop-filter: none !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--bg-gradient);
}

.footer-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.copyright-text {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(67, 97, 238, 0.1);
    color: var(--text-dark);
    opacity: 0.7;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-h2 {
        font-size: 2rem;
    }
    
    .carousel-p {
        font-size: 1rem;
    }
    
    .book-now {
        font-size: 1.8rem;
    }
    
    #image-slider img {
        height: 250px;
    }
    
    .gallery-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    #videoCarousel {
        height: 60vh;
        min-height: 300px;
    }
    .navbar {
        display: none;
    }
    
    .mobile-navbar {
        display: flex;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .carousel-h2 {
        font-size: 1.8rem;
    }
    
    .carousel-p {
        font-size: 0.9rem;
    }
    
    .book-now {
        font-size: 1.5rem;
    }
    
    .form-container, .contact-form {
        padding: 1rem;
    }
    
    .gallery-text {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    #videoCarousel {
        height: 50vh;
        min-height: 250px;
    }
    .carousel-h2 {
        font-size: 1.5rem;
    }
    
    .carousel-p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .custom-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .book-now {
        font-size: 1.3rem;
    }
    
    .footer-text {
        font-size: 1.1rem;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
}