/* Reset and Base Styles */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    height: 85px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: #fff;
    height: 70px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.navbar .logo img {
    height: 55px;
    transition: transform 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.1);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links li a:hover::before,
.nav-links li a.active::before {
    width: 80%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #d4af37;
    transform: translateY(-3px);
}

.appointment-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #d4af37;
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.appointment-btn:hover {
    background: #b8972e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #2d2d2d;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.2);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 80px 20px 20px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu ul li a {
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    padding: 12px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #d4af37;
    bottom: 8px;
    left: 12px;
    transition: width 0.3s ease;
}

.mobile-menu ul li a:hover::after,
.mobile-menu ul li a.active::after {
    width: 60px;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: #d4af37;
    transform: translateX(15px);
}

.mobile-menu .appointment-btn {
    margin: 25px 12px;
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    color: #2d2d2d;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Appointment Dialog */
.appointment-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 500px;
    background: #fff;
    border: 2px solid #d4af37;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.appointment-dialog.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.dialog-content {
    position: relative;
    padding: 40px;
    text-align: center;
}

.dialog-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #1a2a44;
    margin-bottom: 20px;
    position: relative;
}

.dialog-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #d4af37;
}

.dialog-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.dialog-btn {
    padding: 12px 30px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.dialog-btn:hover {
    background: #b8972e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

.dialog-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #1a2a44;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dialog-close:hover {
    transform: rotate(90deg);
    background: #f0f0f0;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 68, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.dialog-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Special Offer Pop-up */
.offer-popup {
    position: fixed;
    bottom: 80px; /* Above WhatsApp button */
    right: 20px;
    width: 350px;
    background: #fff;
    border: 2px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.offer-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-content {
    position: relative;
    padding: 25px;
    text-align: center;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a2a44;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-title i {
    color: #d4af37;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.popup-title i:hover {
    transform: scale(1.2);
}

.popup-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.popup-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #d4af37;
    color: #fff;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-btn:hover {
    background: #b8972e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #1a2a44;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
    background: #f0f0f0;
}

.offer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(26, 42, 68, 0.3); */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1001;
    pointer-events: none; /* Allow clicks to pass through */
}

.offer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Ensure pop-up remains interactive */
.offer-popup.active {
    pointer-events: auto;
}

/* Booking Form Styles */
.booking-hero {
    background: linear-gradient(rgba(26, 42, 68, 0.7), rgba(26, 42, 68, 0.7)), url('../assets/hotel.mp4') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 1s ease-in;
}

.booking-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.booking-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    opacity: 0.9;
}

.booking-form {
    padding: 60px 20px;
    background: #f5f5f5;
}

.booking-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a44;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.btn.primary {
    display: inline-block;
    padding: 12px 30px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary:hover {
    background: #b8972e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.cost-summary {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cost-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a2a44;
    margin-bottom: 20px;
}

.cost-summary p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.cost-summary p strong {
    color: #1a2a44;
}

/* Coupon Styles */
.coupon-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.coupon-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a44;
}

.coupon-btn {
    padding: 8px 20px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.coupon-btn:hover {
    background: #b8972e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

.coupon-btn[aria-pressed="true"] {
    background: #1a2a44;
}

.coupon-btn[aria-pressed="true"]:hover {
    background: #0f1a33;
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 60px 20px;
}

.success-message {
    max-width: 600px;
    margin: 0 auto;
}

.success-message h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a2a44;
    margin-bottom: 20px;
}

.success-message p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background: #fff;
    color: #333;
    padding: 60px 20px 20px;
    animation: fadeIn 1s ease-in;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #d4af37;
}

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

.footer-links ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-contact p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #d4af37;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    opacity: 0.7;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background: #20b354;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }
    .nav-links {
        gap: 25px;
    }
    .nav-links li a {
        font-size: 16px;
    }
    .appointment-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .appointment-dialog {
        width: 400px;
    }
    .dialog-title {
        font-size: 22px;
    }
    .dialog-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    .offer-popup {
        width: 300px;
    }
    .popup-title {
        font-size: 20px;
    }
    .popup-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .cost-summary {
        margin-top: 30px;
    }
    .coupon-label {
        font-size: 14px;
    }
    .coupon-btn {
        padding: 7px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        height: 75px;
    }
    .nav-container {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .navbar .logo img {
        height: 45px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .appointment-dialog {
        width: 300px;
    }
    .dialog-title {
        font-size: 20px;
    }
    .dialog-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .dialog-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .offer-popup {
        width: 280px;
        bottom: 70px;
    }
    .popup-title {
        font-size: 18px;
    }
    .popup-content p {
        font-size: 13px;
    }
    .popup-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    .booking-hero h1 {
        font-size: 36px;
    }
    .booking-hero p {
        font-size: 16px;
    }
    .form-container {
        padding: 30px;
    }
    .cost-summary {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 260px;
    }
    .mobile-menu ul li a {
        font-size: 18px;
    }
    .mobile-menu .appointment-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .appointment-dialog {
        width: 280px;
    }
    .dialog-content {
        padding: 30px;
    }
    .dialog-title {
        font-size: 18px;
    }
    .dialog-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    .offer-popup {
        width: 260px;
        bottom: 60px;
    }
    .popup-content {
        padding: 20px;
    }
    .popup-title {
        font-size: 16px;
    }
    .popup-content p {
        font-size: 12px;
    }
    .popup-btn {
        padding: 7px 12px;
        font-size: 11px;
    }
    .booking-hero {
        padding: 80px 15px;
    }
    .booking-hero h1 {
        font-size: 28px;
    }
    .booking-hero p {
        font-size: 14px;
    }
    .form-container {
        padding: 20px;
    }
    .form-group label {
        font-size: 14px;
    }
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }
    .btn.primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    .cost-summary h3 {
        font-size: 20px;
    }
    .cost-summary p {
        font-size: 14px;
    }
    .coupon-label {
        font-size: 13px;
    }
    .coupon-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .footer-contact p{
        justify-content: center;
    }
}