﻿/* BSCH Convention Hall - Premium Luxury Website */

/* ===== CSS VARIABLES - ULTRA-PREMIUM LIGHT PALETTE ===== */
:root {
    /* Primary Colors - Elegant & Light */
    --color-gold: #C9A961;
    --color-gold-light: #E8D9C3;
    --color-gold-dark: #9D7E47;
    
    /* Background Colors - Clean & Spacious */
    --color-primary: #F9F7F4;
    --color-white: #FFFFFF;
    --color-cream: #FBF9F6;
    --color-light-bg: #F5F3F0;
    --color-accent: #E8D9C3;
    
    /* Text Colors - Readable & Elegant */
    --color-text-dark: #3D3D3D;
    --color-text-gray: #6B6B6B;
    --color-text-light: #999999;
    
    /* Delicate Colors - Premium Feel */
    --color-border: #E5E1DC;
    --color-shadow-color: rgba(61, 61, 61, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Effects */
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px var(--color-shadow-color);
    --shadow-md: 0 8px 24px rgba(61, 61, 61, 0.06);
    --shadow-lg: 0 12px 40px rgba(61, 61, 61, 0.08);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-black);
}

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-text-gray);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 35px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-black {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-black:hover {
    background-color: var(--color-text-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== NAVBAR / HEADER ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    transition: var(--transition);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.logo-image {
    height:1000px;
    width: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1.05);
}

.navbar-logo:hover {
    transform: scale(1.02);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

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

/* Services Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    border-radius: 12px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    display: none;
    transition: var(--transition);
    z-index: 1000;
    margin-top: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.dropdown-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.dropdown-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    min-width: 20px;
}

.dropdown-item:hover {
    background-color: var(--color-gold-light);
    border-left-color: var(--color-gold);
    padding-left: 27px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    color: var(--color-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.phone-link:hover {
    gap: 12px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease 0.4s both;
    max-width: 900px;
    padding: 60px 40px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-content h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
    color: var(--color-black);
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--color-text-gray);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.highlight i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.highlight span {
    font-weight: 500;
    color: var(--color-text-dark);
}

/* ===== FACILITIES SECTION ===== */
.facilities {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-accent) 100%);
    color: var(--color-text-dark);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-weight: 600;
}

.section-subtitle.light {
    color: var(--color-gold);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.facility-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 162, 58, 0.1), transparent);
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(200, 162, 58, 0.15);
}

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

.facility-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    transform: scale(1.15);
}

.facility-card h3 {
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.facility-card p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 100px 0;
    background-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
    transform: translateY(-8px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.btn-gallery-open {
    display: none;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-white) 100%);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-card {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-description {
    font-size: 0.9rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(25px, 25px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.feature-block {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.feature-block i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

.feature-block h3 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.feature-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--color-gold);
}

.feature-block p {
    color: var(--color-text-gray);
    line-height: 1.8;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-accent) 100%);
    color: var(--color-text-dark);
}

.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    opacity: 0;
    transition: var(--transition);
    position: absolute;
    width: 100%;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.testimonial-content h4 {
    color: var(--color-gold);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--color-gold);
    width: 30px;
    border-radius: 50px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    text-align: center;
    color: var(--color-white);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--color-white);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-gold);
}

.contact-info {
    color: var(--color-gold);
    font-weight: 600;
}

.footer-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(200, 162, 58, 0.2);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(200, 162, 58, 0.3);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn.show {
    display: flex;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 998;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ===== BOOKING MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--color-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-gold);
}

