/* ===== BEAUTIFUL DETAILS - LUXURY DETAILING ===== */
/* Color Palette: Deep blacks, charcoal, gold accents */

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #888888;
    --light-gray: #cccccc;
    --white: #f5f5f5;
    --gold: #c9a84c;
    --gold-light: #dfc06e;
    --gold-dark: #a8872e;
    --gold-glow: rgba(201, 168, 76, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0 40px;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 0;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--light-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 25px;
    font-size: 0.85rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 100%),
                url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=1920&q=80') center/cover no-repeat;
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
    background: none;
    overflow: hidden;
}

.slideshow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}

.hero-slideshow .hero-content {
    position: relative;
    z-index: 2;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.4);
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(10, 10, 10, 0.7);
}

.slide-prev {
    left: 30px;
}

.slide-next {
    right: 30px;
}

.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(201, 168, 76, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1.2s ease;
}

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

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 15px 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold);
    padding: 15px 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-light);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--medium-gray);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1rem;
}

.gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
}

/* ===== ABOUT / INTRO ===== */
.about {
    background: var(--dark);
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--dark-gray);
}

.stat h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 400;
}

.stat p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(0.9);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* ===== SERVICES ===== */
.services {
    background: var(--black);
}

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

/* Section Banners */
.section-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.section-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
}

.section-banner:hover img {
    transform: scale(1.03);
}

.section-banner .banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    background: linear-gradient(transparent, rgba(10,10,10,0.9));
}

.section-banner .banner-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
}

.section-banner .banner-overlay p {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .section-banner {
        height: 220px;
        margin-bottom: 30px;
    }
}

.service-card {
    background: var(--charcoal);
    border: 1px solid var(--dark-gray);
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--dark);
}

.why-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--charcoal);
    border: 1px solid var(--dark-gray);
    transition: border-color 0.3s ease;
}

.why-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.why-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 400;
}

.why-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--black);
}

.testimonial-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--charcoal);
    border: 1px solid var(--dark-gray);
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: 15px;
    left: 25px;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    color: var(--gold);
    font-size: 0.85rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
    text-align: center;
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-section p {
    color: var(--medium-gray);
    max-width: 500px;
    margin: 0 auto 35px;
    font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--dark);
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-info p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail .icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.contact-detail span {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    background: var(--charcoal);
    border: 1px solid var(--dark-gray);
    color: var(--light-gray);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555;
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form button {
    width: 100%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--dark-gray);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col a {
    display: block;
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 25px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--dark-gray);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 70px 20px;
    }

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

    .about-image::after {
        display: none;
    }
}
