/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    /* Color Palette - Premium Monochrome & Gold */
    --clr-bg: #fdfdfd;
    --clr-text: #1a1a1a;
    --clr-text-light: #555555;
    --clr-primary: #bfa15f; /* Elegant Gold */
    --clr-primary-dark: #a68a4a;
    --clr-dark: #121212;
    --clr-light: #ffffff;
    --clr-grey: #f4f4f4;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing & Layout */
    --container-max: 1100px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

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

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--clr-dark);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--clr-text-light);
}

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

ul {
    list-style: none;
}

/* =========================================
   UTILITIES & COMPONENTS
========================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--clr-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-height: 48px; /* Mobile accessibility */
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-light);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-light);
    border: 1px solid var(--clr-light);
}

.btn-secondary:hover {
    background-color: var(--clr-light);
    color: var(--clr-dark);
}

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

.btn-outline:hover {
    background-color: var(--clr-dark);
    color: var(--clr-light);
}

.full-width {
    width: 100%;
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NAVIGATION
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--clr-light);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle .bar {
    color: var(--clr-dark);
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--clr-dark);
}

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

.logo {
    display: flex;
    flex-direction: column;
    color: var(--clr-light);
}

.brand-toni {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-essensuals {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 300;
}

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

.nav-links a {
    color: var(--clr-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background-color: var(--clr-primary) !important;
    color: var(--clr-light) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
}

.nav-cta:hover {
    background-color: var(--clr-primary-dark) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--clr-light);
    transition: all 0.3s ease;
}

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 999;
    top: -100%;
    transition: top 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-overlay.active {
    top: 0;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    max-width: var(--container-max);
    width: 100%;
    padding: 0 20px;
    color: var(--clr-light);
    margin-top: 5rem;
}

.hero-content h1 {
    color: var(--clr-light);
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--clr-primary);
    font-style: italic;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

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

/* =========================================
   TRUST SECTION
========================================= */
.trust-section {
    background-color: var(--clr-dark);
    color: var(--clr-light);
    padding: 4rem 0;
    text-align: center;
}

.trust-section h3 {
    color: var(--clr-primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    padding: 1rem;
}

.stars {
    color: var(--clr-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(191, 161, 95, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-bg);
}

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

.service-card {
    background: var(--clr-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
    text-align: center;
}

.service-info h3 {
    margin-bottom: 1rem;
}

/* =========================================
   PRICING SECTION
========================================= */
.pricing {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pricing-category h3 {
    color: var(--clr-primary);
    border-bottom: 1px solid var(--clr-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.pricing-list li {
    margin-bottom: 1rem;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 0.5rem;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.pricing-item .price {
    color: var(--clr-dark);
    font-weight: 600;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-top: 0.2rem;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-grey);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--clr-primary);
    color: var(--clr-light);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.why-list {
    margin: 2rem 0;
}

.why-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-dark);
    font-weight: 500;
}

.why-list i {
    color: var(--clr-primary);
}

/* =========================================
   SIGNATURE SERVICES
========================================= */
.signature-services {
    padding: var(--spacing-lg) 0;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1595476108010-b4d1f10d5e43?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-light);
}

.signature-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.signature-box h2 {
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.signature-box p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* =========================================
   REVIEWS SECTION
========================================= */
.reviews {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--clr-light);
    padding: 2.5rem 2rem;
    border: 1px solid #ebebeb;
    text-align: center;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* =========================================
   GALLERY SECTION
========================================= */
.gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-dark);
}

.gallery .section-title h2 {
    color: var(--clr-light);
}

.gallery .section-title p {
    color: #ccc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* =========================================
   CONTACT SECTION
========================================= */
.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-bg);
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-top: 5px;
}

.contact-map {
    flex: 1;
    display: flex;
    min-height: 400px;
    background-color: #eee;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background-color: var(--clr-dark);
    color: var(--clr-light);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-brand h3 {
    color: var(--clr-light);
    margin-bottom: 0;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--clr-primary);
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-top: -5px;
}

.footer-socials {
    margin: 2rem 0;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--clr-light);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

/* =========================================
   FLOATING WHATSAPP
========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 100;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* =========================================
   RESPONSIVE - TABLET (Max 992px)
========================================= */
@media (max-width: 992px) {
    .about-flex, .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

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

    /* Navigation - Trigger hamburger on Tablet */
    .nav-links {
        display: none; /* Hide standard links */
    }

    .menu-toggle {
        display: block; /* Show hamburger */
    }

    .navbar {
        background-color: var(--clr-light); /* Always solid on mobile/tablet */
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .navbar .logo,
    .navbar .menu-toggle .bar {
        color: var(--clr-dark);
    }

    .navbar .menu-toggle .bar {
        background-color: var(--clr-dark);
    }

    /* Mobile Menu Active States */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--clr-light);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--clr-light);
    }

    /* Inject clone of nav-links into overlay via JS */
    .nav-overlay .nav-links {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .nav-overlay .nav-links h1 {
        display: none;
    }

    .nav-overlay .nav-links a {
        font-size: 1.5rem;
    }

    .nav-overlay .nav-links .nav-cta {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

/* =========================================
   RESPONSIVE - MOBILE (Max 768px)
========================================= */
@media (max-width: 768px) {
    /* Layout & Spacing Defaults */
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .container {
        padding: 0 16px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    /* Hero */
    .hero-content {
        margin-top: 2rem;
        text-align: center;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    /* Other Grids */
    .trust-grid, 
    .services-grid, 
    .pricing-grid,
    .reviews-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        gap: 10px;
    }

    /* Contact */
    .contact-map {
        min-height: 300px;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}
