/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0056b3;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    min-height: 70px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #0056b3;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

nav ul li a:hover {
    color: #0056b3;
    background-color: #f0f8ff;
}

.btn-primary {
    background-color: #0056b3;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333 !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #333;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: #0056b3;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

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

/* Rooms Preview Section */
.rooms-preview {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.rooms-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

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

.room-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.room-details {
    padding: 30px;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 20px;
}

.amenities-preview {
    margin-bottom: 25px;
}

.amenities-preview li {
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: center;
}

.amenities-preview li i {
    color: #0056b3;
    margin-right: 8px;
    font-size: 0.9rem;
}

.room-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.room-actions a {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Room Detail Page */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.room-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.room-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.room-description {
    margin: 25px 0;
}

.room-description p {
    color: #666;
    line-height: 1.7;
}

.room-amenities {
    margin: 30px 0;
}

.room-amenities h3 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.room-amenities ul li {
    margin-bottom: 12px;
    color: #666;
    display: flex;
    align-items: center;
}

.room-amenities ul li i {
    color: #0056b3;
    margin-right: 12px;
    font-size: 1rem;
}

.room-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* About Page */
.about {
    padding: 100px 0;
    background-color: #fff;
}

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

.about-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 35px 0 20px;
    color: #333;
    font-weight: 600;
}

.about-features li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.about-features li i {
    color: #0056b3;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 1rem;
}

/* Contact Page */
.contact {
    padding: 100px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #0056b3;
    margin-right: 15px;
    width: 30px;
    margin-top: 2px;
}

.contact-item div h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.contact-item div p {
    color: #666;
    margin: 0;
}

.social-contact h3 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: #003d82;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

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

.map {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0056b3, #003d82);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #0056b3;
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.6;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: #003d82;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* WhatsApp Booking Button */
.whatsapp-booking-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-booking-button a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-booking-button a:hover {
    background-color: #128C7E;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.whatsapp-booking-button span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: #e9ecef; /* A more noticeable light gray */
    color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color); /* Ensure text is visible */
    text-shadow: none; /* Remove text shadow for better clarity on light background */
}

/* Responsive Styles */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .features-grid,
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .about-content,
    .contact-content,
    .room-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .room-detail {
        padding: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        width: 100%;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-out;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul {
        display: block;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
    }
    
    .nav-toggle:checked ~ nav {
        transform: scale(1, 1);
    }
    
    .nav-toggle:checked + .nav-toggle-label span {
        background: transparent;
    }
    
    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
    }
    
    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .hero {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .features,
    .rooms-preview,
    .about,
    .contact,
    .map,
    .cta {
        padding: 60px 0;
    }
    
    .features h2,
    .rooms-preview h2,
    .about-text h2,
    .contact-info h2,
    .contact-form h2,
    .map h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature {
        padding: 30px 25px;
    }
    
    .room-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-booking-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-booking-button a {
        padding: 12px 20px;
    }
    
    .whatsapp-booking-button span {
        display: none;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    header .container {
        padding: 10px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .features,
    .rooms-preview,
    .about,
    .contact,
    .map,
    .cta {
        padding: 40px 0;
    }
    
    .features h2,
    .rooms-preview h2,
    .about-text h2,
    .contact-info h2,
    .contact-form h2,
    .map h2,
    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .feature {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .room-card img {
        height: 200px;
    }
    
    .room-details {
        padding: 25px;
    }
    
    .room-detail {
        padding: 25px;
        margin-top: 20px;
    }
    
    .room-detail-info h2 {
        font-size: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-booking-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-booking-button a {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .whatsapp-icon {
        margin: 0;
        font-size: 1.3rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .features h2,
    .rooms-preview h2,
    .about-text h2,
    .contact-info h2,
    .contact-form h2,
    .map h2,
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .room-actions a {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg@2x.jpg');
    }
}

/* Print styles */
@media print {
    .whatsapp-booking-button,
    .nav-toggle-label,
    .btn-whatsapp {
        display: none !important;
    }
    
    .hero {
        background: #0056b3;
        color: #fff;
        -webkit-print-color-adjust: exact;
    }
    
    .page-header {
        background: #0056b3;
        -webkit-print-color-adjust: exact;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

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

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.w-100 { width: 100%; }
.h-100 { height: 100%; }



/* Contact Modal for Price Visibility */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

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

.modal-body .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.modal-body .form-group input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

/* Price Container Styles */
.price-container {
    margin-bottom: 20px;
}

.hidden-price {
    display: none;
}

.show-price-btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.show-price-btn:hover {
    background-color: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.3);
}

.show-price-btn i {
    font-size: 0.9rem;
}

/* Success Message */
.success-message {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive for Modal */
@media (max-width: 576px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .show-price-btn {
        width: 100%;
        justify-content: center;
    }
}



/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Updated Color Scheme to Match Logo */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

/* Header Updates */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Navigation Updates */
nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Button Updates */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Hero Section Updates */
.hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.3), rgba(52, 73, 94, 0.3)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Room Cards Updates */
.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.2);
    border-color: var(--accent-color);
}

.room-card h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.room-card .price {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Form Updates */
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

/* Modal Updates */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

/* Footer Updates */
footer {
    background: var(--primary-color);
    color: var(--white);
}

footer h4 {
    color: var(--accent-color);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    header .container {
        padding: 10px 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}


/* Section Background Colors */
.features {
    background: #f8f9fa;
    padding: 80px 0;
}

.featured-rooms {
    background: #f8f9fa;
    padding: 80px 0;
}

.cta {
    background: #f8f9fa;
    padding: 80px 0;
}

.rooms-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.booking-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Features Grid - 4 Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.2);
    border-color: var(--accent-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* Room Cards Grid - 4 Cards on Homepage */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Modal Centering and Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #f0f0f0;
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.form-group input.error {
    border-color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

/* Room Card Button Layout */
.room-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.room-actions .btn-primary,
.room-actions .btn-secondary {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #28a745;
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .room-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
}


/* Add-ons Section Styles */
.addons-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.addons-section h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.addons-section p {
    color: #666;
    margin-bottom: 20px;
}

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

.addon-card {
    background: white;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
}

.addon-header {
    padding: 0;
}

.addon-label {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
}

.addon-card input[type="checkbox"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.addon-icon {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.addon-info {
    flex: 1;
}

.addon-info h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.addon-info p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.addon-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
}

.addons-total {
    text-align: right;
    padding: 15px 0;
    border-top: 2px solid #e9ecef;
}

.total-display {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

#addons-total-amount {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Admin Panel Styles */
.admin-panel {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.admin-panel h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

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

.price-config-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.price-config-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input-group label {
    font-weight: 600;
    min-width: 60px;
}

.price-input-group input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.save-prices-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.save-prices-btn:hover {
    background: #2980b9;
}

/* Responsive Design for Add-ons */
@media (min-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .addon-label {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    
    .addon-icon {
        margin: 0 0 15px 0;
    }
    
    .addon-card input[type="checkbox"] {
        position: absolute;
        top: 15px;
        right: 15px;
        margin: 0;
    }
    
    .addon-card {
        position: relative;
    }
}


/* Quotation Section Styles */
.quotation-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quotation-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quotation-details {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.quotation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.quotation-row:last-child {
    border-bottom: none;
}

.quotation-label {
    font-weight: 500;
    color: #495057;
    flex: 1;
}

.quotation-value {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    min-width: 120px;
}

.quotation-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 15px 0;
    border-radius: 1px;
}

.total-row {
    background: #f8f9fa;
    margin: 0 -10px;
    padding: 15px 10px !important;
    border-radius: 6px;
    border: none !important;
}

.total-row .quotation-label,
.total-row .quotation-value {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.booking-amount-row {
    background: #e3f2fd;
    margin: 0 -10px;
    padding: 12px 10px !important;
    border-radius: 6px;
    border: none !important;
}

.booking-amount-row .quotation-value {
    color: #1976d2;
}

.balance-row {
    background: #fff3e0;
    margin: 0 -10px;
    padding: 12px 10px !important;
    border-radius: 6px;
    border: none !important;
}

.balance-row .quotation-value {
    color: #f57c00;
}

.addon-total-row {
    background: #f3e5f5;
    margin: 0 -10px;
    padding: 12px 10px !important;
    border-radius: 6px;
    border: none !important;
}

.addon-total-row .quotation-value {
    color: #7b1fa2;
}

.quotation-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin-top: 15px;
}

.quotation-note p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.quotation-note i {
    color: #f39c12;
    margin-right: 5px;
}

/* Responsive Design for Quotation */
@media (max-width: 768px) {
    .quotation-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .quotation-value {
        text-align: left;
        min-width: auto;
        font-size: 1.1rem;
    }
    
    .quotation-section {
        padding: 20px 15px;
    }
    
    .quotation-details {
        padding: 15px;
    }
}

/* Animation for quotation appearance */
.quotation-section {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

