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

:root {
    --primary-gold: #D4A574;
    --secondary-gold: #E6B885;
    --light-gold: #F2D4A7;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    position: relative;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* Background Video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}

/* Warm Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.15), rgba(255, 255, 255, 0.05));
    z-index: -5;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 60px;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Scrolled Navbar Styles */
.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.header.scrolled:hover {
    background: rgba(0, 0, 0, 0.98);
}

.header.scrolled .consultation-link {
    color: #ffffff;
    border-color: var(--primary-gold);
}

.header.scrolled .consultation-link:hover {
    color: white;
    border-color: var(--primary-gold);
}

.header.scrolled .phone-number {
    color: #ffffff;
}

.header.scrolled .avani-logo {
    background: var(--primary-gold);
    color: #000000;
    border-color: var(--primary-gold);
}

.header.scrolled .avani-logo:hover {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.consultation-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 0;
}

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

.consultation-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

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

.consultation-link i {
    margin-left: 10px;
    font-size: 11px;
    transition: transform 0.4s ease;
}

.consultation-link:hover i {
    transform: translateX(4px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.phone-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
}

.phone-number:hover {
    color: #ffffff;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.menu-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-icon:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.menu-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hamburger Animation States */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Social Media Icons */
.social-icons {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    opacity: 0;
    animation: socialIconsFadeIn 1s ease-out forwards;
    animation-delay: 2.5s;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateX(-20px);
    animation: socialIconSlide 0.6s ease-out forwards;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.social-icon:nth-child(1) { animation-delay: 2.6s; }
.social-icon:nth-child(2) { animation-delay: 2.7s; }
.social-icon:nth-child(3) { animation-delay: 2.8s; }

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.social-icon:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: rgba(212, 165, 116, 0.2);
}

.social-icon i {
    z-index: 1;
    position: relative;
}

@keyframes socialIconsFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes socialIconSlide {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Avani Derm Spa Logo */
.avani-logo {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.avani-logo:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.avani-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.3s ease;
}

.avani-logo:hover span {
    color: #ffffff;
}

/* Main Content */
.main-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 400px;
}

/* Doctor Images */
.doctor-image {
    position: absolute;
    width: 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 3px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: doctorImageFadeIn 1.2s ease-out forwards;
}

.doctor-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        transparent 0%, 
        rgba(212, 165, 116, 0.1) 50%, 
        transparent 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.doctor-image:hover::before {
    opacity: 1;
}

.doctor-image:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 40px 80px rgba(212, 165, 116, 0.2);
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.08) contrast(1.05) saturate(1.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-image:hover img {
    filter: brightness(1.12) contrast(1.08) saturate(1.2);
    transform: scale(1.05);
}

.left-doctor {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.3s;
}

.right-doctor {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

/* Doctor Image Animation */
@keyframes doctorImageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Logo Section */
.logo-section {
    text-align: center;
    z-index: 10;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: logoFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

.nayak-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    animation: logoElementFadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.logo-icon {
    width: 120px;
    height: 70px;
    margin-bottom: 15px;
    transform: scale(0.8);
    animation: logoIconScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.2s;
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 12px rgba(212, 165, 116, 0.4));
    transition: all 0.4s ease;
}

.logo-icon:hover .logo-svg {
    filter: drop-shadow(0 8px 16px rgba(212, 165, 116, 0.6));
    transform: scale(1.05);
}

.plastic-surgery-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary-gold);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(10px);
    animation: textSlideUp 0.8s ease-out forwards;
    animation-delay: 1.4s;
}

.main-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 140px;
    font-weight: 800;
    letter-spacing: 18px;
    margin-bottom: 25px;
    margin-top: 15px;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    line-height: 0.8;
    color: #ffffff;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    animation: titleFloatIn 2s cubic-bezier(0.4, 0, 0.2, 1) forwards, titlePulse 3s ease-in-out infinite;
    animation-delay: 1.2s, 3s;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    animation: titleUnderline 1s ease-out forwards;
    animation-delay: 2.4s;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: subtitleSlideIn 1.5s ease-out forwards, subtitleGlow 4s ease-in-out infinite;
    animation-delay: 1.8s, 4s;
}

/* Logo and Title Animations */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoElementFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoIconScale {
    0% {
        transform: scale(0.8);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes textSlideUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFloatIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }
    50% {
        text-shadow: 0 12px 24px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleGlow {
    0%, 100% {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    }
    50% {
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

@keyframes titleUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 120px;
    }
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* EXCELLENCE SECTION STYLES */
/* ================================= */

.excellence-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333333;
    padding: 120px 0;
    position: static;
    overflow: hidden;
}

.excellence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.excellence-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.excellence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 70vh;
}

/* Excellence Text Styles */
.excellence-text {
    opacity: 0;
    transform: translateY(30px);
    animation: textSlideUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.excellence-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #333333;
    line-height: 1.1;
    margin-bottom: 10px;
}

.excellence-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #D4A574;
    line-height: 1.1;
    margin-bottom: 30px;
    font-style: italic;
}

.excellence-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.excellence-description {
    margin-bottom: 50px;
}

.excellence-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.excellence-description strong {
    color: #D4A574;
    font-weight: 600;
}

/* Meet Surgeons Button */
.meet-surgeons-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: transparent;
    border: 2px solid #D4A574;
    color: #D4A574;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.meet-surgeons-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #D4A574;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.meet-surgeons-btn:hover::before {
    left: 0;
}

