/* === Reset & Variables === */
:root {
    /* Premium Color Palette */
    --primary-color: #8C1C13;
    /* Deep Maroon / Red */
    --primary-dark: #590d08;
    --secondary-color: #D4AF37;
    /* Luxury Gold */
    --secondary-light: #F3E5AB;
    --text-main: #2C2C2C;
    /* Soft Black */
    --text-muted: #666666;
    --bg-light: #FAF9F6;
    /* Off-white / Cream */
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(140, 28, 19, 0.15);

    --border-radius: 8px;
    /* Sharper corners for modern luxury */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--secondary-color);
    margin: 20px 0 25px 0;
}

.divider.center {
    margin: 20px auto 25px auto;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(140, 28, 19, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(140, 28, 19, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.btn-whatsapp {
    background-color: #D4AF37;
    /* Gold tone */
    color: var(--primary-dark);
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp:hover {
    background-color: #E6C24F;
    transform: scale(1.05);
}

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

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
    transition: var(--transition);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 2px;
    transition: var(--transition);
}

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

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

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--bg-white);
    font-weight: 500;
    position: relative;
}

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

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

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

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    border: 1px solid var(--secondary-color);
    padding: 10px 24px !important;
    border-radius: 4px;
}

.btn-nav::after {
    display: none;
}

.navbar.scrolled .btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

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

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1548943487-a2e4142f3050?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(140, 28, 19, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    font-style: italic;
}

.hero-content p {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 50px;
    font-weight: 300;
}

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

/* === About Section === */
.about {
    background-color: var(--bg-light);
    padding: 120px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.image-frame::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--secondary-color);
    z-index: 1;
}

.image-frame img {
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
    filter: brightness(0.9) contrast(1.1);
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    right: -20px;
    background-color: var(--bg-white);
    padding: 25px;
    z-index: 3;
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 5px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3.2rem;
    line-height: 1.2;
}

.about-text h2 span {
    font-style: italic;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature p {
    font-size: 0.95rem;
    margin: 0;
}

/* === Services Section === */
.services {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 0;
    /* Boxy elegant feel */
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--secondary-color);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    transition: var(--transition);
}

.service-card:hover .card-img {
    filter: brightness(1);
}

.card-content {
    padding: 50px 40px;
    position: relative;
    background-color: var(--bg-white);
}

.card-icon {
    position: absolute;
    top: -40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--secondary-light);
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.menu-list {
    list-style: none;
    border-top: 1px solid #EEEEEE;
    padding-top: 25px;
}

.menu-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.menu-list i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* === CTA Section === */
.cta {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1626804475297-41609ea0eb49?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
    /* Dark solid overlay */
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-logo {
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    margin-bottom: 30px;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #CCCCCC;
    margin-bottom: 50px;
    font-weight: 300;
}

/* === Footer === */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 100px 30px 30px;
}

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

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 70px;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    background-color: var(--bg-light);
    padding: 2px;
}

.footer-brand h3 {
    color: var(--bg-white);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: #A0A0A0;
    max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #A0A0A0;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* === Animation Classes === */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive Details === */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 30px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active a {
        color: var(--text-main);
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar {
        padding: 15px 0;
        background-color: rgba(25, 25, 25, 0.9);
    }

    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

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

    .card-content {
        padding: 40px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -30px;
        right: 20px;
    }

    .cta {
        padding: 80px 20px;
    }
}