@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0f1115;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent: #d4af37; /* Amber / Gold */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05), transparent 25%);
    background-attachment: fixed;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* NAVBAR */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.header-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    margin-top: 60px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid var(--accent);
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

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

/* SECTIONS */
section {
    padding: 6rem 5%;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--accent);
}

/* ABOUT */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-img {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-glass);
}
.about-img img {
    width: 100%;
    display: block;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-style: italic;
}

.service-card p {
    color: var(--text-muted);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.service-card:hover .service-img {
    filter: grayscale(0%);
}

/* CLIENTS CAROUSEL */
.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: contain; /* Changed from cover so nothing is cropped */
    background: rgba(0,0,0,0.3); /* Dark background for transparent areas */
}

.client-info {
    padding: 1.5rem;
    text-align: center;
}
.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.client-info p {
    color: var(--accent);
    font-size: 0.9rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

@media (max-width: 1150px) {
    .prev-btn { left: 10px; background: rgba(0,0,0,0.5); }
    .next-btn { right: 10px; background: rgba(0,0,0,0.5); }
}

/* FOOTER */
footer {
    background: rgba(0,0,0,0.8);
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

.footer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-box {
    padding: 1rem 2rem;
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    background: var(--bg-glass);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-box:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.3s;
}
.float-wa:hover {
    transform: scale(1.1);
}

/* UTILS */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    /* Layout and Spacing */
    section { padding: 4rem 5%; }
    .about-container { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Header / Nav */
    header { padding: 1rem 5%; flex-direction: column; gap: 1rem; }
    .brand { font-size: 1.5rem; text-align: center; }
    nav ul { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 1rem; 
    }
    nav a { font-size: 0.8rem; }
    
    /* Hero */
    .hero { margin-top: 100px; min-height: 80vh; }
    .hero h1 { font-size: 2.5rem; letter-spacing: 2px; }
    .hero p { font-size: 1rem; }
    
    /* Typography */
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    .about-text h2 { font-size: 2.2rem; }
    
    /* Carousel Adjustments */
    .carousel-slide img { height: 250px; } /* Smaller height for mobile */
    .carousel-btn { font-size: 1.2rem; padding: 0.8rem; }
    
    /* Footer */
    .footer-content h2 { font-size: 2rem; }
    .contact-links { flex-direction: column; gap: 1rem; }
    .contact-box { font-size: 0.9rem; padding: 0.8rem 1rem; }
}
