/* removed full-page overlay per latest requirement */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FDFBF7;
    color: #2E2E2E;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #B38E0A;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #B38E0A, #5AA6A9);
}

/* Luxury Intro Text Styling */
.luxury-intro-text {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.elegant-paragraph {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #2E2E2E;
    line-height: 1.6;
    margin: 0;
    position: relative;
    font-style: italic;
    letter-spacing: 0.3px;
}

.elegant-paragraph::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #BFA14A, transparent);
}

.elegant-paragraph::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #BFA14A, transparent);
}

.luxury-intro-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 161, 74, 0.3), transparent);
}

.luxury-intro-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 161, 74, 0.3), transparent);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 40px;
}

.nav-logo h2 {
    color: #B38E0A;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0 auto;
    transform: scale(1.8);
}

.navbar.scrolled .logo-img {
    height: 70px;
    max-width: 250px;
    transform: scale(2);
}


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

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 6px 0;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #D4AF37;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navigation Button Styling */
.nav-button {
    background: #D4AF37;
    color: #000000 !important;
    padding: 8px 20px !important;
    border-radius: 6px;
    font-weight: 500 !important;
    border: 2px solid #D4AF37;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.nav-button:hover {
    background: #000000;
    color: #D4AF37 !important;
    border-color: #000000;
    transform: translateY(-1px);
}

.nav-button.active {
    background: #B38E0A;
    color: #000000 !important;
    border-color: #B38E0A;
}

.nav-button::after {
    display: none;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1200;
    padding: 8px;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 0;
}

