:root {
    --peach: #ff8a71;
    --sage: #7d9d85;
    --cream: #fff9f0;
    --dark: #2d3436;
    --white: #ffffff;
    --soft-shadow: 0 10px 30px rgba(255, 138, 113, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.7;
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    color: var(--peach);
    font-family: 'Playfair Display', serif;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 10%;
    background: radial-gradient(circle at top right, #ffe5d9 0%, transparent 50%);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--peach);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: #555;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 90%;
    border-radius: 50% 50% 0 50%;
    border: 15px solid var(--white);
    box-shadow: var(--soft-shadow);
}

/* Floating Shapes */
.blob {
    position: absolute;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.4;
}

/* Services */
.services {
    padding: 120px 10%;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 5rem;
}

.section-head h2 {
    font-size: 3rem;
    color: var(--sage);
}

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

.service-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 40px;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: 0.5s;
    box-shadow: var(--soft-shadow);
}

.service-item:hover {
    transform: scale(1.03);
    border-color: var(--sage);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--peach);
}

/* CTA */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--peach);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 138, 113, 0.3);
}

.btn-primary:hover {
    background: #e6755e;
    transform: translateY(-3px);
}

/* Services Icons Fix for Narrow mobile */
@media (max-width: 480px) {
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* About Section */
.about {
    padding: 100px 10%;
    background: #fffcf5;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--peach);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sage);
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    box-shadow: 20px 20px 0 var(--sage-light);
}

/* Contact Section */
.contact {
    padding: 100px 10%;
    text-align: center;
    background: var(--peach);
    color: var(--white);
}

.contact h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact p.subtext {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.contact-btn {
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-phone {
    background: var(--white);
    color: var(--peach);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact .address {
    margin-top: 3rem;
    opacity: 0.8;
}

/* Final Mobile Media Queries */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1.5rem 5%;
        text-align: center;
        position: relative;
        background: var(--cream);
    }

    .logo {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .hero {
        padding: 60px 5%;
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        margin-top: 40px;
    }

    .services, .about, .contact {
        padding: 60px 5%;
    }
    .service-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item {
        padding: 2rem;
    }

    .about-container {
        gap: 2rem;
    }

    .section-head h2 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Specific Services Stack Fix for Mobile */
@media (max-width: 768px) {
    .service-container {
        display: flex;
        flex-direction: column;
    }
}
