/* Hotel Seven Star - Complete CSS */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.logo-text {
    font-weight: 600;
    font-size: 16px;
}

.top-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-link, .whatsapp-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.phone-link:hover, .whatsapp-link:hover {
    color: #d4af37;
}

.phone-icon, .whatsapp-icon {
    width: 16px;
    height: 16px;
    background: #d4af37;
    border-radius: 50%;
}

/* Main Navigation */
.main-nav {
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #d4af37;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #d4af37;
    color: #1a1a1a;
    padding-left: 25px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-select {
    background: transparent;
    color: white;
    border: 1px solid #d4af37;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.book-now-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.book-now-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: #1a1a1a;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-size: 16px;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    display: none;
    background: #2c2c2c;
    border-left: 3px solid #d4af37;
}

.mobile-dropdown-link {
    padding-left: 30px;
    font-size: 14px;
    border-bottom: 1px solid #444;
}

.mobile-nav-link:hover {
    color: #d4af37;
}

.mobile-actions {
    margin-top: 20px;
}

.mobile-book-btn {
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/about.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
}

.check-availability-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.check-availability-btn:hover {
    background: #b8941f;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2c1810;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c1810;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.read-more-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-images .main-image {
    grid-column: 1 / -1;
}

/* Accommodation Section */
.accommodation-section {
    padding: 80px 0;
    background: white;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 30px;
}

.room-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c1810;
}

.room-guests {
    color: #666;
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.amenity-icon {
    width: 16px;
    height: 16px;
    background: #d4af37;
    border-radius: 50%;
}

.room-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-more-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.room-book-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.room-book-btn:hover {
    background: #b8941f;
}

/* Staycation Section */
.staycation-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.staycation-grid {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.staycation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

.staycation-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.staycation-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staycation-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.staycation-features {
    margin-bottom: 25px;
    width: 100%;
}

.staycation-features h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #666;
    font-size: 14px;
    padding: 5px;
}

.feature-item i {
    color: #d4af37;
    margin-right: 8px;
    font-size: 14px;
    flex-shrink: 0;
}

.staycation-link {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.staycation-link:hover {
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .staycation-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .staycation-image {
        height: 250px;
    }

    .staycation-content {
        padding: 20px;
    }

    .features-list {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .staycation-title {
        font-size: 20px;
    }
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.promo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.promo-card.featured {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
}

.promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-content {
    padding: 25px;
}

.promo-discount {
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.promo-details {
    font-size: 14px;
    opacity: 0.8;
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
    background: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.highlight-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.highlight-content {
    padding: 30px;
    text-align: center;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    color: white;
    border: 2px solid #d4af37;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn.active, .filter-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-slider {
    position: relative;
    margin-top: 60px;
}

.location-cards {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.location-card {
    min-width: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-content {
    padding: 25px;
}

.location-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1810;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.tripadvisor-logo {
    width: 150px;
    margin: 0 auto 40px;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-location {
    font-size: 1rem;
    opacity: 0.8;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: #f8f8f8;
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-filters {
        flex-wrap: wrap;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-cards {
        flex-direction: column;
    }

    .location-card {
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Form Validation Styles */
.form-group.error input {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
}

.form-group.success input {
    border-color: #44ff44;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* Tariff Page Styles */
.tariff-table-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.tariff-table-wrapper {
    overflow-x: auto;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.tariff-table thead {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.tariff-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tariff-table th:last-child {
    border-right: none;
}

.tariff-table th span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

.tariff-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.tariff-table tbody tr:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tariff-table td {
    padding: 20px 15px;
    vertical-align: top;
}

.room-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.room-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.price-cell {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.peak-price {
    color: #8B4513;
}

.off-price {
    color: #666;
}

.festive-price {
    color: #dc3545;
}

.guests-cell {
    text-align: center;
    color: #666;
    font-weight: 500;
}

.no-data {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px 20px;
}

/* Inclusions Section */
.inclusions-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.inclusions-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.inclusion-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.inclusion-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.inclusion-item span {
    font-weight: 500;
    color: #333;
}

/* Terms Section */
.terms-section {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.terms-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.term-item {
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.6;
}

.term-item strong {
    color: #8B4513;
    font-weight: 600;
}

/* Packages Page Styles */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.package-header {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-tagline {
    font-size: 14px;
    opacity: 0.9;
}

.package-content {
    padding: 30px;
}

.package-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: #8B4513;
}

.package-unit {
    font-size: 14px;
    color: #666;
}

.package-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.package-inclusions {
    list-style: none;
    margin-bottom: 25px;
}

.package-inclusions .inclusion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.package-inclusions .inclusion-item i {
    color: #28a745;
    font-size: 12px;
}

.package-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    color: white;
}

.no-packages {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-packages-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-packages-content i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.no-packages-content h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
}

.no-packages-content p {
    color: #999;
    font-size: 16px;
}

/* Custom Package Section */
.custom-package-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.custom-package-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.custom-package-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.custom-package-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.benefits-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.benefit-item i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.benefit-item span {
    font-weight: 500;
    color: #333;
}

.custom-package-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-package-btn:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    color: white;
}

/* Responsive Design for Tariff and Packages */
@media (max-width: 768px) {
    .tariff-table-container {
        margin: 0 -20px;
        border-radius: 0;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-content {
        padding: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .custom-package-title {
        font-size: 28px;
    }

    .custom-package-description {
        font-size: 16px;
    }
}

/* Package Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    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);
    }
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border-radius: 20px 20px 0 0;
}

.booking-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.booking-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B4513;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive Modal */
/* Facilities Styles */
.facilities-section {
    padding: 80px 0;
    background: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.facility-card h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
}

.facility-card p {
    color: #666;
    line-height: 1.6;
}

.services-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    /* Mobile Navigation Fixes */
    .main-nav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(5px);
    }

    .mobile-menu-content {
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background: #1a1a1a;
        padding: 60px 20px 20px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu[style*="block"] .mobile-menu-content {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }

    .mobile-menu-title {
        font-size: 20px;
        font-weight: 600;
        color: #d4af37;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
    }

    /* Mobile Facilities Layout */
    .facilities-section {
        padding: 40px 0;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .facility-card {
        padding: 20px;
        margin: 0 10px;
    }

    .facility-card h3 {
        font-size: 1.3rem;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-item {
        padding: 20px;
        margin: 0 10px;
    }

    /* Mobile Dropdown Positioning */
    .mobile-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
    }

    .booking-modal {
        padding: 10px;
    }

    .booking-modal-content {
        max-height: 95vh;
    }

    .booking-modal-header {
        padding: 20px;
    }

    .booking-modal-header h3 {
        font-size: 20px;
    }

    .booking-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
