/* --- DESIGN SYSTEM --- */
:root {
    --header-height: 4rem;
    
    /* Colors */
    --gold: #d4af37;
    --gold-light: #e0c060;
    --gold-dark: #b8860b;
    --bg-dark: #0a0a0a;
    --bg-card: #121212;
    --text-white: #f5f5f5;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    
    /* Typography */
    --body-font: 'Outfit', sans-serif;
    --title-font: 'Playfair Display', serif;
    
    /* Transitions */
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: var(--title-font);
    font-weight: 700;
}

ul {
    list-style: none;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding: 6rem 0;
    overflow-x: hidden;
}

.section-title-wrap {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.section-title span {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
}

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

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
}

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

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

.btn-small {
    padding: 0.7rem 1.4rem;
    font-size: 0.75rem;
    background-color: var(--gold);
    color: var(--bg-dark);
}

/* --- HEADER --- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.scroll-header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle {
    font-size: 1.3rem;
    cursor: pointer;
    display: none; /* Desktop hidden */
}

@media screen and (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        padding: 5rem 0;
        transition: right 0.4s ease;
        text-align: center;
        z-index: 100;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-menu.show-menu {
        right: 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-btns .btn-small {
        display: none;
    }
}

@media screen and (min-width: 968px) {
    .nav-menu {
        position: static;
        width: auto;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
    }

    .nav-list {
        display: flex;
        gap: 3rem;
    }
    
    .nav-link:hover {
        color: var(--gold);
    }

    .nav-close {
        display: none;
    }
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-container {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;
}

@media screen and (min-width: 968px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    max-width: 700px;
}

.hero-subtitle {
    font-family: var(--body-font);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-img-wrap {
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border: 1px solid var(--gold);
    box-shadow: 10px 10px 0px -5px var(--gold);
    transition: var(--transition);
}

@media screen and (max-width: 400px) {
    .hero-img {
        box-shadow: none;
    }
    .hero-overlay-decor {
        display: none;
    }
}

.hero-img-wrap:hover .hero-img {
    transform: translate(5px, 5px);
    box-shadow: 5px 5px 0px -5px var(--gold);
}

.hero-overlay-decor {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 3rem;
    height: 3rem;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    z-index: -1;
}

@media screen and (min-width: 968px) {
    .hero-img {
        height: 550px;
        box-shadow: 20px 20px 0px -5px var(--gold);
    }
    .hero-img-wrap:hover .hero-img {
        box-shadow: 10px 10px 0px -5px var(--gold);
    }
}

/* --- TRUST --- */
.trust {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 2.5rem;
    font-family: var(--title-font);
    color: var(--gold);
}

@media screen and (min-width: 768px) {
    .trust-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.service-card {
    background-color: var(--bg-card);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-list {
    margin-top: auto;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-list li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- ABOUT --- */
.about-container {
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: 0rem;
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 1.2rem;
    text-align: center;
    border: 5px solid var(--bg-dark);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.about-description {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-features {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

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

.about-feature i {
    color: var(--gold);
}

@media screen and (min-width: 768px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* --- WHY CHOOSE US --- */
.why {
    background-color: var(--bg-card);
}

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

.why-item {
    padding: 3rem 2rem;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--gold);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.why-item h3 {
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--text-muted);
}

@media screen and (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- PRICING --- */
.pricing-layout {
    align-items: center;
}

.pricing-info p {
    margin: 1.5rem 0 2rem;
    color: var(--text-muted);
}

.pricing-list {
    background-color: var(--bg-card);
    padding: 3rem;
    border-left: 3px solid var(--gold);
}

.price-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-name {
    font-weight: 500;
    white-space: nowrap;
}

.price-dash {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    margin: 0 1rem;
}

.price-val {
    color: var(--gold);
    font-family: var(--title-font);
}

@media screen and (min-width: 768px) {
    .pricing-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
    }
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-img:hover {
    filter: grayscale(0);
    transform: scale(1.03);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    grid-template-columns: 1fr;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    position: relative;
}

.stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.client {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
}

.client-status {
    color: var(--gold);
    font-size: 0.8rem;
}

@media screen and (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- CTA --- */
.cta {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('Images/Gemini_Generated_Image_m4vrcam4vrcam4vr.png');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.cta-content p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* --- CONTACT --- */
.contact-container {
    gap: 4rem;
}

.contact-details {
    margin: 3rem 0;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.3rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-muted);
}

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

.social-links a {
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

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

.map-placeholder {
    height: 100%;
    background-color: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    padding: 2rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.map-placeholder h3 {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- FOOTER --- */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
    color: var(--text-muted);
}

.footer-tag {
    color: var(--gold);
    font-weight: 300;
    margin-top: 0.5rem;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 1s ease forwards;
}