.modal-content h2 {
    margin-bottom: 30px;
    color: var(--color-black);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 8px rgba(200, 162, 58, 0.2);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-white);
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .navbar-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .navbar-right {
        gap: 15px;
    }

    .phone-link span {
        display: none;
    }

    /* Dropdown Menu Mobile */
    .dropdown-menu {
        position: static;
        display: none;
        background-color: var(--color-light-bg);
        margin-top: 0;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-item {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-left: none;
        border-bottom: 1px solid var(--color-border);
    }

    .dropdown-item:last-child {
        border-bottom: none;
        border-radius: 0;
    }

    /* Hero */
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

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

    /* Sections */
    h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .stat-card {
        padding: 40px 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    /* Testimonials */
    .testimonial-slide {
        min-height: auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Floating Buttons */
    .scroll-to-top {
        right: 30px;
    }

    /* Modal */
    .modal-content {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Navbar */
    .navbar-logo {
        font-size: 1.2rem;
    }

    .navbar-right .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    /* About */
    .about {
        padding: 50px 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-content h2::after {
        width: 60px;
    }

    /* Sections */
    .facilities {
        padding: 60px 0;
    }

    .facility-card {
        padding: 25px 15px;
    }

    .facility-icon {
        font-size: 2.5rem;
    }

    /* Gallery */
    .gallery-grid {
        gap: 10px;
    }

    /* Features */
    .feature-block h3::after {
        width: 40px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column p {
        font-size: 0.9rem;
    }

    /* Floating Buttons */
    .whatsapp-btn,
    .scroll-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        right: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-btn,
    .scroll-to-top {
        display: none;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-form-container {
    padding: 40px;
    background: var(--color-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 12px 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: var(--transition);
    background-color: var(--color-white);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    background-color: var(--color-white);
}

.contact-form .form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVE CONTACT SECTION ===== */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .map-container iframe {
        height: 350px !important;
    }
}

/* ===== PREMIUM LIGHT THEME OVERRIDES ===== */
:root {
    --color-black: #1b1f26;
    --color-gold: #b88b4a;
    --color-gold-light: #f4ecdf;
    --color-gold-dark: #92652d;
    --color-primary: #f8f6f2;
    --color-white: #ffffff;
    --color-cream: #fdfbf8;
    --color-light-bg: #f3efe9;
    --color-accent: #ede3d3;
    --color-text-dark: #1f2430;
    --color-text-gray: #5f6572;
    --color-text-light: #8e95a3;
    --color-border: #e4ddcf;
    --color-shadow-color: rgba(23, 31, 43, 0.08);
    --shadow-sm: 0 6px 18px rgba(23, 31, 43, 0.06);
    --shadow-md: 0 14px 30px rgba(23, 31, 43, 0.08);
    --shadow-lg: 0 20px 44px rgba(23, 31, 43, 0.1);
}

body {
    background: linear-gradient(180deg, #fbfaf8 0%, #f6f3ee 100%);
    color: var(--color-text-dark);
}

.navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 139, 74, 0.14);
    padding: 12px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.94);
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    height: 62px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: #202632;
}

.dropdown-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
}

.dropdown-menu {
    margin-top: 16px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
}

.btn {
    border-radius: 999px;
    letter-spacing: 0.08em;
}

.btn-gold {
    background: linear-gradient(135deg, #c89c5b 0%, #b38645 100%);
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: #fff;
    color: #212733;
    border-color: #fff;
}

.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    text-align: left;
    color: #fff;
    background: #111;
}

.hero-media {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    background: linear-gradient(100deg, rgba(18, 22, 28, 0.74) 0%, rgba(18, 22, 28, 0.45) 42%, rgba(18, 22, 28, 0.14) 100%);
}

.hero-content {
    max-width: 760px;
    padding: 130px 48px 100px;
}

.hero-kicker {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: #f8efe1;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1.07;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: none;
}

.hero-subtitle {
    display: none;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-buttons {
    justify-content: flex-start;
    margin-top: 0;
    gap: 14px;
}

.about,
.gallery,
.why-choose-us,
.contact-section {
    background: transparent;
}

.facilities,
.testimonials {
    background: linear-gradient(180deg, #faf7f1 0%, #f2ece2 100%);
}

.facility-card,
.testimonial-content,
.contact-form-container {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(184, 139, 74, 0.22);
}

.stat-card {
    background: linear-gradient(140deg, #c89c5b 0%, #b1813f 100%);
}

.cta-section {
    background: linear-gradient(120deg, #f4ead9 0%, #ecdcc4 100%);
    color: #1f2630;
}

.cta-section h2 {
    color: #1f2630;
}

.footer {
    background: #20262f;
}

@media (max-width: 768px) {
    .logo-image {
        height: 52px;
    }

    .hero {
        min-height: 620px;
        align-items: center;
    }

    .hero-content {
        padding: 110px 24px 70px;
    }

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

    .btn-outline {
        color: #fff;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 46px;
    }

    .hero-content {
        padding: 98px 20px 54px;
    }

    .hero-buttons {
        gap: 10px;
    }
}

/* ===== PREMIUM V2 REFINEMENTS ===== */
:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
}

body {
    letter-spacing: 0.01em;
}

.section-title {
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-weight: 500;
    color: #9f7841;
}

.hero-content {
    max-width: 840px;
}

.hero-title {
    margin-bottom: 18px;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 30px;
}

.hero-trust {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 700px;
}

.hero-trust-item {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.hero-trust-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 5px;
}

.hero-trust-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.experience-band {
    padding: 90px 0;
    background: linear-gradient(130deg, #f6ebda 0%, #f0e2cc 100%);
    text-align: center;
}

.experience-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    color: #8f6a37;
    font-weight: 700;
    margin-bottom: 14px;
}

.experience-band h2 {
    margin: 0 auto;
    max-width: 900px;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    color: #202632;
}

.facility-card,
.testimonial-content,
.contact-form-container {
    border-radius: 18px;
}

.facility-card,
.gallery-item,
.testimonial-content,
.contact-form-container,
.stat-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.gallery-item {
    border-radius: 18px;
}

.testimonial-content {
    text-align: left;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8d7755;
    font-weight: 600;
}

.testimonial-rating {
    color: #c2914b;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.testimonial-rating i {
    margin-right: 4px;
}

.testimonial-content p {
    margin-bottom: 12px;
}

.testimonial-content h4 {
    font-size: 1.2rem;
    margin: 0;
}

.cta-section {
    padding: 110px 0;
}

.cta-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: #8f6a37;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-subtext {
    max-width: 620px;
    margin: 0 auto 30px;
    color: #3f4957;
    font-weight: 500;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.footer-btn {
    padding: 10px 20px;
    font-size: 0.78rem;
}

.footer-btn.btn-outline {
    color: #e8d2ad;
    border-color: rgba(232, 210, 173, 0.6);
    background: transparent;
}

.footer-btn.btn-outline:hover {
    color: #20262f;
    background: #e8d2ad;
}

@media (max-width: 768px) {
    .hero-trust {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .experience-band {
        padding: 70px 0;
    }
}

/* ===== PREMIUM V3 REFINEMENTS ===== */
:root {
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --color-black: #1a2029;
    --color-gold: #a97a3c;
    --color-gold-light: #f6eee2;
    --color-gold-dark: #8a6028;
    --color-primary: #f7f4ef;
    --color-white: #fffdf9;
    --color-accent: #efe3d3;
    --color-text-dark: #1f2732;
    --color-text-gray: #606b79;
    --color-border: #dfd3c0;
    --shadow-sm: 0 8px 18px rgba(20, 28, 38, 0.07);
    --shadow-md: 0 16px 34px rgba(20, 28, 38, 0.09);
    --shadow-lg: 0 28px 56px rgba(20, 28, 38, 0.12);
}

body {
    background: radial-gradient(circle at 10% -10%, #fffdf9 0%, #f8f5ef 45%, #f3eee4 100%);
    color: var(--color-text-dark);
}

.container {
    max-width: 1260px;
    padding: 0 28px;
}

.navbar {
    padding: 14px 0;
    background: rgba(255, 253, 249, 0.9);
    border-bottom: 1px solid rgba(169, 122, 60, 0.18);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 253, 249, 0.95);
}

.navbar-container {
    gap: 22px;
}

.navbar-logo {
    width: 132px;
    height: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f0e4 0%, #f3e6d3 100%);
    border: 1px solid rgba(169, 122, 60, 0.28);
    box-shadow: 0 10px 20px rgba(20, 28, 38, 0.08);
}

.logo-image {
    height: 96px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: contrast(1.1) saturate(1.08);
}

.navbar-menu {
    gap: 34px;
}

.nav-link {
    font-size: 1.02rem;
    font-weight: 500;
}

.nav-link::after {
    height: 1px;
}

.navbar-right .btn {
    padding: 14px 34px;
}

h2 {
    font-size: clamp(2.2rem, 3.9vw, 3.45rem);
    line-height: 1.18;
    letter-spacing: 0.01em;
}

.section-title {
    margin-bottom: 12px;
}

.section-subtitle {
    margin-bottom: 70px;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.about,
.facilities,
.gallery,
.why-choose-us,
.testimonials,
.contact-section,
.cta-section {
    padding: 120px 0;
}

.hero {
    min-height: 760px;
}

.hero-content {
    padding: 144px 52px 108px;
}

.hero-kicker {
    border-color: rgba(255, 255, 255, 0.56);
}

.hero-title {
    font-size: clamp(2.6rem, 5.6vw, 5.2rem);
    line-height: 1.03;
}

.hero-description {
    font-size: 1.14rem;
    max-width: 700px;
}

.hero-trust-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.facility-card,
.testimonial-content,
.contact-form-container {
    border-radius: 20px;
    border: 1px solid rgba(169, 122, 60, 0.22);
    box-shadow: var(--shadow-md);
}

.facility-card:hover,
.testimonial-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item {
    border-radius: 20px;
    border: 1px solid rgba(169, 122, 60, 0.2);
}

.stat-card {
    border-radius: 20px;
    background: linear-gradient(150deg, #b8894b 0%, #9a6f35 100%);
}

.testimonial-content {
    padding: 44px;
}

.testimonial-content p {
    font-size: 1.18rem;
}

.experience-band {
    background: linear-gradient(135deg, #f5e8d4 0%, #efdcc1 52%, #ead6b7 100%);
}

.cta-section {
    background: linear-gradient(135deg, #efe0c7 0%, #e6d3b3 100%);
}

.footer {
    background: linear-gradient(135deg, #202833 0%, #171d26 100%);
    padding-top: 78px;
}

.footer-column h4 {
    font-size: 1.4rem;
}

.footer-bottom {
    margin-top: 8px;
}

@media (max-width: 992px) {
    .navbar-menu {
        gap: 22px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .navbar-logo {
        width: 120px;
        height: 58px;
    }

    .logo-image {
        height: 86px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar-logo {
        width: 112px;
        height: 54px;
    }

    .logo-image {
        height: 80px;
    }

    .about,
    .facilities,
    .gallery,
    .why-choose-us,
    .testimonials,
    .contact-section,
    .cta-section {
        padding: 88px 0;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 118px 24px 80px;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        width: 96px;
        height: 48px;
        border-radius: 12px;
    }

    .logo-image {
        height: 68px;
    }

    .navbar-right .btn {
        padding: 11px 20px;
    }
}

/* ===== MINIMAL APPLE THEME ===== */
:root {
    --font-heading: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    --color-black: #111827;
    --color-gold: #111827;
    --color-gold-light: #f3f4f6;
    --color-gold-dark: #0f172a;
    --color-primary: #f5f5f7;
    --color-white: #ffffff;
    --color-accent: #eef0f3;
    --color-text-dark: #1d1d1f;
    --color-text-gray: #6e6e73;
    --color-border: #d2d2d7;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
    background: #f5f5f7;
    color: var(--color-text-dark);
    letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.navbar {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(60, 60, 67, 0.18);
    backdrop-filter: saturate(180%) blur(18px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.84);
}

.navbar-logo {
    background: #ffffff;
    border: 1px solid rgba(60, 60, 67, 0.2);
    box-shadow: none;
}

.logo-image {
    filter: none;
}

.nav-link,
.dropdown-item {
    color: #1d1d1f;
}

.nav-link::after {
    background-color: #1d1d1f;
}

.dropdown-menu {
    border: 1px solid rgba(60, 60, 67, 0.18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.btn {
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.btn-gold,
.btn-black {
    background: #1d1d1f;
    color: #fff;
}

.btn-gold:hover,
.btn-black:hover {
    background: #2a2a2d;
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: #fff;
    color: #1d1d1f;
    border-color: #fff;
}

.hero-overlay {
    background: linear-gradient(100deg, rgba(17, 24, 39, 0.65) 0%, rgba(17, 24, 39, 0.35) 45%, rgba(17, 24, 39, 0.1) 100%);
}

.hero-kicker {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.hero-trust-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.about,
.gallery,
.why-choose-us,
.contact-section {
    background: #f5f5f7;
}

.facilities,
.testimonials,
.experience-band,
.cta-section {
    background: #ffffff;
}

.facility-card,
.testimonial-content,
.contact-form-container,
.gallery-item {
    background: #ffffff;
    border: 1px solid rgba(60, 60, 67, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.facility-card:hover,
.gallery-item:hover,
.testimonial-content:hover {
    transform: translateY(-4px);
}

.stat-card {
    background: #1d1d1f;
    color: #fff;
}

.section-subtitle,
.experience-kicker,
.cta-kicker {
    color: #6e6e73;
}

.footer {
    background: #111827;
}

.footer-column h4 {
    color: #f5f5f7;
}

.contact-info {
    color: #e5e7eb;
}

/* ===== PREMIUM LIGHT FINAL OVERRIDE (NO GOLD) ===== */
:root {
    --font-heading: 'Newsreader', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --color-black: #182230;
    --color-gold: #2d3f57;
    --color-gold-light: #eef2f6;
    --color-gold-dark: #1f3045;
    --color-primary: #f4f6f8;
    --color-white: #f8fafc;
    --color-cream: #f2f5f7;
    --color-light-bg: #edf1f5;
    --color-accent: #e8edf3;
    --color-text-dark: #1e2937;
    --color-text-gray: #5a6675;
    --color-text-light: #7a8797;
    --color-border: #d6dee8;
    --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.1);
}

body {
    background: var(--color-primary);
    color: var(--color-text-dark);
    line-height: 1.7;
}

.container {
    max-width: 1240px;
    padding: 0 26px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #1b2736;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    line-height: 1.2;
}

p, .nav-link, .btn, .section-subtitle, .dropdown-item, .stat-label, .stat-description {
    font-family: var(--font-body);
}

.navbar {
    padding: 14px 0;
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid rgba(30, 41, 55, 0.12);
    backdrop-filter: blur(18px);
}

.navbar.scrolled {
    padding: 11px 0;
    background: rgba(248, 250, 252, 0.9);
}

.navbar-container {
    gap: 24px;
}

.navbar-logo {
    width: auto;
    height: auto;
    border: none;
    outline: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    overflow: visible;
}

.navbar-logo:hover {
    transform: none;
}

.logo-image {
    height: 84px;
    width: auto;
    display: block;
    filter: none;
}

.navbar-menu {
    gap: 34px;
}

.nav-link {
    color: #263241;
    font-size: 1rem;
    font-weight: 500;
}

.nav-link::after {
    height: 1px;
    background-color: #263241;
}

.dropdown-toggle {
    color: #263241;
}

.dropdown-menu {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #f8fafc;
}

.dropdown-item:hover {
    background: #edf2f7;
    border-left-color: #32465f;
}

.btn {
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    padding: 13px 30px;
}

.btn-gold,
.btn-black {
    background: #27384d;
    color: #f8fafc;
}

.btn-gold:hover,
.btn-black:hover {
    background: #1f3045;
}

.btn-outline {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(248, 250, 252, 0.75);
}

.hero {
    min-height: 700px;
    align-items: center;
    background: #1f3045;
}

.hero-overlay {
    background: linear-gradient(110deg, rgba(15, 23, 42, 0.62) 0%, rgba(15, 23, 42, 0.36) 50%, rgba(15, 23, 42, 0.18) 100%);
}

.hero-content {
    max-width: 760px;
    padding: 132px 42px 86px;
}

.hero-kicker,
.hero-trust,
.hero-trust-item,
.hero-subtitle {
    display: none;
}

.hero-title {
    font-size: clamp(2.45rem, 6vw, 5rem);
    line-height: 1.06;
    margin-bottom: 16px;
    color: #f8fafc;
}

.hero-description {
    font-size: 1.12rem;
    color: rgba(248, 250, 252, 0.9);
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-buttons {
    justify-content: flex-start;
}

.hero-buttons .btn {
    min-width: 180px;
}

.about,
.gallery,
.why-choose-us,
.contact-section,
.faq-section {
    background: var(--color-primary);
}

.facilities,
.testimonials,
.experience-band,
.cta-section {
    background: var(--color-white);
}

.about,
.facilities,
.gallery,
.why-choose-us,
.testimonials,
.contact-section,
.faq-section,
.cta-section {
    padding: 110px 0;
}

.section-title {
    margin-bottom: 12px;
}

.section-subtitle {
    color: #667487;
    font-size: 1rem;
    letter-spacing: 0.01em;
    margin-bottom: 58px;
}

.experience-band {
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.experience-band h2 {
    max-width: 820px;
    margin: 0 auto;
}

.facility-card,
.testimonial-content,
.contact-form-container,
.gallery-item,
.stat-card {
    border-radius: 14px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.facility-card:hover,
.gallery-item:hover,
.testimonial-content:hover,
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.facility-card::before,
.stat-card::before {
    display: none;
}

.facility-icon,
.feature-block i,
.dropdown-item i,
.testimonial-rating,
.contact-info,
.section-subtitle.light {
    color: #2d3f57;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-overlay {
    background: rgba(30, 41, 55, 0.14);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    opacity: 0.95;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.testimonial-carousel {
    max-width: 880px;
    min-height: 330px;
}

.testimonial-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 46px 42px;
    background: #f8fafc;
}

.testimonial-meta {
    justify-content: center;
    color: #6b788a;
}

.testimonial-content p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #334155;
}

.testimonial-content h4 {
    color: #1f3045;
}

.dot {
    background-color: #cbd5e1;
}

.dot.active {
    background-color: #2d3f57;
}

.cta-section {
    text-align: center;
}

.cta-subtext {
    color: #5a6675;
}

.faq-container {
    max-width: 980px;
}

.faq-list {
    margin-top: 26px;
    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    color: #263241;
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
}

.faq-question i {
    color: #334155;
    font-size: 0.92rem;
    transition: transform 0.28s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq-answer p {
    padding: 0 2px 20px;
    color: #5a6675;
}

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

.footer {
    background: #1c2735;
}

.footer-column h4 {
    color: #f1f5f9;
}

.footer-column p,
.footer-column ul li a,
.footer-bottom {
    color: rgba(241, 245, 249, 0.82);
}

.footer-btn.btn-outline {
    color: #f1f5f9;
    border-color: rgba(241, 245, 249, 0.62);
}

.footer-btn.btn-outline:hover {
    color: #1c2735;
    background: #f1f5f9;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-image {
        height: 74px;
    }

    .navbar-menu {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .logo-image {
        height: 64px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding: 112px 20px 70px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

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

    .about,
    .facilities,
    .gallery,
    .why-choose-us,
    .testimonials,
    .contact-section,
    .faq-section,
    .cta-section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-content {
        padding: 34px 22px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 56px;
    }

    .navbar-right .btn {
        padding: 10px 18px;
    }

    .faq-question {
        padding: 18px 0;
        font-size: 0.95rem;
    }
}

/* ===== LUXURY SPEC THEME V5 ===== */
:root {
    --font-heading: 'Newsreader', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --color-primary: #f3f6f8;
    --color-white: #f8fafc;
    --color-surface: #ffffff;
    --color-text-dark: #162131;
    --color-text-gray: #5b6879;
    --color-border: #d9e1ea;
    --color-accent: #223247;
    --color-accent-soft: #324a66;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 14px 30px rgba(15, 23, 42, 0.08);
}

body {
    background: var(--color-primary);
    color: var(--color-text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1240px;
    padding: 0 28px;
}

.navbar {
    height: 106px;
    padding: 0;
    display: flex;
    align-items: center;
    background: #f5f4f1;
    border-bottom: 1px solid rgba(31, 45, 63, 0.12);
    backdrop-filter: blur(6px);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
}

.navbar.scrolled {
    height: 106px;
    background: #f5f4f1;
    border-bottom: 1px solid rgba(31, 45, 63, 0.14);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.navbar-container {
    height: 106px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.navbar-logo {
    border: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.navbar-logo:hover {
    transform: none;
}

.logo-image {
    height: 98px;
    width: auto;
}

.navbar-menu {
    justify-content: center;
    gap: clamp(22px, 2.4vw, 40px);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2d3f;
    text-shadow: none;
}

.nav-link::after {
    height: 1px;
    transition: width 0.28s ease;
    background-color: #1f2d3f;
}

.dropdown-toggle,
.dropdown-toggle i {
    color: #1f2d3f;
}

.hamburger span {
    background-color: #1f2d3f;
}

.navbar-right .btn {
    background: #1f2d3f;
    color: #f8fafc;
    padding: 12px 28px;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: none;
}

.navbar-right .btn:hover {
    background: #172230;
    transform: none;
}

.hero {
    height: 100vh;
    min-height: 100vh;
    align-items: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(102deg, rgba(10, 18, 28, 0.73) 0%, rgba(10, 18, 28, 0.47) 44%, rgba(10, 18, 28, 0.17) 100%);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.04);
    transition: transform 0.25s linear;
}

.hero-content {
    max-width: 620px;
    padding: 182px 28px 76px 62px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    max-width: 11ch;
    font-size: clamp(2.35rem, 4.7vw, 4.3rem);
    line-height: 1.18;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    color: #f8fafc;
}

.hero-divider {
    width: 112px;
    height: 1px;
    display: block;
    background: rgba(248, 250, 252, 0.68);
    margin-bottom: 18px;
}

.hero-description {
    max-width: 520px;
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.88);
    margin-bottom: 28px;
}

.hero-buttons {
    margin-top: 0;
}

.hero-buttons .btn-gold {
    background: #f8fafc;
    color: #1f2d3f;
    border: 1px solid rgba(248, 250, 252, 0.35);
    height: 54px;
    padding: 0 24px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0.2px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hero-buttons .btn-gold i {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.hero-buttons .btn-gold:hover {
    background: #e7edf3;
    border-color: rgba(248, 250, 252, 0.5);
    color: #1f2d3f;
    transform: none;
}

.hero-buttons .btn-gold:hover i {
    transform: translateX(3px);
}

.about,
.facilities,
.gallery,
.experience-band,
.why-choose-us,
.testimonials,
.cta-section,
.faq-section,
.contact-section {
    padding: 100px 0;
}

.about,
.gallery,
.why-choose-us,
.faq-section,
.contact-section {
    background: var(--color-primary);
}

.facilities,
.testimonials,
.experience-band,
.cta-section {
    background: var(--color-surface);
}

.about-grid {
    gap: 60px;
}

.about-image img {
    height: 440px;
}

.about-content p {
    max-width: 560px;
}

.about-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 34px 0 0;
}

.highlight {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 12px;
    background: #f8fafc;
}

.highlight i {
    color: #2b3e55;
}

.facilities {
    background: #edf2f6;
}

.facilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
}

.category-card {
    min-height: 320px;
    border: none;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 0;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 21, 30, 0.18) 0%, rgba(14, 21, 30, 0.54) 100%);
    transition: background 0.3s ease;
}

.category-content {
    position: absolute;
    inset: auto 0 24px 0;
    text-align: center;
    z-index: 1;
}

.category-content h3 {
    color: #f8fafc;
    font-size: 2rem;
    margin: 0;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(14, 21, 30, 0.28) 0%, rgba(14, 21, 30, 0.66) 100%);
}

.gallery {
    background: #f8fafc;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.experience-band {
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.experience-band h2 {
    margin: 0 auto;
    max-width: 860px;
}

.testimonials {
    background: #eef2f6;
}

.testimonial-carousel {
    max-width: 820px;
    min-height: 260px;
}

.testimonial-content {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 18px;
    position: relative;
}

.testimonial-content i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5.4rem;
    color: rgba(34, 50, 71, 0.07);
    z-index: 0;
}

.testimonial-meta,
.testimonial-rating {
    display: none;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 36px auto 18px;
}

.testimonial-content h4 {
    position: relative;
    z-index: 1;
    color: #1f2d3f;
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #6b7889;
}

.cta-section {
    background: #f8fafc;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-section h2 {
    margin-bottom: 26px;
}

.cta-section .btn-black {
    background: #223247;
    color: #f8fafc;
}

.faq-list {
    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    padding: 22px 0;
}

.faq-question i {
    transition: transform 0.26s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.footer {
    background: #1f2d3f;
    border-top: 1px solid rgba(241, 245, 249, 0.18);
}

.social-icon {
    background: rgba(241, 245, 249, 0.08);
    color: #f1f5f9;
}

.social-icon:hover {
    background: rgba(241, 245, 249, 0.18);
    color: #f1f5f9;
    transform: none;
}

@media (max-width: 1024px) {
    .logo-image {
        height: 86px;
    }

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

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

@media (max-width: 768px) {
    .navbar {
        height: 92px;
    }

    .navbar-container {
        height: 92px;
    }

    .logo-image {
        height: 74px;
    }

    .navbar-menu {
        top: 92px;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-content {
        padding: 136px 20px 58px 28px;
    }

    .hero-title {
        max-width: 12ch;
        font-size: clamp(1.9rem, 8.6vw, 3rem);
        line-height: 1.2;
    }

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

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

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

/* ===== SECTION REFINEMENTS (GRID + TESTIMONIALS + FOOTER) ===== */
.facilities {
    background: #eef2f6;
}

.facility-points {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.facility-point {
    background: #f9fbfd;
    border: 1px solid rgba(31, 45, 63, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.facility-point:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 45, 63, 0.22);
}

.facility-point i {
    font-size: 1.2rem;
    color: #223247;
    margin-bottom: 12px;
}

.facility-point h3 {
    margin-bottom: 10px;
    color: #1f2d3f;
}

.facility-point p {
    margin: 0;
    color: #526275;
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 5 / 4;
    border-radius: 12px;
    overflow: hidden;
}

.why-choose-us {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.stats-grid {
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(31, 45, 63, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.stat-number {
    color: #1f2d3f;
}

.stat-label {
    color: #223247;
}

.stat-description {
    color: #667789;
}

.features-grid {
    gap: 20px;
}

.feature-block {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(31, 45, 63, 0.1);
    border-radius: 16px;
    padding: 24px 18px;
}

.feature-block i {
    color: #25374d;
}

.testimonials {
    background: #f8fafc;
}

.testimonial-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(31, 45, 63, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 14px;
    color: #c9a961;
}

.testimonial-card p {
    margin-bottom: 18px;
    color: #4f5f72;
    line-height: 1.72;
}

.testimonial-card h4 {
    margin-bottom: 4px;
    color: #1f2d3f;
}

.testimonial-card .testimonial-location {
    color: #708093;
    font-size: 0.92rem;
}

.footer .contact-info,
.footer .footer-column p .contact-info {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .facility-points {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 768px) {
    .facility-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Contact form accents - blue theme */
.contact-form .form-group label {
    color: #234a73;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    border: 2px solid rgba(35, 74, 115, 0.2);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #2f5f92;
    box-shadow: 0 0 0 3px rgba(47, 95, 146, 0.12);
}

/* About text and testimonial carousel refinements */
.about-content p {
    text-align: justify;
}

.testimonial-carousel {
    margin-top: 34px;
    position: relative;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide .testimonial-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(31, 45, 63, 0.28);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.dot.active {
    background: #1f2d3f;
    transform: scale(1.1);
}

.footer a.contact-info {
    color: #ffffff;
    text-decoration: none;
}

.footer a.contact-info:hover {
    color: #ffffff;
    text-decoration: underline;
}

.gallery-item:hover {
    border-color: transparent;
    box-shadow: none;
}
