/* ===== CSS CUSTOM PROPERTIES ===== */
        :root {
            --gold: #b8860b;
            --gold-light: #d4a843;
            --gold-dark: #8b6508;
            --dark: #1a1a1a;
            --dark-secondary: #333333;
            --text: #555555;
            --text-light: #777777;
            --white: #ffffff;
            --cream: #faf8f5;
            --cream-dark: #f0ece6;
            --border: #e8e4df;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Poppins', 'Segoe UI', sans-serif;
            --transition: 0.3s ease;
        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== SECTION TITLES ===== */
        .section-label {
            font-family: var(--font-heading);
            font-style: italic;
            font-size: 1.1rem;
            color: var(--gold);
            text-align: center;
            margin-bottom: 5px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark);
            text-align: center;
            margin-bottom: 50px;
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.82rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .top-bar-left a {
            color: #cccccc;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .top-bar-left a:hover {
            color: var(--gold-light);
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .top-bar-right span {
            color: #cccccc;
            margin-right: 5px;
        }

        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            font-size: 0.75rem;
            transition: background var(--transition);
        }

        .social-icons a:hover {
            background: var(--gold);
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
        }

        .logo-text h2 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--dark);
            line-height: 1.2;
        }

        .logo-text h2 span {
            color: var(--gold);
        }

        .logo-text p {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--dark-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-book {
            background: var(--gold);
            color: var(--white);
            padding: 10px 22px;
            border: none;
            border-radius: 4px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background var(--transition);
        }

        .btn-book:hover {
            background: var(--gold-dark);
        }

        .btn-login {
            background: transparent;
            color: var(--dark);
            padding: 10px 22px;
            border: 2px solid var(--dark);
            border-radius: 4px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all var(--transition);
        }

        .btn-login:hover {
            background: var(--dark);
            color: var(--white);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--dark);
            transition: var(--transition);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 520px;
            overflow: hidden;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content {
            color: var(--white);
            z-index: 2;
        }

        .hero-content .script-text {
            font-family: var(--font-heading);
            font-style: italic;
            font-size: 1.6rem;
            color: var(--gold-light);
            margin-bottom: 10px;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 700;
            letter-spacing: 6px;
            text-transform: uppercase;
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.15);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 5;
            transition: all var(--transition);
        }

        .hero-arrow:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .hero-arrow.prev {
            left: 30px;
        }

        .hero-arrow.next {
            right: 30px;
        }

        /* ===== BOOKING FORM ===== */
        .booking-section {
            margin-top: -60px;
            position: relative;
            z-index: 10;
            padding: 0 20px;
        }

        .booking-form {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 30px 35px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            align-items: end;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-light);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select {
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.88rem;
            color: var(--dark);
            background: var(--white);
            transition: border-color var(--transition);
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--gold);
        }

        .form-group input::placeholder {
            color: #aaa;
        }

        .btn-submit {
            background: var(--dark);
            color: var(--white);
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background var(--transition);
            height: 46px;
        }

        .btn-submit:hover {
            background: var(--gold);
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 90px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-content .script-text {
            font-family: var(--font-heading);
            font-style: italic;
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .about-content h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-content p {
            color: var(--text);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .btn-read-more {
            display: inline-block;
            background: var(--dark);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
            transition: background var(--transition);
        }

        .btn-read-more:hover {
            background: var(--gold);
        }

        /* ===== LOCATIONS SECTION ===== */
        .locations-section {
            padding: 90px 0;
            background: var(--cream);
        }

        .locations-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .location-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .location-card-img {
            position: relative;
            height: 260px;
            overflow: hidden;
        }

        .location-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .location-card:hover .location-card-img img {
            transform: scale(1.05);
        }

        .location-card-body {
            padding: 25px;
        }

        .location-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .location-card-header h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--dark);
        }

        .location-card-header .room-count {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .location-card-body p {
            font-size: 0.88rem;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .location-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            color: var(--dark);
        }

        .rating .star {
            color: var(--gold);
        }

        .btn-view-details {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .btn-view-details:hover {
            color: var(--gold-dark);
        }

        /* ===== AMENITIES SECTION ===== */
        .amenities-section {
            padding: 90px 0;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 22px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 6px;
            transition: all var(--transition);
        }

        .amenity-item:hover {
            border-color: var(--gold);
            box-shadow: 0 2px 12px rgba(184,134,11,0.1);
        }

        .amenity-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .amenity-item span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark-secondary);
        }

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            padding: 90px 0;
            background: var(--cream);
        }

        .gallery-caption {
            text-align: center;
            font-family: var(--font-heading);
            font-style: italic;
            font-size: 1.15rem;
            color: var(--text);
            margin-bottom: 40px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* ===== BLOG SECTION ===== */
        .blog-section {
            padding: 90px 0;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .blog-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-card-img {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .blog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-img img {
            transform: scale(1.05);
        }

        .blog-date-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--white);
            padding: 8px 14px;
            border-radius: 4px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .blog-date-badge .month {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--dark);
        }

        .blog-date-badge .day {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }

        .blog-card-body {
            padding: 25px;
            position: relative;
        }

        .blog-category {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .blog-card-body h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 0.78rem;
            color: var(--text-light);
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .btn-read-more-center {
            display: block;
            margin: 0 auto;
            background: var(--white);
            color: var(--dark);
            padding: 12px 35px;
            border: 2px solid var(--dark);
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all var(--transition);
        }

        .btn-read-more-center:hover {
            background: var(--dark);
            color: var(--white);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: #aaaaaa;
            padding: 25px 0;
        }

        .footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer p {
            font-size: 0.85rem;
        }

        .footer-links {
            display: flex;
            gap: 25px;
        }

        .footer-links a {
            font-size: 0.85rem;
            color: #aaaaaa;
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 44px;
            height: 44px;
            background: var(--gold);
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
        }

        /* ===== RESPONSIVE: 1024px ===== */
        @media (max-width: 1024px) {
            .booking-form {
                grid-template-columns: repeat(3, 1fr);
            }

            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .hero-content h1 {
                font-size: 3rem;
            }
        }

        /* ===== RESPONSIVE: 768px ===== */
        @media (max-width: 768px) {
            .top-bar .container {
                justify-content: center;
                text-align: center;
            }

            .top-bar-left {
                justify-content: center;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-actions {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                height: 380px;
            }

            .hero-content h1 {
                font-size: 2rem;
                letter-spacing: 3px;
            }

            .hero-content .script-text {
                font-size: 1.1rem;
            }

            .booking-form {
                grid-template-columns: 1fr 1fr;
                padding: 20px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-image img {
                height: 300px;
            }

            .locations-grid {
                grid-template-columns: 1fr;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .footer .container {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .booking-form {
                grid-template-columns: 1fr;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }