/* ============================================
   CSS RESET & BASE STYLES - Premium Black & Gold Theme
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Black & Gold Color Palette */
    --primary-gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-bright: #FFC800;
    --gold-dark: #DAA520;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    --gold-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    
    --pure-black: #000000;
    --rich-black: #0A0A0A;
    --dark-bg: #0D0D0D;
    --dark-surface: #111111;
    --dark-surface-light: #1A1A1A;
    --dark-card: #1E1E1E;
    --dark-border: #2A2A2A;
    --dark-hover: #222222;
    
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --text-light: #E0E0E0;
    --text-muted: #A0A0A0;
    --text-dark: #0A0A0A;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 5px 25px rgba(255, 215, 0, 0.25);
    --shadow-gold-intense: 0 10px 40px rgba(255, 215, 0, 0.35);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --border-radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--pure-black);
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.8rem;
    font-weight: 800;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1300px !important;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--primary-gold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-gold);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 25px auto 0;
    font-weight: 400;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 25px auto;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-gold);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

/* ============================================
   GLASS CARD EFFECT - Premium Dark Version
   ============================================ */
.glass-card {
    background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: var(--transition-slow);
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 215, 0, 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 35px;
    border-radius: var(--border-radius-xl);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn::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: var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--pure-black);
    border-color: transparent;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFE55C 0%, #FFD700 100%);
    color: var(--pure-black);
    box-shadow: var(--shadow-gold-intense);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--pure-black);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-large {
    padding: 16px 45px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-gold);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    transition: var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.logo-text h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-light);
    padding: 8px 0;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
}

.phone-link i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.phone-link:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
    border-radius: var(--border-radius-full);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)), 
                url('../assets/images/hero-bg.jpg') center/cover no-repeat fixed;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--pure-black);
    padding: 10px 30px;
    border-radius: var(--border-radius-xl);
    font-weight: 700;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.4rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero-scroll a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--pure-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--rich-black);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 20px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: var(--border-radius-full);
}

.about-highlights {
    margin: 40px 0;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--dark-surface);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition-fast);
}

.highlight:hover {
    transform: translateX(10px);
    background: var(--dark-surface-light);
}

.highlight i {
    font-size: 2rem;
    color: var(--primary-gold);
    min-width: 40px;
}

.highlight h4 {
    margin-bottom: 5px;
    color: var(--white);
}

.highlight p {
    margin: 0;
    color: var(--text-muted);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--pure-black);
    padding: 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
    min-width: 120px;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--white);
}

.years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

/* ============================================
   DOCTORS SECTION
   ============================================ */
.doctors-section {
    background: var(--dark-bg);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.doctor-card {
    padding: 40px;
    text-align: center;
    background: var(--dark-card);
}

.doctor-image {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.doctor-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    color: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 3px solid var(--dark-card);
}

.doctor-info h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.8rem;
}

.specialization {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.experience {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.bio {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.doctor-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.skill-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 8px 18px;
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: var(--transition-fast);
}

.skill-tag:hover {
    background: var(--gold-gradient);
    color: var(--pure-black);
    transform: translateY(-2px);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--rich-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-medium);
    transform-origin: left;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    color: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--white);
}

.service-card p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-link:hover {
    gap: 15px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-section {
    background: var(--dark-bg);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.why-us-card {
    padding: 45px 35px;
    text-align: center;
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-medium);
    transform-origin: left;
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.why-us-icon {
    width: 90px;
    height: 90px;
    background: var(--gold-gradient);
    color: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.why-us-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--white);
}

.why-us-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--dark-bg) 100%);
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    gap: 30px;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(100% - 60px);
    padding: 50px;
    min-width: 0;
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.testimonial-rating {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 35px;
    line-height: 1.9;
    color: var(--white);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1.3rem;
}

.author-info p {
    margin: 0;
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.testimonial-prev,
.testimonial-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--pure-black);
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-gold);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-intense);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    background: var(--rich-black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.blog-card {
    overflow: hidden;
    transition: var(--transition-medium);
    background: var(--dark-card);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--pure-black);
    padding: 8px 20px;
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.4;
}

.blog-content p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.blog-link:hover {
    gap: 15px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--dark-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: var(--dark-card);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--dark-surface-light);
    color: var(--primary-gold);
}

.faq-question i {
    transition: var(--transition-fast);
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
    background: var(--dark-surface);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-preview {
    background: var(--rich-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    color: var(--white);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--white);
}

.gallery-overlay p {
    margin: 10px 0 0;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--dark-bg);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    padding: 30px;
    text-align: center;
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    color: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--white);
}

.contact-card p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form-container {
    padding: 50px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form-container h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-form-container > p {
    margin-bottom: 35px;
    color: var(--text-muted);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-md);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--dark-surface);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    width: 100%;
    max-width: 550px;
    padding: 50px;
    position: relative;
    animation: slideUp 0.4s ease;
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-gold-intense);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--pure-black);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--white);
}

.footer-logo p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--pure-black);
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: var(--border-radius-full);
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-gold);
    min-width: 20px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-bottom i {
    color: var(--primary-gold);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--pure-black);
    z-index: 1500;
    transition: var(--transition-medium);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu-header img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-gold);
    cursor: pointer;
}

.mobile-nav {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    font-weight: 600;
    color: var(--text-light);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    font-size: 1.1rem;
    border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--gold-gradient);
    color: var(--pure-black);
    transform: translateX(10px);
    border-color: transparent;
}

.mobile-menu-footer {
    padding: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
}

.glow-effect {
    animation: glow 2s infinite;
}

.reveal-animation {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-animation.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--pure-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: var(--border-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FDB931 0%, #FFD700 100%);
}