.bar {
    width: 25px;
    height: 2px;
    background: #D4AF37;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(15px);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Mobile menu overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
        color: #FFFFFF;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-button {
        margin: 15px 0 !important;
        padding: 22px 35px !important;
        font-size: 0.7rem !important;
        border-radius: 10px !important;
        width: 98% !important;
        text-align: center !important;
        min-height: 70px !important;
        line-height: 1.3 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .navbar {
        padding: 0;
    }
    
    .navbar.scrolled {
        padding: 0;
    }
    
    .logo-img {
        height: 60px;
        max-width: 200px;
        transform: scale(1.2);
    }
    
    .navbar.scrolled .logo-img {
        height: 40px;
        max-width: 150px;
        transform: scale(1);
    }
    
    .hero-content {
        margin-top: -20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button.cta-primary,
    .cta-button.cta-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 2.2rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-button {
        padding: 7px 18px !important;
        font-size: 0.7rem;
        border-radius: 6px;
    }
    
    .logo-img {
        height: 100px;
        max-width: 350px;
        transform: scale(1.7);
    }
    
    .navbar.scrolled .logo-img {
        height: 65px;
        max-width: 230px;
        transform: scale(1);
    }
    
    .hero-content {
        margin-top: -40px;
    }
}

/* Hero Section */
.home-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    margin-top: -50px;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.hero-heading-top {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #FDFBF7;
    text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

.hero-heading-main {
    font-family: 'Gloock', serif;
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.04;
    letter-spacing: 0.1px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}

.hero-content p {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.22rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.15px;
    line-height: 1.65;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}

/* Mobile enhancement: larger hero heading on small screens */
@media (max-width: 480px) {
    .hero-heading .hero-heading-main {
        font-size: clamp(2.75rem, 9.5vw, 4rem);
        line-height: 1.08;
        letter-spacing: 0px;
    }
    .mobile-break { display: inline; }
    .hero-content { padding: 0 12px; }
}

/* Hide the forced break on larger screens */
@media (min-width: 481px) {
    .mobile-break { display: none; }
}

/* Extra-small phones */
@media (max-width: 360px) {
    .hero-heading .hero-heading-main {
        font-size: clamp(2.5rem, 10.5vw, 3.5rem);
        line-height: 1.07;
    }
}

/* Page Hero Section */
.page-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-hero .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.page-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero .hero-content h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.booking-hero .hero-content h1 {
    margin-top: 7rem;
}

.modify-hero .hero-content h1 {
    margin-top: 7rem;
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: #B38E0A;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B38E0A, #6E5316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
}

.step-content h2 {
    font-size: 2.5rem;
    color: #B38E0A;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 500px;
}

/* CTA Button */
.cta-button {
    background: #B38E0A;
    color: #000000;
    border: 2px solid #B38E0A;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 0 0 rgba(179, 142, 10,0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #B38E0A;
    border-color: #B38E0A;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(179, 142, 10, 0.5);
}

/* Hero Button Styles */
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 1.8rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button.cta-primary {
    background: #D4AF37;
    color: #000000;
    border: 2px solid #D4AF37;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 25px;
}

.cta-button.cta-primary:hover {
    background: transparent;
    color: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 25px;
}

.cta-button.cta-secondary:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.prev-btn,
.next-btn {
    background: rgba(179, 142, 10, 0.2);
    border: 2px solid #B38E0A;
    color: #B38E0A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: #B38E0A;
    color: #000000;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(179, 142, 10, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #B38E0A;
    transform: scale(1.2);
}

/* How it Works Section */
.how-it-works {
    padding: 100px 0;
    background: #FAFAFA;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 142, 10, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #B38E0A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #B38E0A;
    border: 2px solid #B38E0A;
}

.step-card h3 {
    color: #1C1C1C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-card p {
    color: #666666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0 120px 0;
    background: #FFFFFF;
    position: relative;
}

.features-alternating {
    margin-top: 4rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}


.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-content {
    direction: ltr;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-content {
    padding: 0 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #B38E0A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.feature-content h3 {
    font-family: 'Gloock', serif;
    font-size: 2.2rem;
    color: #1E1E1E;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2E2E2E;
    letter-spacing: 0.3px;
}

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

/* Convention Centers Section - Modern Carousel */
.convention-centers {
    padding: 30px 0;
    background: #FAFAFA;
    margin-top: -2rem;
}

.hotels-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.hotels-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    letter-spacing: -0.02em;
}

.hotels-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #B38E0A, #5AA6A9);
    border-radius: 2px;
}

.hotels-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555555;
    font-weight: 400;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hotels-subtitle strong {
    color: #555555;
    font-weight: 600;
}

.hotels-subtitle .intro-em {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.1em;
}

.convention-centers .container {
    max-width: 1400px;
    padding: 0 40px;
}

@media (min-width: 1400px) {
    .convention-centers .container {
        max-width: 1600px;
        padding: 0 60px;
    }
}

.carousel-container {
    margin-top: 3rem;
    max-width: 100%;
    padding: 0 20px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.convention-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.convention-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.convention-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.convention-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 10px 14px;
    background: rgba(255,255,255,0.92);
    height: auto;
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
}

.card-title {
    font-family: 'Gloock', 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.book-btn {
    border: 1px solid #B38E0A;
    background: #B38E0A;
    color: #000000;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.book-btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.card-location {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #B38E0A;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 2px solid #B38E0A;
    color: #B38E0A;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #B38E0A;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(179, 142, 10,0.4);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(179, 142, 10,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dots .dot.active {
    background: #B38E0A;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(179, 142, 10,0.6);
}

.carousel-dots .dot:hover {
    background: rgba(179, 142, 10,0.7);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .convention-card {
        height: 520px;
    }
    
    .card-content {
        padding: 10px 14px;
    }
    
    .card-title {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .convention-centers .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .convention-centers .section-title {
        padding: 0 20px;
        margin-bottom: 0;
    }
    
    .hotels-header {
        margin-bottom: 3rem;
        padding: 0 15px;
    }
    
    .hotels-title {
        font-size: 3.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hotels-title::after {
        width: 80px;
    }
    
    .hotels-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .luxury-intro-text {
        padding: 0 15px;
        margin-bottom: 1rem;
    }
    
    .elegant-paragraph {
        font-size: 1.5rem;
        letter-spacing: 0.2px;
    }
    
    .carousel-container {
        margin-top: 2rem;
        padding: 0 10px;
    }
    
    .carousel-wrapper {
        margin: 0;
        border-radius: 20px;
        box-shadow: 0 25px 80px rgba(0,0,0,0.1);
    }
    
    .convention-card {
        height: 420px;
        border-radius: 20px;
        margin: 0;
    }
    
    .card-image {
        height: 75%;
    }
    
    .card-content {
        padding: 10px 14px;
        height: auto;
        left: 16px;
        bottom: 16px;
    }
    
    .card-title {
        font-size: 0.95rem;
        line-height: 1.25;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 82vw;
    }
    .book-btn { flex: 0 0 auto; }
    
    .card-location {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .carousel-dots {
        margin-top: 25px;
        gap: 10px;
    }
    
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .luxury-intro-text {
        padding: 0 10px;
        margin-bottom: 0.8rem;
    }
    
    .elegant-paragraph {
        font-size: 1.3rem;
        letter-spacing: 0.1px;
    }
    
    .convention-card {
        height: 360px;
    }
    
    .card-image {
        height: 75%;
    }
    
    .card-content {
        padding: 8px 12px;
        height: auto;
        left: 12px;
        bottom: 12px;
    }
    
    .card-title {
        font-size: 0.9rem;
        line-height: 1.25;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 78vw;
        margin-bottom: 0;
    }
    .card-content { max-width: 90%; }
    .book-btn { padding: 6px 9px; font-size: 0.78rem; }
    
    .card-location {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }
    
    .prev-btn {
        left: 8px;
    }
    
    .next-btn {
        right: 8px;
    }
}

/* Partner With Us Section */
.partner-with-us {
    padding: 100px 0;
    background: #ffffff;
}

.partner-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #B38E0A;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.partner-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
    letter-spacing: -0.02em;
}

.partner-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #B38E0A, #5AA6A9);
    border-radius: 2px;
}

.partner-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555555;
    font-weight: 400;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partner-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.partner-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.partner-content-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.content-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.content-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #B38E0A;
    margin: 0;
    letter-spacing: 0.5px;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(1100px 400px at 10% 0%, rgba(179,142,10,0.25), transparent 60%),
                radial-gradient(1000px 500px at 90% 100%, rgba(90,166,169,0.25), transparent 60%),
                linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

/* Intro Section */
.intro-section {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #FDFBF7 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(900px 300px at 10% 0%, rgba(179,142,10,0.08), transparent 60%),
                radial-gradient(800px 280px at 90% 100%, rgba(90,166,169,0.06), transparent 60%);
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    animation: slideInLeft 1s ease-out;
}

.intro-title {
    font-family: 'Gloock', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1E1E1E;
    margin-bottom: 2rem;
    position: relative;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    border-radius: 2px;
}

.intro-paragraphs p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

.intro-em {
    font-family: 'Gloock', serif;
    color: #D4AF37;
    font-weight: 600;
    position: relative;
}

.intro-image {
    animation: slideInRight 1s ease-out;
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    margin-top: 2rem;
    margin-right: -1rem;
    width: calc(100% + 1rem);
}

.intro-image img:hover {
    transform: scale(1.02);
}

.intro-image .intro-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2E2E2E;
    margin-top: 2rem;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    font-weight: 400;
    text-align: left;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin-right: -1rem;
    width: calc(100% + 1rem);
}

.intro-image .intro-paragraph::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    border-radius: 0 0 12px 12px;
}

.intro-image .intro-paragraph:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.intro-image .intro-paragraph:hover::after {
    background: linear-gradient(90deg, #B38E0A, #D4AF37);
}

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

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

/* Responsive Styles for Intro Section */
@media (max-width: 768px) {
    .intro-section { 
        padding: 80px 0 60px; 
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-paragraphs p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .intro-image img {
        height: 300px;
        margin-top: 1rem;
        margin-right: 0;
        width: 100%;
    }
    
    .intro-image .intro-paragraph {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        padding: 1.25rem 1rem;
        border-radius: 10px;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .intro-section { 
        padding: 60px 0 40px; 
    }
    
    .intro-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .intro-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .intro-paragraphs p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .intro-image img {
        height: 250px;
        margin-top: 0.5rem;
        margin-right: 0;
        width: 100%;
    }
    
    .intro-image .intro-paragraph {
        font-size: 1rem;
        margin-top: 1.25rem;
        padding: 1rem 0.875rem;
        border-radius: 8px;
        margin-right: 0;
        width: 100%;
    }
}

/* Premium Statement Section */
.premium-statement {
    padding: 3rem 0 2rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.premium-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px 200px at 50% 0%, rgba(199, 160, 8, 0.08), transparent 70%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.03) 100%);
    z-index: 1;
}

.premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.premium-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 1s ease-out 0.3s forwards;
}

.premium-text strong {
    font-weight: 600;
    color: #000000;
}

.premium-text .highlight {
    color: #c7a008;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.premium-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c7a008, #D4AF37);
    border-radius: 1px;
    opacity: 0.8;
}

.premium-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 1s ease-out 0.6s forwards;
    position: relative;
}

