
    
        :root {
            --primary: #c88a35;        /* Royal Gold / Amber Accent */
            --primary-dark: #9e6921;
            --dark-bg: #111111;
            --card-bg: #1c1c1c;
            --light-bg: #fdfbf7;
            --text-dark: #222222;
            --text-muted: #777777;
            --border-color: #e2d2ba;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .serif-font {
            font-family: 'Cinzel', serif;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* --- TOP BAR --- */
        .top-header-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
        }

        .top-bar {
            padding: 10px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #d1d1d1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .top-info {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .top-info span i {
            color: var(--primary);
            margin-right: 6px;
        }

        .top-social {
            display: flex;
            gap: 15px;
        }

        .top-social a {
            color: #fff;
            font-size: 0.9rem;
        }

        .top-social a:hover {
            color: var(--primary);
        }

        /* --- NAVIGATION --- */
        header {
            padding: 18px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-text h1 {
            color: #ffffff;
            font-size: 1.5rem;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .logo-text span {
            color: var(--primary);
            font-size: 0.72rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        nav {
            display: flex;
            gap: 25px;
        }

        nav a {
            color: #ffffff;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.82rem;
            letter-spacing: 1.5px;
            position: relative;
            padding: 5px 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--primary);
            transition: 0.3s;
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        nav a:hover, nav a.active {
            color: var(--primary);
        }

        /* --- HERO SLIDER --- */
        .hero-slider-container {
            position: relative;
            width: 100%;
            height: 90vh;
            min-height: 620px;
            overflow: hidden;
            background-color: #0d0d0d;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.2s ease-in-out, transform 6s ease-out;
            transform: scale(1.05);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 80px;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
        }

        .slide-content {
            position: relative;
            z-index: 5;
            text-align: center;
            color: #ffffff;
            max-width: 900px;
            padding: 0 20px;
        }

        .slide-content h3 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
        }

        .slide-content p {
            font-size: 1.15rem;
            margin-bottom: 30px;
            color: #e2e2e2;
            font-weight: 300;
        }

        .btn-gold {
            display: inline-block;
            background: var(--primary);
            color: #ffffff;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 2px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            border: 1px solid var(--primary);
        }

        .btn-gold11:hover {
            background: transparent;
            color: #ffffff;
            border-color: #ffffff;
        }

        /* Slider Controls */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .slider-arrow:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .arrow-prev { left: 25px; }
        .arrow-next { right: 25px; }

        /* --- QUICK BOOKING BAR --- */
        .quick-booking-bar {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            width: 88%;
            max-width: 1100px;
            background: rgba(28, 28, 28, 0.95);
            backdrop-filter: blur(8px);
            padding: 20px 30px;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid rgba(200, 138, 53, 0.3);
        }

        .quick-form {
            display: flex;
            gap: 18px;
            align-items: flex-end;
            flex-wrap: wrap;
        }

        .booking-field {
            flex: 1;
            min-width: 160px;
        }

        .booking-field label {
            display: block;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .booking-field input, .booking-field select {
            width: 100%;
            padding: 10px;
            background: #2b2b2b;
            border: 1px solid #444;
            color: #fff;
            border-radius: 2px;
            outline: none;
            font-size: 0.85rem;
        }

        .booking-field input:focus, .booking-field select:focus {
            border-color: var(--primary);
        }

        /* --- SECTIONS COMMON --- */
        section {
            padding: 80px 8%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header span {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.82rem;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--primary);
        }

        /* --- ABOUT SECTION --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #333;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-images img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* --- ROOMS SECTION --- */
        .rooms-section {
            background-color: #f7f3ed;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .room-card {
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: 0.3s;
        }

        .room-card:hover {
            transform: translateY(-5px);
        }

        .room-img {
            height: 230px;
            overflow: hidden;
            position: relative;
        }

        .room-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .room-card:hover .room-img img {
            transform: scale(1.08);
        }

        .room-info {
            padding: 25px;
        }

        .room-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .room-info p {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-bottom: 18px;
        }

        .room-amenities {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 0.8rem;
            color: #555;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .room-amenities span i {
            color: var(--primary);
            margin-right: 4px;
        }

        /* --- AMENITIES / SERVICES --- */
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .amenity-card {
            text-align: center;
            padding: 35px 20px;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            transition: 0.3s;
        }

        .amenity-card:hover {
            background: var(--dark-bg);
            color: #fff;
            border-color: var(--dark-bg);
        }

        .amenity-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .amenity-card h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .amenity-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .amenity-card:hover p {
            color: #aaa;
        }

        /* --- GALLERY --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            height: 220px;
            overflow: hidden;
            border-radius: 4px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* --- TESTIMONIALS --- */
        .testimonials-section {
            background: #111;
            color: #fff;
        }

        .testimonials-section .section-header h2 {
            color: #fff;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: #1c1c1c;
            padding: 30px;
            border-radius: 4px;
            border-left: 3px solid var(--primary);
        }

        .testimonial-card p {
            font-style: italic;
            color: #ccc;
            margin-bottom: 20px;
            font-size: 0.92rem;
        }

        .client-info h5 {
            color: var(--primary);
            font-size: 1rem;
        }

        .client-info span {
            font-size: 0.78rem;
            color: #777;
        }

        /* --- FOOTER --- */
        footer {
            background: #090909;
            color: #aaa;
            padding: 70px 8% 20px 8%;
            border-top: 2px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background: var(--primary);
        }

        .footer-col p {
            font-size: 0.88rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 0.88rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.88rem;
        }

        .footer-contact li i {
            color: var(--primary);
            margin-top: 4px;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #222;
            padding-top: 20px;
            font-size: 0.8rem;
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-grid { grid-template-columns: 1fr; }
            .hero-slide { padding-top: 100px; }
            .slide-content h1 { font-size: 2.5rem; }
        }

        @media (max-width: 768px) {
            .top-header-wrapper { position: relative; background: #111; }
            .top-bar { flex-direction: column; gap: 8px; text-align: center; }
            header { flex-direction: column; gap: 15px; text-align: center; }
            nav { flex-wrap: wrap; justify-content: center; }
            .hero-slider-container { height: auto; min-height: 450px; }
            .quick-booking-bar { position: relative; bottom: 0; left: 0; transform: none; width: 100%; margin-top: 20px; }
            .slide-content h1 { font-size: 1.8rem; }
        }
    