.meet-surgeons-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.meet-surgeons-btn i {
    transition: transform 0.4s ease;
}

.meet-surgeons-btn:hover i {
    transform: translateX(5px);
}

/* Excellence Images Grid */
.excellence-images {
    opacity: 0;
    transform: translateX(50px);
    animation: imageSlideIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    height: 650px;
    perspective: 1000px;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    cursor: pointer;
}

.grid-item:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.grid-item:hover .spa-content,
.grid-item:hover .patient-content {
    transform: translate(-50%, -50%) scale(1.02);
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.grid-item:hover::before {
    opacity: 1;
}

.excellence-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Placeholder Images */
.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spa-img {
    background: 
        linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(123, 179, 240, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23f0f8ff"/><circle cx="100" cy="80" r="40" fill="%236ba3f5" opacity="0.3"/><circle cx="300" cy="180" r="60" fill="%234a90e2" opacity="0.2"/><circle cx="350" cy="50" r="25" fill="%237bb3f0" opacity="0.4"/><path d="M0,200 Q200,150 400,200 L400,300 L0,300 Z" fill="%234a90e2" opacity="0.1"/></svg>'),
        linear-gradient(45deg, #e3f2fd 0%, #bbdefb 100%);
    background-size: cover, 100% 100%, cover;
    color: white;
    position: relative;
}

.spa-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="20" r="1.5" fill="rgba(255,255,255,0.3)"/><circle cx="85" cy="60" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="30" cy="80" r="1.8" fill="rgba(255,255,255,0.15)"/><circle cx="60" cy="70" r="1.2" fill="rgba(255,255,255,0.25)"/></svg>');
    opacity: 0.6;
}

.patient-img {
    background: 
        linear-gradient(135deg, rgba(255, 107, 157, 0.9) 0%, rgba(240, 147, 251, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23fce4ec"/><ellipse cx="120" cy="100" rx="50" ry="30" fill="%23f093fb" opacity="0.3"/><ellipse cx="280" cy="160" rx="40" ry="25" fill="%23ff6b9d" opacity="0.25"/><ellipse cx="340" cy="80" rx="30" ry="20" fill="%23ff8cc8" opacity="0.35"/><path d="M0,180 Q100,140 200,160 Q300,180 400,140 L400,300 L0,300 Z" fill="%23ff6b9d" opacity="0.15"/><circle cx="80" cy="200" r="15" fill="%23f093fb" opacity="0.2"/></svg>'),
        linear-gradient(45deg, #fce4ec 0%, #f8bbd9 100%);
    background-size: cover, 100% 100%, cover;
    color: white;
    position: relative;
}

.patient-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1.8" fill="rgba(255,255,255,0.3)"/><circle cx="75" cy="35" r="1.2" fill="rgba(255,255,255,0.4)"/><circle cx="60" cy="70" r="1.5" fill="rgba(255,255,255,0.25)"/><circle cx="40" cy="85" r="1" fill="rgba(255,255,255,0.35)"/><circle cx="85" cy="75" r="1.3" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.6;
}

.spa-content, .patient-content {
    text-align: center;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
}

.spa-content h4, .patient-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.spa-content p, .patient-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    opacity: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* Scroll Animations */
@keyframes textSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Grid Item Animation Delays */
.grid-item.item-1 {
    animation: gridItemFadeIn 0.6s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.grid-item.item-2 {
    animation: gridItemFadeIn 0.6s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

.grid-item.item-3 {
    animation: gridItemFadeIn 0.6s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.grid-item.item-4 {
    animation: gridItemFadeIn 0.6s ease-out forwards;
    animation-delay: 1.4s;
    opacity: 0;
}

@keyframes gridItemFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Excellence Section */
@media (max-width: 1200px) {
    .excellence-content {
        gap: 60px;
    }
    
    .excellence-title,
    .excellence-subtitle {
        font-size: 52px;
    }
    
    .image-grid {
        height: 550px;
        gap: 20px;
    }
    
    .grid-item {
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .excellence-section {
        padding: 80px 0;
    }
    
    .excellence-container {
        padding: 0 30px;
    }
    
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .excellence-title,
    .excellence-subtitle {
        font-size: 42px;
    }
    
    .excellence-tagline {
        font-size: 16px;
    }
    
    .excellence-description p {
        font-size: 15px;
    }
    
    .image-grid {
        height: 450px;
        gap: 15px;
    }
    
    .grid-item {
        border-radius: 15px;
    }
    
    .grid-item:hover {
        transform: translateY(-8px) rotateX(2deg);
    }
    
    .spa-content h4, .patient-content h4 {
        font-size: 18px;
        letter-spacing: 2px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    .spa-content p, .patient-content p {
        font-size: 14px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .spa-content, .patient-content {
        padding: 15px;
    }
    
    .meet-surgeons-btn {
        padding: 15px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .excellence-title,
    .excellence-subtitle {
        font-size: 36px;
    }
    
    .image-grid {
        height: 350px;
        gap: 10px;
    }
    
    .grid-item {
        border-radius: 10px;
    }
}

/* ================================= */
/* AUTHORITY SECTION STYLES */
/* ================================= */

.authority-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.authority-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.06) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,165,116,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.authority-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.authority-header {
    margin-bottom: 100px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    animation: lineFadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: dotFadeIn 1s ease-out forwards;
    animation-delay: 0.7s;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.6);
}

.authority-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s ease-out forwards;
    animation-delay: 0.9s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleFadeIn 1s ease-out forwards;
    animation-delay: 1.1s;
}

.authority-logos {
    margin-bottom: 80px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: logoItemFadeIn 0.8s ease-out forwards;
}

.logo-item:nth-child(1) { animation-delay: 1.3s; }
.logo-item:nth-child(2) { animation-delay: 1.4s; }
.logo-item:nth-child(3) { animation-delay: 1.5s; }
.logo-item:nth-child(4) { animation-delay: 1.6s; }
.logo-item:nth-child(5) { animation-delay: 1.7s; }
.logo-item:nth-child(6) { animation-delay: 1.8s; }
.logo-item:nth-child(7) { animation-delay: 1.9s; }
.logo-item:nth-child(8) { animation-delay: 2.0s; }
.logo-item:nth-child(9) { animation-delay: 2.1s; }
.logo-item:nth-child(10) { animation-delay: 2.2s; }
.logo-item:nth-child(11) { animation-delay: 2.3s; }
.logo-item:nth-child(12) { animation-delay: 2.4s; }

.logo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

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

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

.logo-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.2);
}

.authority-logo {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.logo-card:hover .authority-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 15px 10px 10px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    opacity: 0;
}

.logo-card:hover .logo-overlay {
    transform: translateY(0);
    opacity: 1;
}

.publication-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Remove old staggered animations - replaced with new system */

.authority-description {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: descriptionFadeIn 0.8s ease-out forwards;
    animation-delay: 2.6s;
}

.description-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.description-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.description-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.description-icon i {
    font-size: 48px;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.description-card p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.description-stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(212, 165, 116, 0.4);
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Animations */
@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineFadeIn {
    0% {
        opacity: 0;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 80px;
    }
}

@keyframes dotFadeIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoPulse {
    0% {
        transform: translateY(-8px) scale(1.08);
    }
    50% {
        transform: translateY(-10px) scale(1.12);
    }
    100% {
        transform: translateY(-8px) scale(1.08);
    }
}

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

/* Responsive Authority Section */
@media (max-width: 1200px) {
    .authority-container {
        padding: 0 40px;
    }
    
    .authority-title {
        font-size: 56px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .logo-card {
        height: 110px;
        padding: 20px;
    }
    
    .authority-logo {
        height: 45px;
        max-width: 120px;
    }
    
    .description-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .authority-section {
        padding: 80px 0;
    }
    
    .authority-container {
        padding: 0 30px;
    }
    
    .authority-title {
        font-size: 42px;
    }
    
    .title-subtitle {
        font-size: 16px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .logo-card {
        height: 100px;
        padding: 15px;
    }
    
    .authority-logo {
        height: 40px;
        max-width: 100px;
    }
    
    .description-card {
        padding: 40px 30px;
    }
    
    .description-card p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .description-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .authority-title {
        font-size: 32px;
    }
    
    .title-subtitle {
        font-size: 14px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .logo-card {
        height: 80px;
        padding: 12px;
    }
    
    .authority-logo {
        height: 30px;
        max-width: 80px;
    }
    
    .description-card {
        padding: 30px 20px;
    }
    
    .description-card p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .description-icon i {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}



/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

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

/* ================================= */
/* SLIDE-OUT MENU STYLES */
/* ================================= */

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-menu.active .menu-overlay {
    opacity: 1;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.menu-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.slide-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for menu items */
.slide-menu.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.slide-menu.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.slide-menu.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.slide-menu.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.slide-menu.active .menu-item:nth-child(5) { transition-delay: 0.3s; }
.slide-menu.active .menu-item:nth-child(6) { transition-delay: 0.35s; }
.slide-menu.active .menu-item:nth-child(7) { transition-delay: 0.4s; }
.slide-menu.active .menu-item:nth-child(8) { transition-delay: 0.45s; }
.slide-menu.active .menu-item:nth-child(9) { transition-delay: 0.5s; }
.slide-menu.active .menu-item:nth-child(10) { transition-delay: 0.55s; }

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.4s ease;
}

.menu-link:hover::before {
    width: 15px;
}

.menu-link:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    transform: translateX(5px);
}

.menu-link:hover i {
    transform: translateX(8px) scale(1.1);
    color: var(--primary-gold);
}

.menu-link i {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover i {
    opacity: 1;
}

/* Menu content scrollbar styling */
.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.menu-content::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 2px;
}

.menu-content::-webkit-scrollbar-thumb:hover {
    background: #E6B885;
}

/* Responsive menu styles */
@media (max-width: 768px) {
    .menu-content {
        width: 100%;
        padding: 60px 30px;
    }
    
    .menu-link {
        font-size: 16px;
        padding: 20px 0;
    }
    
    .menu-logo span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .menu-content {
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 18px 0;
    }
}

/* ================================= */
/* FOOTER STYLES */
/* ================================= */

.footer {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-column {
    animation: footerColumnFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-column:first-child {
    align-items: flex-start;
}

.footer-column:first-child .footer-logo,
.footer-column:first-child .footer-description {
    text-align: left;
}

.footer-column:first-child .footer-social {
    justify-content: flex-start;
}

.footer-column:first-child .footer-tagline {
    text-align: left;
}

/* Footer Logo Section */
.footer-logo {
    margin-bottom: 20px;
    position: relative;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 15px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    position: relative;
    display: inline-block;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 62px;
    width: 85px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Tagline */
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.footer-tagline:hover::before {
    left: 100%;
}

/* Footer Description */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0 0 30px 0;
    max-width: 350px;
    font-weight: 400;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-description::before,
.footer-description::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.footer-description::before {
    top: 0;
}

.footer-description::after {
    bottom: 0;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    gap: 18px;
    position: relative;
}

.footer-social::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 18px;
    color: var(--primary-gold);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Footer Column Headers */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.3));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
    line-height: 1.4;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 30px;
    font-weight: 500;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: #ffffff;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 5px 0;
    justify-content: center;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item span {
    flex: 1;
    font-weight: 400;
    max-width: 200px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* ================================= */
/* SCROLL INDICATOR STYLES */
/* ================================= */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease-out forwards;
    animation-delay: 3s;
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #ffffff;
    transform: scale(1.1);
}

.scroll-arrow i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    transition: color 0.3s ease;
}

.scroll-arrow:hover i {
    color: #ffffff;
}

@keyframes scrollIndicatorFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ================================= */
/* COMPREHENSIVE RESPONSIVE DESIGN */
/* ================================= */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .excellence-container,
    .authority-container,
    .footer-container {
        max-width: 1600px;
    }
    
    .main-content {
        padding: 0 500px;
    }
    
    .doctor-image {
        width: 320px;
        height: 430px;
    }
    
    .main-title {
        font-size: 160px;
    }
    
    .excellence-title,
    .excellence-subtitle,
    .authority-title {
        font-size: 72px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .main-content {
        padding: 0 300px;
    }
    
    .doctor-image {
        width: 260px;
        height: 350px;
    }
    
    .main-title {
        font-size: 120px;
        letter-spacing: 16px;
    }
    
    .excellence-title,
    .excellence-subtitle,
    .authority-title {
        font-size: 56px;
    }
    
    .excellence-container,
    .authority-container {
        padding: 0 50px;
    }
    
    .footer-container {
        padding: 70px 50px 0;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .header {
        padding: 24px 40px;
    }
    
    .header.scrolled {
        padding: 18px 40px;
    }
    
    .main-content {
        padding: 0 200px;
    }
    
    .doctor-image {
        width: 220px;
        height: 300px;
    }
    
    .left-doctor {
        left: 20px;
    }
    
    .right-doctor {
        right: 20px;
    }
    
    .main-title {
        font-size: 100px;
        letter-spacing: 14px;
    }
    
    .subtitle {
        font-size: 20px;
        letter-spacing: 6px;
    }
    
    .excellence-section {
        padding: 100px 0;
    }
    
    .excellence-container {
        padding: 0 40px;
    }
    
    .excellence-content {
        gap: 60px;
    }
    
    .excellence-title,
    .excellence-subtitle {
        font-size: 48px;
    }
    
    .image-grid {
        height: 500px;
        gap: 20px;
    }
    
    .authority-section {
        padding: 100px 0;
    }
    
    .authority-container {
        padding: 0 40px;
    }
    
    .authority-title {
        font-size: 48px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 25px;
    }
    
    .footer-container {
        padding: 60px 40px 0;
    }
    
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 50px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .header {
        padding: 20px 30px;
    }
    
    .header.scrolled {
        padding: 16px 30px;
    }
    
    .header-right {
        gap: 25px;
    }
    
    .consultation-link {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .phone-number {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .avani-logo {
        padding: 8px 15px;
        margin-right: 20px;
    }
    
    .avani-logo span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .main-content {
        padding: 0 100px;
        min-height: 90vh;
    }
    
    .doctor-image {
        width: 180px;
        height: 250px;
        border-radius: 15px;
    }
    
    .left-doctor {
        left: 15px;
    }
    
    .right-doctor {
        right: 15px;
    }
    
    .main-title {
        font-size: 80px;
        letter-spacing: 12px;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 18px;
        letter-spacing: 5px;
    }
    
    .social-icons {
        left: 20px;
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .excellence-section {
        padding: 80px 0;
    }
    
    .excellence-container {
        padding: 0 30px;
    }
    
    .excellence-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .excellence-title,
    .excellence-subtitle {
        font-size: 42px;
    }
    
    .excellence-tagline {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .excellence-description p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .image-grid {
        height: 400px;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .grid-item {
        border-radius: 15px;
    }
    
    .meet-surgeons-btn {
        padding: 16px 30px;
        font-size: 13px;
    }
    
    .authority-section {
        padding: 80px 0;
    }
    
    .authority-container {
        padding: 0 30px;
    }
    
    .authority-title {
        font-size: 42px;
    }
    
    .title-subtitle {
        font-size: 16px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .logo-card {
        height: 100px;
        padding: 15px;
    }
    
    .authority-logo {
        height: 40px;
        max-width: 100px;
    }
    
    .description-card {
        padding: 40px 30px;
    }
    
    .description-card p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .description-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .footer-container {
        padding: 60px 30px 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-column:first-child .footer-logo,
    .footer-column:first-child .footer-description {
        text-align: center;
    }
    
    .footer-column:first-child .footer-social {
        justify-content: center;
    }
    
    .footer-column:first-child .footer-tagline {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .header {
        padding: 16px 20px;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }
    
    .header.scrolled {
        padding: 12px 20px;
    }
    
    .header-left {
        flex: 1;
        text-align: left;
    }
    
    .header-right {
        flex: 1;
        text-align: right;
        justify-content: flex-end;
        gap: 15px;
    }
    
    .consultation-link {
        font-size: 11px;
        text-align: left;
        padding: 8px 0;
    }
    
    .phone-number {
        font-size: 13px;
        text-align: right;
    }
    
    .avani-logo {
        padding: 6px 12px;
        margin: 0;
        text-align: center;
    }
    
    .avani-logo span {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .menu-icon {
        margin: 0;
    }
    
    .menu-text {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .main-content {
        padding: 0 20px;
        min-height: 80vh;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        position: relative;
    }
    
    .doctor-image {
        position: absolute;
        width: 150px;
        height: 200px;
        border-radius: 12px;
        margin: 0;
        z-index: 5;
    }
    
    .left-doctor {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    
    .right-doctor {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    
    .main-title {
        font-size: 60px;
        letter-spacing: 8px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .subtitle {
        font-size: 16px;
        letter-spacing: 4px;
        text-align: center;
    }
    
    .social-icons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        flex-direction: row;
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .excellence-section {
        padding: 60px 0;
    }
    
    .excellence-container {
        padding: 0 20px;
    }
    
    .excellence-title,
    .excellence-subtitle {
        font-size: 36px;
    }
    
    .excellence-tagline {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .excellence-description p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .image-grid {
        height: 350px;
        gap: 12px;
        max-width: 400px;
    }
    
    .grid-item {
        border-radius: 12px;
    }
    
    .grid-item:hover {
        transform: translateY(-5px) rotateX(1deg);
    }
    
    .meet-surgeons-btn {
        padding: 14px 25px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .authority-section {
        padding: 60px 0;
    }
    
    .authority-container {
        padding: 0 20px;
    }
    
    .authority-title {
        font-size: 36px;
    }
    
    .title-subtitle {
        font-size: 15px;
    }
    
    .title-decoration {
        gap: 15px;
    }
    
    .decoration-line {
        width: 60px;
    }
    
    .decoration-dot {
        width: 10px;
        height: 10px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .logo-card {
        height: 80px;
        padding: 12px;
    }
    
    .authority-logo {
        height: 35px;
        max-width: 80px;
    }
    
    .description-card {
        padding: 30px 20px;
    }
    
    .description-card p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .description-icon i {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .footer-container {
        padding: 50px 20px 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo h3 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        padding: 10px 16px;
        letter-spacing: 1.5px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 15px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        gap: 15px;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .footer-bottom-content {
        padding: 0 20px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Mobile Menu Adjustments */
    .menu-content {
        width: 100%;
        padding: 50px 20px;
    }
    
    .menu-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .menu-logo span {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .menu-logo small {
        font-size: 10px;
        letter-spacing: 4px;
    }
    
    .menu-link {
        font-size: 15px;
        padding: 20px 0;
        letter-spacing: 1px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .header {
        padding: 12px 15px;
        gap: 8px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .header.scrolled {
        padding: 8px 15px;
    }
    
    .header-left {
        flex: 1;
        text-align: left;
    }
    
    .header-right {
        flex: 1;
        text-align: right;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .consultation-link {
        font-size: 10px;
        letter-spacing: 0.8px;
        text-align: left;
    }
    
    .phone-number {
        font-size: 12px;
        letter-spacing: 0.8px;
        text-align: right;
    }
    
    .avani-logo {
        padding: 5px 10px;
        margin: 0;
    }
    
    .avani-logo span {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
    
    .menu-text {
        font-size: 11px;
        letter-spacing: 0.8px;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
    }
    
    .main-content {
        padding: 0 15px;
        min-height: 70vh;
        gap: 25px;
        position: relative;
    }
    
    .doctor-image {
        position: absolute;
        width: 120px;
        height: 160px;
        border-radius: 10px;
        margin: 0;
        z-index: 5;
    }
    
    .left-doctor {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .right-doctor {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-title {
        font-size: 48px;
        letter-spacing: 6px;
        margin-bottom: 12px;
    }
    
    .subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .social-icons {
        bottom: 15px;
        gap: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .excellence-section {
        padding: 50px 0;
    }
    
    .excellence-container {
        padding: 0 15px;
    }
    
    .excellence-title,
    .excellence-subtitle {
        font-size: 28px;
    }
    
    .excellence-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .excellence-description p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .image-grid {
        height: 280px;
        gap: 10px;
        max-width: 320px;
    }
    
    .grid-item {
        border-radius: 10px;
    }
    
    .meet-surgeons-btn {
        padding: 12px 20px;
        font-size: 11px;
        letter-spacing: 0.8px;
    }
    
    .authority-section {
        padding: 50px 0;
    }
    
    .authority-container {
        padding: 0 15px;
    }
    
    .authority-title {
        font-size: 28px;
    }
    
    .title-subtitle {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .title-decoration {
        gap: 12px;
    }
    
    .decoration-line {
        width: 50px;
        height: 1.5px;
    }
    
    .decoration-dot {
        width: 8px;
        height: 8px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }
    
    .logo-card {
        height: 70px;
        padding: 10px;
    }
    
    .authority-logo {
        height: 30px;
        max-width: 70px;
    }
    
    .description-card {
        padding: 25px 15px;
    }
    
    .description-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .description-icon i {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .footer-container {
        padding: 40px 15px 0;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-logo h3 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .footer-tagline {
        font-size: 0.75rem;
        padding: 8px 14px;
        letter-spacing: 1px;
    }
    
    .footer-description {
        font-size: 0.85rem;
        padding: 12px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        gap: 12px;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .footer-bottom-content {
        padding: 0 15px;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    /* Mobile Menu Adjustments */
    .menu-content {
        padding: 40px 15px;
    }
    
    .menu-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .menu-logo span {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .menu-logo small {
        font-size: 9px;
        letter-spacing: 3px;
    }
    
    .menu-link {
        font-size: 14px;
        padding: 18px 0;
        letter-spacing: 0.8px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .header {
        padding: 10px 12px;
        gap: 6px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .header-left {
        flex: 1;
        text-align: left;
    }
    
    .header-right {
        flex: 1;
        text-align: right;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .consultation-link {
        font-size: 9px;
        letter-spacing: 0.6px;
        text-align: left;
    }
    
    .phone-number {
        font-size: 11px;
        letter-spacing: 0.6px;
        text-align: right;
    }
    
    .avani-logo {
        padding: 4px 8px;
        margin: 0;
    }
    
    .avani-logo span {
        font-size: 7px;
        letter-spacing: 0.6px;
    }
    
    .main-content {
        padding: 0 12px;
        gap: 20px;
        position: relative;
    }
    
    .doctor-image {
        position: absolute;
        width: 100px;
        height: 140px;
        margin: 0;
        z-index: 5;
    }
    
    .left-doctor {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .right-doctor {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .main-title {
        font-size: 40px;
        letter-spacing: 5px;
    }
    
    .subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .excellence-title,
    .excellence-subtitle {
        font-size: 24px;
    }
    
    .image-grid {
        height: 240px;
        gap: 8px;
        max-width: 280px;
    }
    
    .authority-title {
        font-size: 24px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .logo-card {
        height: 60px;
        padding: 8px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .main-content {
        min-height: 60vh;
        padding: 0 100px;
    }
    
    .doctor-image {
        width: 120px;
        height: 160px;
    }
    
    .main-title {
        font-size: 50px;
        margin-bottom: 10px;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    .social-icons {
        bottom: 10px;
    }
    
    .excellence-section {
        padding: 40px 0;
    }
    
    .authority-section {
        padding: 40px 0;
    }
    
    .footer-container {
        padding: 40px 20px 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .doctor-image img,
    .excellence-img,
    .authority-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .social-icons,
    .scroll-indicator,
    .menu-icon,
    .slide-menu {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
        min-height: auto;
    }
    
    .doctor-image {
        position: static;
        width: 200px;
        height: 250px;
        margin: 20px auto;
        display: block;
    }
    
    .main-title {
        font-size: 48px;
        color: #000;
        text-shadow: none;
    }
    
    .subtitle {
        font-size: 18px;
        color: #333;
        text-shadow: none;
    }
    
    .excellence-section,
    .authority-section {
        background: #fff;
        color: #000;
        padding: 40px 0;
    }
    
    .excellence-title,
    .excellence-subtitle,
    .authority-title {
        color: #000;
        text-shadow: none;
    }
    
    .footer {
        background: #fff;
        color: #000;
    }
    
    .footer-logo h3 {
        color: #333;
        text-shadow: none;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .doctor-image,
    .main-title,
    .subtitle,
    .social-icon {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-bg: #000000;
        --glass-bg: rgba(255, 255, 255, 0.05);
    }
}

/* Focus Styles for Accessibility */
@media (any-hover: hover) {
    .consultation-link:focus,
    .menu-link:focus,
    .social-icon:focus,
    .meet-surgeons-btn:focus {
        outline: 2px solid var(--primary-gold);
        outline-offset: 2px;
    }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
    .consultation-link,
    .menu-link,
    .social-icon,
    .meet-surgeons-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .doctor-image:hover {
        transform: none;
    }
    
    .grid-item:hover {
        transform: none;
    }
}

/* Container Query Support (Future) */
@supports (container-type: inline-size) {
    .excellence-container {
        container-type: inline-size;
    }
    
    @container (max-width: 600px) {
        .excellence-content {
            grid-template-columns: 1fr;
        }
    }
}