.premium-tagline::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c7a008, #D4AF37);
    border-radius: 1px;
}

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

/* Responsive Styles for Premium Statement */
@media (max-width: 768px) {
    .premium-statement {
        padding: 2.5rem 0 1.5rem 0;
    }
    
    .premium-content {
        padding: 0 1.5rem;
    }
    
    .premium-text {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .premium-tagline {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .premium-statement {
        padding: 2rem 0 1rem 0;
    }
    
    .premium-content {
        padding: 0 1rem;
    }
    
    .premium-text {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
    
    .premium-tagline {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

/* Responsive Styles for Why Choose Us Section */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 0 80px 0;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-content {
        padding: 0;
    }
    
    .feature-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 30px 0 60px 0;
    }
    
    .feature-row {
        margin-bottom: 50px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .feature-image img {
        height: 200px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
}

/* Responsive Styles for Hero Buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-button.cta-primary,
    .cta-button.cta-secondary {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 12px;
    }
    
    .cta-button.cta-primary,
    .cta-button.cta-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(179,142,10,0.6);
    color: #B38E0A;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.cta-title {
    font-family: 'Gloock', 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.cta-subtitle {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #DDDDDD;
    margin-bottom: 26px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.cta-banner .cta-button.cta-primary {
    background: #B38E0A;
    color: #000000;
    border: 2px solid #B38E0A;
    padding: 14px 28px;
    font-weight: 700;
}

.cta-banner .cta-button.cta-primary:hover {
    background: transparent;
    color: #B38E0A;
    border-color: #B38E0A;
}

@media (max-width: 768px) {
    .partner-with-us {
        padding: 80px 0;
    }
    
    .partner-intro {
        margin-bottom: 3rem;
        padding: 0 20px;
    }
    
    .partner-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .partner-title::after {
        width: 80px;
    }
    
    .partner-description {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .partner-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .partner-image-card img {
        height: 300px;
    }
    
    .partner-content-card {
        padding: 50px 30px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-banner { padding: 80px 0; }
    .cta-title { font-size: 2.2rem; }
    .cta-subtitle { font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .cta-banner { padding: 70px 0; }
    .cta-title { font-size: 1.9rem; }
    .cta-subtitle { font-size: 1rem; }
}

/* About Section - Premium Modern Design */
.about-section {
    padding: 100px 0;
    background: #FDFBF7;
    color: #2E2E2E;
    position: relative;
    line-height: 1.8;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Enhanced Hero Section with Integrated Metrics */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-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.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 15vh;
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #F5F5F5;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.hero-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.12);
    padding: 30px 35px;
    border-radius: 20px;
    backdrop-filter: blur(25px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 250px;
    height: 160px;
    animation: floatIn 1s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    flex: 0 0 250px;
}

.hero-metric:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-metric:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-metric:nth-child(3) {
    animation-delay: 0.9s;
}

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

.hero-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.hero-metric:hover::before {
    left: 100%;
}

.hero-metric:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    border-color: rgba(212, 175, 55, 0.6);
}

.metric-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #D4AF37, #B38E0A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.metric-icon:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.metric-content {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.metric-number {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    letter-spacing: -0.3px;
}

.metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Vision & Mission Side by Side */
.vision-mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 20px 0 100px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

.vision-mission-container::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.vision-section,
.mission-section {
    position: relative;
    padding: 50px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 2px solid transparent;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

.vision-section {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 100%);
}

.mission-section {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #FFFFFF 0%, #F3F4F6 100%);
}

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

.vision-section::before,
.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    z-index: 1;
}

/* .vision-section::after,
.mission-section::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(179, 142, 10, 0.1));
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s ease;
} */

.vision-section:hover::after,
.mission-section:hover::after {
    transform: scale(1.2);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(179, 142, 10, 0.2));
}

.vision-section:hover,
.mission-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.section-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin: 0 auto 25px;
}

.vision-icon {
    background: linear-gradient(135deg, #D4AF37, #B38E0A);
}

.mission-icon {
    background: linear-gradient(135deg, #B38E0A, #D4AF37);
}

.section-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.section-icon:hover::before {
    left: 100%;
}

.section-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.5);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.section-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2E2E2E;
    font-weight: 400;
    margin: 0;
    text-align: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Vision Section */
.vision-section {
    margin: 100px 0;
    padding: 80px 0;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.vision-text {
    position: relative;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #B38E0A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.section-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2E2E2E;
    font-weight: 400;
}

.vision-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    margin: 100px 0;
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D4AF37, #B38E0A);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-text {
    position: relative;
    order: 2;
}

.mission-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    order: 1;
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

/* Enhanced Features Showcase */
.features-showcase {
    margin: 100px 0;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    border-radius: 2px;
}

.showcase-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #666666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 80px 0;
    position: relative;
    border-radius: 30px;
    transition: all 0.4s ease;
}

.feature-block:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse .feature-content,
.feature-block.reverse .feature-image {
    direction: ltr;
}

.feature-block:nth-child(even) {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    padding: 80px 60px;
}

.feature-content {
    position: relative;
    padding: 20px 0;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
    line-height: 1;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    border-radius: 2px;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2E2E2E;
    font-weight: 400;
    margin-bottom: 30px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: linear-gradient(135deg, #D4AF37, #B38E0A);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.feature-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.feature-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.image-badge:hover {
    transform: scale(1.05);
    background: #D4AF37;
    color: #FFFFFF;
}

.image-badge i {
    font-size: 1rem;
}

/* About Hero Section - Magazine Style */
.about-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.services-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    max-width: 1000px;
    padding: 0 20px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #F5F5F5;
    line-height: 1.7;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #B38E0A, #D4AF37);
    margin: 3rem auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(179, 142, 10, 0.3);
}

/* About Article - Luxury Magazine Layout */
.about-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.about-article::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #BFA14A, #D4AF37);
    border-radius: 2px;
}

