/* Reset & Base */
:root {
    --primary: #1a1a1a;
    --secondary: #c5a059;
    --text: #e0e0e0;
    --bg: #0f0f0f;
    --surface: #1e1e1e;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    /* Default light base */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.4s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(45deg, var(--secondary), #d4b069);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #b89552;
    /* Slight definition */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    opacity: 0.2;
    transition: 0.4s;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 25px;
    font-size: 0.9rem;
    margin-top: auto;
    font-weight: 600;
    text-transform: uppercase;
    /* Added */
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--secondary);
    color: #000;
}

/* Header - DARK PREMIUM */
/* Header - ROW LAYOUT */
header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    /* Slimmer padding */
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

nav.centered-nav {
    display: flex;
    flex-direction: row;
    /* Horizontal Row */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

.logo-container {
    margin-bottom: 0;
    /* No margin needed in row */
    text-align: left;
    /* Align Left */
    flex: 0 0 auto;
}

.site-logo {
    max-height: 60px;
    /* Smaller Logo for Row */
    width: auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary);
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex: 1;
    /* Take central space */
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    color: #f0f0f0;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.nav-cta {
    flex: 0 0 auto;
}

.nav-cta .btn-outline {
    margin: 0;
    padding: 8px 20px;
    font-size: 0.8rem;
    border-color: var(--secondary);
    color: var(--secondary);
}

.nav-cta .btn-outline:hover {
    background: var(--secondary);
    color: #000;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transform: scale(1.05);
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    color: #fff;
    /* Always white on hero */
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Sections Common */
.services,
.about,
.contact,
footer {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary);
    /* Default dark heading */
}

/* Specific Section Colors overrides later */

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

/* About - WHITE Background */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.stat-item h3 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}


/* Services - DARK Background (Contrast) */
.services {
    padding: 100px 0;
    background: #141414;
    color: #e0e0e0;
}

.services .section-title h2 {
    color: var(--secondary);
    /* Gold Title on dark */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: #1e1e1e;
    /* Dark Card */
    padding: 30px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    transition: 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
}

.service-card h3 {
    color: #f0f0f0;
    margin-bottom: 10px;
}

.service-card p {
    color: #aaa;
    font-size: 0.95rem;
}

.service-card i {
    margin-bottom: 10px;
    transition: 0.4s;
    color: var(--secondary);
}

.service-card:hover i {
    transform: scale(1.2);
    color: #fff;
}


/* Contact - DARK GREY Background */
.contact {
    padding: 100px 0;
    background: #1a1a1a;
}

.contact .section-title h2 {
    color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #222;
    /* Darker container */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.contact-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #f0f0f0;
}

.contact-item p {
    color: #bbb;
    font-size: 1rem;
}

.map-container {
    position: relative;
    min-height: 400px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%);
    /* Dark map */
    opacity: 0.8;
}

/* Socials - Nav */
.social-nav {
    display: flex;
    gap: 15px;
    margin-right: 20px;
    align-items: center;
}

.social-nav a {
    color: #bbb;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-nav a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Socials - Contact */
.contact-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.contact-socials a {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: 0.3s;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-socials a:hover {
    background: var(--secondary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Footer (Dark) */
footer {
    padding: 40px 0;
    text-align: center;
    background: #000;
    color: #666;
    font-size: 0.9rem;
    border-top: 4px solid var(--secondary);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Utilities */
.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile */
/* Mobile - Adjust for Row Header */
@media (max-width: 900px) {
    nav.centered-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .logo-container {
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .carousel {
        height: 300px;
        margin-bottom: 30px;
    }

    .map-container {
        height: 300px;
    }
}

/* Particles Removed */