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

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-dark: #000000;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --gold: #d4af37;
    --gold-dark: #b8941e;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

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

.nav-tour-btn {
    background: var(--gold);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-tour-btn:hover {
    background: var(--primary-color);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
    height: 67px;
}

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

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: #000;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 58px;
    position: relative;
    padding: 4rem 0 140px;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid var(--gold);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 41px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover,
.slider-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin-bottom: 0;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 2rem;
    animation: fadeInUp 1.4s ease;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    animation: fadeInUp 1.6s ease;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem !important;
    opacity: 0.9;
    animation: fadeInUp 1.8s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 2s ease;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-color);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.hero-features {
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
    padding: 5.5rem 0px;
    margin-top: -60px;
    height: 167px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    z-index: 4;
    border-top: 2px solid var(--gold);
}

.hero-feature-item {
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}

.hero-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hero-feature-item:hover .feature-icon-circle {
    background: var(--gold);
    color: var(--primary-color);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-label {
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.btn-secondary {
    display: inline-block;
    padding: 11px 15px;
    background: var(--primary-color);
    color: var(--gold);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 0px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-color);
    border-color: var(--gold);
}

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

/* Sections */
section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-left {
    text-align: left;
    margin-bottom: 2rem;
}

.section-tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto;
}

.section-divider-left {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--white);
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image-gallery {
    position: relative;
    height: 500px;
    max-width: 1200px;
    margin: -140px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-1 {
    width: 180px;
    height: 120px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.gallery-item-2 {
    width: 220px;
    height: 160px;
    left: 165px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.gallery-item-3 {
    width: 400px;
    height: 280px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.gallery-item-4 {
    width: 220px;
    height: 160px;
    right: 165px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.gallery-item-5 {
    width: 180px;
    height: 120px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Features Section */
.features-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
    padding: 50px 0;
    border-top: 2px solid var(--gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.2);
}

.feature-box:hover .feature-icon-box {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-box h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
}

/* Rooms Section */
.rooms {
    background: var(--white);
    padding: 60px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
}

.room-header {
    padding: 1.5rem 2.5rem 0;
    text-align: center;
}

.room-header h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
}

.room-card.featured {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

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

.room-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin: 1rem 2.5rem;
}

.room-deluxe {
    background-image: url('img/room2.jpg');
}

.room-premium {
    background-image: url('img/DSC00020.jpg');
}

.room-suite {
    background-image: url('img/room1.jpg');
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-color);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-content {
    padding: 1.5rem 2.5rem 2.5rem;
}

.room-pricing {
    margin-bottom: 1.5rem;
}

.room-pricing h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.room-offers {
    margin-top: 1.5rem;
}

.room-offers h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.offers-list {
    list-style: none;
    padding: 0;
}

.offers-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.room-features-toggle {
    margin-bottom: 1rem;
    flex: 1;
}

.features-toggle-btn {
    width: 100%;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.features-toggle-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.room-features-list {
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
}

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

.room-actions {
    margin-top: 0rem;
    flex: 1;
}

.buy-now-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--gold);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-now-btn:hover {
    background: var(--primary-color);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.room-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.room-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--bg-light);
    padding: 6px 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
    border-left: 3px solid var(--gold);
    font-weight: 500;
}

.room-services {
    list-style: none;
    margin: 2rem 0;
}

.room-services li {
    padding: 0.7rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.check-icon {
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1rem;
}

/* Expertise Section */
.expertise {
    background: var(--white);
    padding: 50px 0;
}

.expertise-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.expertise-item-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 300px;
}

.expertise-item-new:nth-child(even) {
    direction: rtl;
}

.expertise-item-new:nth-child(even) > * {
    direction: ltr;
}

.expertise-image-new {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expertise-image-new:hover {
    transform: scale(1.05);
}

.expertise-room-img {
    background-image: url('img/Grand-Hotel.jpg');
}

.expertise-chef-img {
    background-image: url('img/DSC00141.jpg');
}

.expertise-restaurant-img {
    background-image: url('img/dinning2.jpg');
}

.expertise-gym-img {
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=600&q=80');
}

.expertise-details-new {
    padding: 2rem;
}

.expertise-details-new h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.expertise-details-new p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Amenities Section */
.amenities {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
    padding: 60px 0;
    border-top: 2px solid var(--gold);
}

.amenities .section-header p,
.amenities .section-header h2 {
    color: var(--gold);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.amenity-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    position: relative;
    border-radius: 10px;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.amenity-item:hover::before {
    width: 60%;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.2);
}

.amenity-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--gold);
}

.amenity-icon i {
    color: var(--gold);
}

.amenity-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Directions Section */
.directions {
    background: var(--bg-light);
    padding: 60px 0;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.direction-card {
    background: var(--white);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.direction-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.direction-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.direction-card p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.direction-card strong {
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
    padding: 60px 0;
    border-top: 2px solid var(--gold);
}

.faq .section-header p,
.faq .section-header h2 {
    color: var(--gold);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 128px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-right {
    width: 100%;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: rgba(212, 175, 55, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    position: relative;
    border-radius: 10px;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.faq-item:hover::before {
    width: 60%;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    height: 78px;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.3);
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--gold);
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.contact-left h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-align: left;
}

.contact-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details .contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.contact-details .contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-image-circle {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 289px;
}

.contact-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    color: #333;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #f7d71c;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px 30px;
    background: var(--gold);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .btn-primary:hover {
    background: var(--primary-color);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.contact-card-item {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-bottom: 3px solid var(--gold);
}

.contact-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: var(--white);
    border-color: var(--gold);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.contact-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-left {
    width: 100%;
}

.footer-right {
    width: 100%;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.footer-section h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-address {
    margin-top: 2rem;
}

.footer-address p {
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-map {
    margin-bottom: 2.5rem;
}

.footer-map h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--gold);
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.map-container {
    width: 100%;
    border: 3px solid var(--gold);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    height: 250px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .room-card.featured {
        transform: scale(1);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-right {
        margin-top: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left {
        margin-bottom: 2rem;
    }

    .faq-image {
        max-width: 300px;
        height: 300px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-list {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(212, 175, 55, 0.3);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 70vh;
        margin-top: 90px;
        padding: 3rem 0 120px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 160px;
        gap: 10px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .hero-content {
        margin-bottom: 0;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        gap: 2rem;
        padding: 2rem 1rem;
        flex-wrap: wrap;
    }
    
    .hero-feature-item {
        flex: 1;
        min-width: 140px;
        padding: 0 1rem;
    }
    
    .hero-feature-item:not(:last-child)::after {
        display: none;
    }
    
    .feature-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-number {
        font-size: 1.8rem;
    }
    
    .feature-label {
        font-size: 0.75rem;
    }

    .expertise-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-item-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .expertise-image-new {
        height: 250px;
        margin-bottom: 1.5rem;
    }

    .expertise-details-new {
        padding: 1rem;
    }

    .expertise-details-new h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .expertise-details-new p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

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

    .room-card.featured {
        transform: scale(1);
    }

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

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 250px;
    }

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

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

    .about-image-gallery {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .gallery-item {
        position: relative !important;
        width: 100% !important;
        height: 180px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-bottom: 0;
        border-radius: 8px;
        max-width: 350px;
    }

    .gallery-item:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 140px;
        gap: 8px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .hero-feature-item {
        width: 100%;
    }

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

    .logo-name {
        font-size: 1.1rem;
    }

    .logo svg {
        width: 35px;
        height: 35px;
    }
}
.image-slider-section {
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(to right, #ffffff, #ffffff);
    position: relative;
    margin-top: -130px;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

/* Image Box */
.slide {
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Big Image */
.big {
    width: 360px;
    height: 345px;
}

/* Small Image */
.small {
    width: 200px;
    height: 260px;
}

/* Hover Effect */
.slide:hover {
    transform: scale(1.06);
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}