/* Vision & Mission Article - Luxury Vertical Stack */
.vision-mission-article {
    margin-bottom: 8rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.vision-article,
.mission-article {
    margin-bottom: 5rem;
    padding: 3rem 0;
    position: relative;
    text-align: left;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #BFA14A, rgba(191, 161, 74, 0.3)) 1;
    padding-left: 2rem;
}

.vision-article::before,
.mission-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 161, 74, 0.3), transparent);
}

.article-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-heading i {
    color: #BFA14A;
    font-size: 1.5rem;
    background: rgba(191, 161, 74, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.article-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #BFA14A;
    border-radius: 1px;
}

.vision-article p,
.mission-article p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2E2E2E;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

/* Feature Article Sections - Luxury Magazine Style */
.about-features-article {
    margin-bottom: 8rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-article-section {
    margin-bottom: 4rem;
    padding: 2.5rem 0;
    position: relative;
    text-align: left;
    border-left: 2px solid transparent;
    border-image: linear-gradient(180deg, #BFA14A, rgba(191, 161, 74, 0.2)) 1;
    padding-left: 1.5rem;
}

.feature-article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 161, 74, 0.2), transparent);
}

.feature-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

.feature-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #BFA14A;
    border-radius: 1px;
}

.feature-article-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2E2E2E;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

/* Testimonials Ultra Luxury Styling */
.testimonials {
    margin-top: 6rem;
    padding: 4rem 0;
    background: #F8F8F8;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #BFA14A, #D4AF37);
}

.testimonials-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E2E2E;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.testimonials-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.testimonials-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #BFA14A, #D4AF37);
    border-radius: 2px;
}

.luxury-quote {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #BFA14A;
    position: absolute;
    top: -10px;
    left: -20px;
    line-height: 1;
    font-weight: 700;
    opacity: 0.4;
}

.luxury-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2E2E2E;
    font-style: italic;
    margin: 0;
    padding-left: 2.5rem;
    font-weight: 400;
    position: relative;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #BFA14A;
    margin: 1.5rem 0 0 2.5rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design - Premium Modern */
