/* CSS Variables & Reset */
:root {
    --color-bg: #FCFAF8; /* Light Beige / Off-white */
    --color-text-main: #2C2C2C; /* Soft Black */
    --color-text-light: #666666;
    --color-accent: #E6D5D0; /* Pale Pink / Beige */
    --color-accent-dark: #D4Beb5;
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: all 0.6s ease;
    --transition-fast: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 400;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -0.02em;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    transition: var(--transition-slow);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(252, 250, 248, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 1rem 3rem;
}

.navbar.menu-active {
    background-color: var(--color-bg);
    z-index: 3000;
    transition: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem; /* Reduced horizontal padding */
    }
    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-text-main);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg); /* Use var */
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        text-align: center;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text-main);
    transition: var(--transition-fast);
}

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

.btn-contact {
    border: 1px solid #C97E3A;
    padding: 0.5rem 1.5rem;
    transition: var(--transition-fast);
}

.btn-contact-highlighted {
    border: 1px solid #C97E3A;
    padding: 0.5rem 1.5rem;
    background-color: #C97E3A;
    color: var(--color-white);
}

.btn-contact:hover {
    background-color: #C97E3A;
    color: var(--color-white);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-main); 
}

/* If hero image is dark, might need white text. Since we asked for beige/white tones, dark text is risky but 'overlay' isn't styled.
   Let's check image brightness visually. The images are light/beige. Dark text is good. */

.hero-tagline {
    font-size: 1.2rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem; /* Smaller hero title on mobile */
    }
    .hero-tagline {
        font-size: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background-color: rgba(0,0,0,0.1);
}

.scroll-indicator span {
    display: block;
    width: 100%;
    height: 0;
    background-color: var(--color-text-main);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { height: 0; top: 0; }
    50% { height: 50%; top: 0; }
    100% { height: 0; top: 100%; } /* Simplified for visual effect */
    /* Correct scroll anim requires positioning */
}

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

.about-image img {
    border-radius: 4px; /* Minimal roundness */
    box-shadow: 20px 20px 0 var(--color-accent);
}

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

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

.service-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition-fast);
    /* border: 1px solid transparent; */
}

/* .service-card:hover {
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
} */

.service-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Testimonials Section */
.testimonials {
    background-color: var(--color-accent); /* Pale background ? maybe too dark. Let's try lighter */
    background-color: #F8F5F4;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    animation: fadeEffect 1s;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.testimonial-slide.active {
    display: flex;
}

.transformation-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.caption {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-main);
    font-style: italic;
    margin-top: 1rem;
}

@keyframes fadeEffect {
    from {opacity: 0;} 
    to {opacity: 1;}
}

.quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition-fast);
}

.slider-controls button:hover {
    color: var(--color-text-main);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info p {
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.contact-details li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.social-icons a:hover .social-icon {
    opacity: 1;
    transform: translateY(-3px);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E0E0E0;
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-text-main);
    background-color: var(--color-white);
}

.btn-submit {
    background-color: var(--color-text-main);
    color: var(--color-white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background-color: #000;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    flex-wrap: nowrap;
    border-top: 1px solid #EBEBEB;
    color: var(--color-text-light);
    font-size: 0.9rem;
    width: 100%;
}

/* Animation Classes */
.fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: all 1s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 900px) {
    .section-title { font-size: 2.5rem; }
    .hero-title { font-size: 3rem; }
    .about-container, .contact-container { grid-template-columns: 1fr; }
    .about-image { margin-bottom: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified mobile handling */
    /* Add hamburger menu logic if needed */
    .hamburger { display: block; cursor: pointer; z-index: 1001; }
    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--color-text-main);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Values Section Styles */
.values {
    background-color: var(--color-bg); /* Clean white background or distinct from 'about' */
    padding-top: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns on desktop as shown in image */
    gap: 2rem;
}

.value-card {
    background-color: #fff;
    border: 1px solid #EBEBEB; /* Subtle border as seen in image */
    padding: 2.5rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.value-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-body); /* Image shows sans-serif bold headings likely */
    font-weight: 600;
    color: var(--color-text-main);
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Values */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr; /* Stack on mobile/tablet */
    }
}

#floating-wa-logo {
            position: fixed;
            top: 96%;
            left: 96%;
            transform: translate(-45%, -52%);
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--color-text-main); /* Will start dark */
            z-index: 100; /* Lowered to be behind navbar */
            /*pointer-events: none; /* Let clicks pass through */
            white-space: nowrap;
            transition: color 1s ease;
        }
.highlight-u 
{
  /*background-color: orange;*/
  color: orange;
  font-weight: bold;
}

@media (max-width: 768px) {
    #floating-wa-logo {
            position: fixed;
            top: 96%;
            left: 90%;
            transform: translate(-45%, -52%);
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--color-text-main); /* Will start dark */
            z-index: 100; /* Lowered to be behind navbar */
            /*pointer-events: none; /* Let clicks pass through */
            white-space: nowrap;
            transition: color 1s ease;
        }
}