/* ==========================================================================
   CSS Variables & Global Styles
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #D4AF37; /* Gold */
    --color-primary-dark: #b5952f;
    --color-primary-light: #f5eaca;
    --color-bg-dark: #121212;
    --color-bg-light: #f9f9f9;
    --color-white: #ffffff;
    --color-text-main: #333333;
    --color-text-muted: #666666;
    --color-text-light: #f4f4f4;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-bg-dark);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

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

.text-white {
    color: var(--color-white) !important;
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography styles */
.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--color-text-main);
}

.navbar.scrolled .logo-text {
    color: var(--color-bg-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax */
    padding-top: 80px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text-box {
    max-width: 650px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.hero-title {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Floating Cards Animation */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.metric-card {
    right: 5%;
    top: 30%;
}

.satisfaction-card {
    right: 15%;
    bottom: 20%;
    animation-delay: 2s;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bg-dark);
}

.floating-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   2. About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-glass-frame {
    position: relative;
    padding: 1rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.image-glass-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50%;
    height: 50%;
    border-top: 4px solid var(--color-primary);
    border-left: 4px solid var(--color-primary);
    border-top-left-radius: 30px;
    z-index: -1;
}

.image-glass-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50%;
    height: 50%;
    border-bottom: 4px solid var(--color-primary);
    border-right: 4px solid var(--color-primary);
    border-bottom-right-radius: 30px;
    z-index: -1;
}

.about-img {
    border-radius: calc(var(--radius-lg) - 0.5rem);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.feature-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* ==========================================================================
   3. Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.service-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    background: var(--color-white);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   4. Event Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-overlay i {
    color: var(--color-white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: var(--transition-smooth);
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   5. Why Choose Us
   ========================================================================== */
.feature-cards-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-highlight-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.feature-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-highlight-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   6. Contact / Booking Form
   ========================================================================== */
.contact-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.85);
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-desc {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.c-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.contact-item h5 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.phone-link {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.phone-link:hover {
    color: var(--color-white);
}

/* Glassmorphism Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.dual-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

select option {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   7. CTA & Footer
   ========================================================================== */
.final-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 0;
}

.final-cta h2 {
    color: var(--color-white);
}

.final-cta.btn-primary {
    background: var(--color-bg-dark);
    color: var(--color-white);
    box-shadow: none;
}

.final-cta .btn-primary:hover {
    background: #000;
}

.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin: 1.5rem 0;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    visibility: visible;
}

.fade-up { transform: translateY(50px); }
.fade-up.active { transform: translateY(0); }

.fade-right { transform: translateX(-50px); }
.fade-right.active { transform: translateX(0); }

.fade-left { transform: translateX(50px); }
.fade-left.active { transform: translateX(0); }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-text-box { padding: 2rem; }
    .about-container, .contact-container { gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        height: 100dvh;
        background: var(--color-bg-dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-links.active { right: 0; }

    .nav-links a:not(.btn) {
        color: var(--color-white) !important;
        font-size: 1.25rem;
    }

    .mobile-menu-btn { display: block; }
    .navbar.scrolled .mobile-menu-btn { color: var(--color-bg-dark); }
    .logo-text { font-size: 1.35rem; }

    .floating-card { display: none; }
    .hero-content { justify-content: center; }

    .about-container { grid-template-columns: 1fr; }
    .about-image-wrapper { order: -1; margin-bottom: 2rem; }
    .about-img { height: 350px; }

    .contact-container { grid-template-columns: 1fr; }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links { justify-content: center; margin-top: 1rem; }
    .footer-contact p { justify-content: center; }

    .why-us-section {
        display: none !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

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

@media (max-width: 576px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 3rem 0; }
    
    .hero-section { padding-top: 60px; min-height: 100vh; min-height: 100dvh; }
    .hero-title { font-size: 2rem; margin-bottom: 1rem; text-align: center; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; text-align: center; }
    .hero-actions { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-actions .btn { width: 100%; padding: 0.875rem 1rem; }
    .hero-text-box { padding: 1.5rem; border-radius: var(--radius-sm); text-align: center; }
    
    .section-title { font-size: 1.75rem; margin-bottom: 1rem; }
    .section-desc { font-size: 1rem; margin-bottom: 1.5rem; }
    .section-header { margin-bottom: 2.5rem; }
    
    .about-img { height: 250px; border-radius: var(--radius-md); }
    .image-glass-frame { padding: 0.75rem; }
    .feature-list li { font-size: 1rem; margin-bottom: 0.75rem; }
    
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-card { padding: 2rem 1.5rem; border-radius: var(--radius-md); }
    .service-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 1rem; }
    .service-title { font-size: 1.25rem; }
    
    .feature-cards-wrap { gap: 1.5rem; }
    .feature-highlight-card { padding: 2rem 1.5rem; text-align: center; }
    .feature-icon { font-size: 2rem; margin-bottom: 1rem; }
    
    .contact-form-wrapper { padding: 1.5rem; border-radius: var(--radius-md); }
    .contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 1.5rem; text-align: center; }
    .dual-group { grid-template-columns: 1fr; gap: 1rem; }
    .contact-item { flex-direction: column; gap: 0.75rem; text-align: center; align-items: center; }
    .c-icon { width: 50px; height: 50px; font-size: 1.25rem; }
    
    .final-cta { padding: 3rem 0; }
    .final-cta h2 { font-size: 1.75rem; }
    .final-cta p { font-size: 1rem; }
    .final-cta .btn { width: 100%; margin-top: 1.5rem; }
}