/* Laptop Optimization */
@media (min-width: 1025px) {
    .hero-metrics {
        gap: 8px;
        max-width: 100%;
        flex-wrap: nowrap;
        padding: 0 10px;
        justify-content: center;
    }
    
    .hero-metric {
        width: 150px;
        height: 150px;
        padding: 20px 25px;
        flex: 0 0 150px;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        height: 100vh;
    }
    
    .services-hero {
        height: 80vh;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .hero-metrics {
        gap: 6px;
        max-width: 100%;
        flex-wrap: nowrap;
        padding: 0 10px;
        justify-content: center;
    }
    
    .hero-metric {
        padding: 18px 22px;
        width: 140px;
        height: 140px;
        flex: 0 0 140px;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .metric-number {
        font-size: 1.4rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .vision-mission-container {
        gap: 50px;
        margin: 15px 0 80px 0;
    }
    
    .vision-section,
    .mission-section {
        padding: 40px 30px;
    }
    
    .section-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .feature-block {
        gap: 60px;
        padding: 60px 0;
        margin-bottom: 80px;
    }
    
    .feature-title {
        font-size: 2.2rem;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 100vh;
        min-height: 500px;
        padding: 20px 0;
    }
    
    .services-hero {
        height: 70vh;
        min-height: 400px;
        padding: 20px 0;
    }
    
    .about-hero-content {
        padding: 0 15px;
        margin-top: 10vh;
        min-height: 40vh;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-metrics {
        flex-direction: row;
        gap: 15px;
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-metric {
        padding: 20px 25px;
        width: 180px;
        height: 130px;
        flex: 0 0 180px;
    }
    
    .metric-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .metric-number {
        font-size: 1.3rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 10px 0 70px 0;
        padding: 0 15px;
    }
    
    .vision-section,
    .mission-section {
        padding: 35px 25px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.05rem;
    }
    
    .features-showcase {
        margin: 60px 0;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        padding: 40px 0;
    }
    
    .feature-block.reverse {
        direction: ltr;
    }
    
    .feature-block:nth-child(even) {
        padding: 40px 20px;
    }
    
    .feature-number {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .feature-image img {
        height: 300px;
    }
    
    .image-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .testimonials-heading {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .luxury-quote p {
        font-size: 1rem;
        padding-left: 2rem;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -8px;
        left: -15px;
    }
    
    .author-name {
        margin-left: 2rem;
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 100vh;
        min-height: 400px;
        padding: 15px 0;
    }
    
    .about-hero-content {
        padding: 0 10px;
        margin-top: 8vh;
        min-height: 35vh;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .about-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
        margin-bottom: 20px;
    }
    
    .hero-metrics {
        gap: 12px;
        margin-top: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .hero-metric {
        padding: 18px 22px;
        width: 160px;
        height: 120px;
        flex: 0 0 160px;
    }
    
    .metric-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .metric-number {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .vision-mission-container {
        gap: 30px;
        margin: 5px 0 60px 0;
        padding: 0 10px;
    }
    
    .vision-section,
    .mission-section {
        padding: 30px 20px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-showcase {
        margin: 40px 0;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .feature-block {
        margin-bottom: 40px;
        padding: 30px 0;
    }
    
    .feature-block:nth-child(even) {
        padding: 30px 15px;
    }
    
    .feature-number {
        font-size: 2.5rem;
        top: -10px;
        left: -10px;
    }
    
    .feature-title {
        font-size: 1.6rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .feature-image img {
        height: 250px;
    }
    
    .image-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .testimonials-heading {
        font-size: 1.6rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .luxury-quote p {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
    
    .quote-mark {
        font-size: 2.5rem;
        top: -6px;
        left: -12px;
    }
    
    .author-name {
        margin-left: 1.5rem;
        font-size: 1rem;
        letter-spacing: 0.2px;
    }
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision,
.mission {
    background: #ffffff;
    border: 1px solid #E0E0E0;
    padding: 2rem;
    border-radius: 10px;
}

.vision h3,
.mission h3 {
    color: #B38E0A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vision p,
.mission p {
    color: #666666;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 4rem;
}

.feature-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #B38E0A;
    border-radius: 0 10px 10px 0;
}

.feature-section h3 {
    color: #B38E0A;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.feature-section p {
    color: #666666;
    line-height: 1.8;
}

.feature-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.detail-item h4 {
    color: #B38E0A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: #666666;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    text-align: center;
    color: #B38E0A;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #E0E0E0;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}


.testimonial-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author h4 {
    color: #1E1E1E;
    margin-bottom: 0;
    font-size: 1.3rem;
    font-family: 'Gloock', 'Playfair Display', serif;
    font-weight: 600;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(179, 142, 10, 0.2);
    border: 2px solid #B38E0A;
    color: #B38E0A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #B38E0A;
    color: #000000;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #FDFBF7;
}

/* Why Choose Us Intro Section */
.why-choose-intro {
    margin: 4rem 0 6rem 0;
    padding: 0 20px;
    position: relative;
}

.why-choose-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-text {
    flex: 1;
    padding-right: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    position: relative;
    letter-spacing: -0.02em;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B38E0A, #5AA6A9);
    border-radius: 2px;
}

.why-choose-paragraphs p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
    font-weight: 400;
}

.why-choose-paragraphs p:last-child {
    margin-bottom: 0;
}

.why-choose-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.why-choose-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.services-intro {
    margin: 0 auto 6rem auto;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1400px;
    border: 1px solid rgba(179, 142, 10, 0.1);
}

.services-intro .intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-intro .intro-text {
    padding-right: 3rem;
    max-width: 100%;
    word-wrap: break-word;
    position: relative;
}

.services-intro .intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    line-height: 1.1;
    position: relative;
    letter-spacing: -0.02em;
}

.services-intro .intro-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #B38E0A, #5AA6A9);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(179, 142, 10, 0.3);
}

.services-intro .intro-paragraphs p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: justify;
}

.services-intro .intro-paragraphs p:last-child {
    margin-bottom: 0;
}

.services-intro .intro-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.services-intro .intro-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(179, 142, 10, 0.3);
}

.services-intro .intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 142, 10, 0.15) 0%, rgba(90, 166, 169, 0.15) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-intro .intro-image:hover::before {
    opacity: 1;
}

.services-intro .intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
    object-position: center;
}

.services-intro .intro-image:hover img {
    transform: scale(1.08);
}

.services-intro p {
    font-family: 'Gloock', 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1E1E1E;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: 0.2px;
    position: relative;
    padding: 0 0 20px 0;
    white-space: nowrap;
}

.services-intro p::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #B38E0A, #5AA6A9);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .why-choose-intro {
        margin: 3rem 0 4rem 0;
        padding: 0 15px;
    }
    
    .why-choose-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .why-choose-text {
        padding-right: 0;
        order: 1;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .why-choose-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
    }
    
    .why-choose-paragraphs p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .why-choose-image {
        order: 2;
    }
    
    .why-choose-image img {
        height: 350px;
    }
    
    .services-intro {
        padding: 50px 30px;
        margin-bottom: 4rem;
        border-radius: 20px;
    }
    
    .services-intro .intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .services-intro .intro-text {
        padding-right: 0;
    }
    
    .services-intro .intro-title {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
    }
    
    .services-intro .intro-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .services-intro .intro-paragraphs p {
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .services-intro .intro-image {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-radius: 20px;
    }
    
    .services-intro .intro-image:hover {
        transform: scale(1.02);
    }
    
    .services-intro .intro-image img {
        height: 400px;
    }
    
    .services-intro p {
        font-size: 1.2rem;
        white-space: normal;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .services-intro p {
        font-size: 1.1rem;
        white-space: normal;
        line-height: 1.25;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #B38E0A;
    box-shadow: 0 15px 40px rgba(179, 142, 10, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #FDFBF7 100%);
}

.service-card:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(179, 142, 10, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #B38E0A;
    border: 2px solid #B38E0A;
}

.service-card h3 {
    color: #1C1C1C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif; 
    font-weight: 500;
}

.service-card p {
    color: #666666;
    line-height: 1.6;
}

.hotels-section {
    margin-top: 4rem;
}

.hotels-section h3 {
    text-align: center;
    color: #B38E0A;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.hotels-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hotel-image {
    height: 150px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.hotel-card h4 {
    padding: 1rem;
    color: #1C1C1C;
    text-align: center;
    font-size: 1.1rem;
}

.hotel-card p {
    padding: 0 1rem 1rem;
    color: #666666;
    text-align: center;
    font-size: 0.9rem;
}

.hotel-features {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(179, 142, 10, 0.12);
    color: #B38E0A;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(179, 142, 10, 0.35);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #E0E0E0;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #B38E0A;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    color: #1C1C1C;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B38E0A;
    box-shadow: 0 0 10px rgba(179, 142, 10, 0.2);
}

.submit-btn {
    background: #B38E0A;
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #B38E0A;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(179, 142, 10, 0.5);
}

/* Booking Form Styles */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FDFBF7 0%, #F8F6F0 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.booking-form-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.jotform-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

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

.jotform-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B38E0A, #D4AF37, #B38E0A);
    border-radius: 24px 24px 0 0;
}

.jotform-container:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.jotform-container iframe {
    border-radius: 16px;
    width: 100% !important;
    height: 800px !important;
    border: none !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    display: block;
}

.jotform-container iframe:hover {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Loading State */
.jotform-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    color: #B38E0A;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(179, 142, 10, 0.2);
    border-top: 3px solid #B38E0A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jotform-loading p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

.jotform-container iframe.loaded {
    opacity: 1 !important;
}

/* Success Message Styling */
.success-message {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B38E0A, #D4AF37, #B38E0A);
    border-radius: 24px 24px 0 0;
}

.success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    display: block;
}

.success-content h3 {
    font-size: 2.5rem;
    color: #B38E0A;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.success-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.success-btn {
    background: linear-gradient(135deg, #B38E0A, #D4AF37);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 142, 10, 0.3);
}

.booking-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A, #D4AF37);
}

.form-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #2E2E2E;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    position: relative;
}

.form-section-title i {
    color: #D4AF37;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 55px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

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

.booking-form .form-group label {
    display: block;
    color: #2E2E2E;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form .form-group input,
.booking-form .form-group textarea,
.booking-form .form-group select {
    width: 100%;
    padding: 15px 20px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus,
.booking-form .form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.booking-form .form-group input.error,
.booking-form .form-group textarea.error,
.booking-form .form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

/* Radio Button Styling */
.radio-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.radio-group.error {
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 15px;
    background: rgba(231, 76, 60, 0.05);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.radio-label:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #D4AF37;
    background: #D4AF37;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    color: #D4AF37;
    font-weight: 600;
}

.radio-text {
    font-size: 16px;
    color: #2E2E2E;
    transition: all 0.3s ease;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(179, 142, 10, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    border-color: rgba(179, 142, 10, 0.2);
    box-shadow: 0 4px 20px rgba(179, 142, 10, 0.1);
}

.checkbox-group.error {
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 20px;
    background: rgba(231, 76, 60, 0.05);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    color: #2E2E2E;
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 142, 10, 0.1), transparent);
    transition: left 0.5s ease;
}

.checkbox-label:hover {
    color: #B38E0A;
    background: rgba(179, 142, 10, 0.05);
    border-color: rgba(179, 142, 10, 0.2);
    transform: translateX(2px);
}

.checkbox-label:hover::before {
    left: 100%;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkbox-label:hover .checkbox-custom {
    border-color: #B38E0A;
    box-shadow: 0 4px 8px rgba(179, 142, 10, 0.2);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #B38E0A;
    background: linear-gradient(135deg, #B38E0A, #D4AF37);
    box-shadow: 0 4px 12px rgba(179, 142, 10, 0.3);
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.checkbox-text {
    font-size: 16px;
    color: #2E2E2E;
    transition: all 0.3s ease;
    font-weight: 500;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-text {
    color: #B38E0A;
    font-weight: 600;
}

/* Focus states for accessibility */
.checkbox-label:focus-within {
    outline: 2px solid #B38E0A;
    outline-offset: 2px;
}

/* Mobile responsiveness for checkboxes */
@media (max-width: 768px) {
    .checkbox-group {
        padding: 15px;
        gap: 15px;
    }
    
    .checkbox-label {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .checkbox-custom {
        width: 20px;
        height: 20px;
    }
    
    .checkbox-text {
        font-size: 15px;
    }
}

/* Terms & Conditions Page Styling */
.terms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(179, 142, 10, 0.1);
}

.terms-section-content {
    padding: 50px;
    border-bottom: 1px solid #e9ecef;
}

.terms-section-content:last-child {
    border-bottom: none;
}

.terms-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #B38E0A;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.terms-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B38E0A, #D4AF37);
    border-radius: 2px;
}

.terms-item {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(179, 142, 10, 0.02);
    border-radius: 12px;
    border-left: 4px solid #B38E0A;
    transition: all 0.3s ease;
}

.terms-item:hover {
    background: rgba(179, 142, 10, 0.05);
    transform: translateX(5px);
}

.terms-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #B38E0A;
    border-radius: 50%;
    flex-shrink: 0;
}

.terms-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #B38E0A;
    margin: 20px 0 10px 0;
    padding-left: 20px;
    position: relative;
}

.terms-subtitle::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #B38E0A;
    font-size: 0.8rem;
}

.terms-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.terms-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #B38E0A;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness for terms page */
@media (max-width: 768px) {
    .terms-section {
        padding: 60px 0;
    }
    
    .terms-content {
        margin: 0 20px;
        border-radius: 12px;
    }
    
    .terms-section-content {
        padding: 30px 25px;
    }
    
    .terms-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .terms-item {
        margin-bottom: 25px;
        padding: 20px;
    }
    
    .terms-section-title {
        font-size: 1.3rem;
    }
    
    .terms-subtitle {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .terms-list li {
        padding-left: 25px;
        font-size: 0.95rem;
    }
    
    .terms-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        margin: 0 15px;
    }
    
    .terms-section-content {
        padding: 25px 20px;
    }
    
    .terms-main-title {
        font-size: 1.8rem;
    }
    
    .terms-item {
        padding: 15px;
    }
}

/* Room Modification Section */
#roomModificationSection {
    margin-top: 2rem;
}

.room-modification-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #B38E0A;
}

.room-block {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.room-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #B38E0A;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.room-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.room-form-group {
    margin-bottom: 1rem;
}

.room-form-group.full-width {
    grid-column: 1 / -1;
}

.room-form-group label {
    display: block;
    color: #2E2E2E;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.field-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.room-modification-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 10px 15px;
    background: #f8f9fa;
    border-left: 3px solid #B38E0A;
    border-radius: 0 5px 5px 0;
}

.room-form-group input[type="text"],
.room-form-group input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.room-form-group input[type="text"]:focus,
.room-form-group input[type="date"]:focus {
    outline: none;
    border-color: #B38E0A;
    box-shadow: 0 0 0 3px rgba(179, 142, 10, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-option input[type="radio"] {
    margin: 0;
    accent-color: #B38E0A;
}

.radio-option label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.room-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8e8e8, transparent);
    margin: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .room-form-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .room-block {
        padding: 1rem;
    }
    
    .room-modification-title {
        font-size: 1.2rem;
    }
    
    .room-block h4 {
        font-size: 1.1rem;
    }
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.booking-form .submit-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B38E0A 100%);
    color: #000000;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.booking-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.booking-form .submit-btn:hover::before {
    left: 100%;
}

.booking-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.booking-form .submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Success Message */
.success-message {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71, #27ae60);
}

.success-content i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
}

.success-content h3 {
    font-size: 2.5rem;
    color: #2E2E2E;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.success-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #B38E0A 100%);
    color: #000000;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
    .booking-form {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-label {
        min-width: auto;
    }
    
    .form-section-title {
        font-size: 1.5rem;
    }
    
    .booking-form .submit-btn {
        width: 100%;
        padding: 20px;
    }
    
    .success-message {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .success-content h3 {
        font-size: 2rem;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .jotform-container {
        padding: 25px;
        border-radius: 20px;
        margin: 0 10px;
    }
    
    .jotform-container iframe {
        height: 700px !important;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 60px 0;
    }
    
    .booking-form {
        padding: 25px 20px;
    }
    
    .jotform-container {
        padding: 20px 15px;
        border-radius: 18px;
        margin: 0 5px;
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.06),
            0 5px 20px rgba(0, 0, 0, 0.03),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    
    .jotform-container::before {
        height: 3px;
        border-radius: 18px 18px 0 0;
    }
    
    .jotform-container iframe {
        height: 600px !important;
        border-radius: 12px;
    }
    
    .jotform-container:hover {
        transform: none; /* Disable hover effects on mobile */
    }
    
    #jotformContainer {
        padding: 20px 15px;
        border-radius: 18px;
        margin: 0 5px;
    }
    
    .success-message {
        padding: 30px 20px;
        border-radius: 18px;
    }
    
    .success-content h3 {
        font-size: 2rem;
    }
    
    .success-content i {
        font-size: 3rem;
    }
    
    .form-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .form-section-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .form-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Admin Panel Styles */
.admin-panel {
    background: #f8f9fa;
    padding: 40px 0;
    min-height: 100vh;
}

.admin-panel h2 {
    color: #2E2E2E;
    margin-bottom: 30px;
    text-align: center;
}

.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.booking-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #D4AF37;
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.booking-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.booking-card p {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.booking-card strong {
    color: #2E2E2E;
}

.delete-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.delete-btn:hover {
    background: #c0392b;
}

.export-btn, .clear-btn, .close-btn {
    background: #D4AF37;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin: 0 10px 20px 0;
    transition: all 0.3s ease;
}

.export-btn:hover, .clear-btn:hover, .close-btn:hover {
    background: #B38E0A;
    transform: translateY(-2px);
}

.clear-btn {
    background: #e74c3c;
    color: white;
}

.clear-btn:hover {
    background: #c0392b;
}

.close-btn {
    background: #6c757d;
    color: white;
}

.close-btn:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .bookings-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: 15px;
    }
    
    .export-btn, .clear-btn, .close-btn {
        width: 100%;
        margin: 0 0 10px 0;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details h3 {
    color: #B38E0A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666666;
}

.contact-item i {
    color: #B38E0A;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #B38E0A;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-text p {
    color: #666666;
    margin: 0;
}

.contact-extra {
    margin-top: 4rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #E0E0E0;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #B38E0A;
    box-shadow: 0 10px 30px rgba(179, 142, 10, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #B38E0A, #6E5316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1C1C1C;
}

.contact-card h4 {
    color: #1C1C1C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #666666;
    line-height: 1.6;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E0E0E0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-family: 'Gloock', 'Playfair Display', serif;
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #B38E0A, #5AA6A9);
    border-radius: 2px;
}

.footer-logo {
    margin-top: -30px;    text-align: left;
}

.footer-logo + p {
    margin-top: -42px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #B8B8B8;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.footer-logo-img {
    height: 200px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.3s ease;
    max-width: 500px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.2);
    margin-bottom: 0; 
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.3);
}

.footer-section h4 {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: #B38E0A;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.footer-section p {
    color: #E0E0E0;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-section p strong {
    color: #FFFFFF;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-section ul li::before {
    content: '→';
    color: #B38E0A;
    font-weight: bold;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
}

.footer-section ul li a:hover {
    color: #B38E0A;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(179, 142, 10, 0.2);
    color: #999999;
    font-size: 0.85rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #B38E0A, transparent);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-logo + p {
        margin-top: -20px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 160px;
        max-width: 450px;
        transform: scale(1.1);
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li::before {
        display: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 140px;
        max-width: 400px;
        transform: scale(1.05);
    }
    
    .footer-logo + p {
        font-size: 0.85rem;
        margin-top: -15px;
    }
}

/* Luxury Hotels Slider */
.luxury-hotels-section {
    margin-top: 4rem;
    padding: 0 20px;
}

/* Make hotels slider use convention centers styling */
.luxury-hotels-section .hotels-carousel-container {
    margin-top: 3rem;
    max-width: 100%;
    padding: 0 20px;
}

.luxury-hotels-section .hotels-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1);
}

.luxury-hotels-section .hotel-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-hotels-section .hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.luxury-hotels-section .card-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.luxury-hotels-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.luxury-hotels-section .hotel-card:hover .card-image img {
    transform: scale(1.1);
}

.luxury-hotels-section .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-hotels-section .hotel-card:hover .image-overlay {
    opacity: 1;
}

.luxury-hotels-section .card-content {
    padding: 10px 14px;
    background: rgba(255,255,255,0.92);
    height: auto;
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
}

.luxury-hotels-section .card-title {
    font-family: 'Gloock', 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.luxury-hotels-section .book-btn {
    border: 1px solid #B38E0A;
    background: #B38E0A;
    color: #000000;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.luxury-hotels-section .book-btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.hotels-title {
    font-family: 'Gloock', 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.hotels-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #B38E0A);
    border-radius: 2px;
}

.hotels-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.hotels-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.hotels-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hotel-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.hotel-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.hotel-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 2;
}

.hotel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #FFFFFF !important;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.hotels-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.hotels-carousel-btn:hover {
    background: #D4AF37;
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.hotels-prev-btn {
    left: 30px;
}

.hotels-next-btn {
    right: 30px;
}

/* Pagination Dots */
.hotels-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.hotels-carousel-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hotels-carousel-dots .dot.active {
    background: #D4AF37;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.hotels-carousel-dots .dot:hover {
    background: rgba(212, 175, 55, 0.7);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hotel-card {
        height: 450px;
    }
    
    .hotel-name {
        font-size: 2rem;
        letter-spacing: 0.4px;
    }
    
    .hotels-carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .hotels-prev-btn {
        left: 20px;
    }
    
    .hotels-next-btn {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .luxury-hotels-section {
        padding: 0 10px;
    }
    
    .hotels-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    .hotel-card {
        height: 400px;
        border-radius: 15px;
    }
    
    .hotel-info {
        padding: 25px;
    }
    
    .hotel-name {
        font-size: 1.7rem;
        letter-spacing: 0.3px;
    }
    
    .hotels-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .hotels-prev-btn {
        left: 15px;
    }
    
    .hotels-next-btn {
        right: 15px;
    }
    
    .hotels-carousel-dots {
        margin-top: 30px;
        gap: 12px;
    }
    
    .hotels-carousel-dots .dot {
        width: 12px;
        height: 12px;
    }
    
    /* Hotels slider tablet responsive - match convention centers */
    .luxury-hotels-section .hotel-card {
        height: 420px;
        border-radius: 20px;
        margin: 0;
    }
    
    .luxury-hotels-section .card-image {
        height: 75%;
    }
    
    .luxury-hotels-section .card-content {
        padding: 10px 14px;
        height: auto;
        left: 16px;
        bottom: 16px;
    }
    
    .luxury-hotels-section .card-title {
        font-size: 0.95rem;
        line-height: 1.25;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 82vw;
    }
    
    .luxury-hotels-section .book-btn { 
        flex: 0 0 auto; 
    }
}

@media (max-width: 480px) {
    .hotel-card {
        height: 350px;
    }
    
    .hotel-info {
        padding: 20px;
    }
    
    .hotel-name {
        font-size: 1.5rem;
        letter-spacing: 0.2px;
    }
    
    .hotels-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .hotels-prev-btn {
        left: 10px;
    }
    
    .hotels-next-btn {
        right: 10px;
    }
    
    .hotels-carousel-dots {
        margin-top: 25px;
        gap: 10px;
    }
    
    .hotels-carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Hotels slider mobile responsive - match convention centers */
    .luxury-hotels-section .hotel-card {
        height: 360px;
    }
    
    .luxury-hotels-section .card-image {
        height: 75%;
    }
    
    .luxury-hotels-section .card-content {
        padding: 8px 12px;
        height: auto;
        left: 12px;
        bottom: 12px;
    }
    
    .luxury-hotels-section .card-title {
        font-size: 0.9rem;
        line-height: 1.25;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: 78vw;
        margin-bottom: 0;
    }
    
    .luxury-hotels-section .card-content { 
        max-width: 90%; 
    }
    
    .luxury-hotels-section .book-btn { 
        padding: 6px 9px; 
        font-size: 0.78rem; 
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 120px;
        max-width: 600px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: #000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px 30px;
        transition: right 0.3s ease-in-out;
        z-index: 1100;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        color: #FFFFFF;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 15px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #333;
        transition: color 0.3s ease-in-out;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #B38E0A;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-button {
        background: linear-gradient(135deg, #D4AF37 0%, #B38E0A 100%);
        color: #000000 !important;
        padding: 12px 20px !important;
        border-radius: 25px;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        margin: 10px 0;
        text-align: center;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav-menu .nav-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        color: #000000 !important;
    }
    
    .nav-menu .nav-button.active {
        background: linear-gradient(135deg, #B38E0A 0%, #D4AF37 100%);
        color: #000000 !important;
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }
    
    .hero-heading-main { font-size: 2.4rem; }
    .hero-heading-top { font-size: 1.05rem; margin-bottom: 2px; }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .feature-details {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .centers-slider,
    .hotels-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-heading-main { font-size: 2rem; }
    .hero-heading-top { font-size: 0.95rem; margin-bottom: 1px; }
    .home-section .hero-overlay { background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%); }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-card,
    .feature-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #B38E0A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6E5316;
}
