:root {
    --primary: #1A1A1A;
    --secondary: #A8BDB5;
    /* Sage green for clean/spa feel */
    --accent: #D4AF37;
    /* Gold/Champagne for premium touch */
    --bg-light: #FBFBFA;
    --bg-alt: #F4F4F1;
    --text: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    --container-width: 1100px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: rgba(251, 251, 250, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-links a.btn-primary {
    color: var(--white);
}

.nav-links a.btn-primary:hover {
    color: var(--white);
    background: var(--secondary);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(26, 26, 26, 0.05);
}

/* Hero Section */
#hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

#hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    z-index: 3;
    /* Soft white glow to protect text from any image overlap */
    text-shadow: 0 0 15px rgba(251, 251, 250, 1), 0 0 30px rgba(251, 251, 250, 0.8);
}

#hero h1 .accent {
    font-style: italic;
    color: var(--secondary);
    font-weight: 400;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.hero-background {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 189, 181, 0.1) 0%, rgba(244, 244, 241, 0.5) 100%);
    z-index: 1;
    border-radius: 0 0 0 500px;
}

/* Services */
#services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto;
}

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

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

.feature-card i {
    width: 60px;
    height: 60px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

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

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

/* Story Section */
#story {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
    height: 400px;
}

.image-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--bg-alt);
    border-radius: 20px;
    z-index: 1;
}

.blob-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
}

.story-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--secondary);
    opacity: 1;
}

.phone-link i {
    width: 18px;
    color: var(--secondary);
}

/* Sectors (Split Layout) */
#sectors {
    padding: 100px 0;
    background: var(--bg-alt);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sector-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.icon-wrap {
    background: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-wrap i {
    color: var(--secondary);
    width: 24px;
}

.sector-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.hero-background-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Balanced mask: Starts visible earlier, reaches full opacity sooner */
    mask-image: linear-gradient(to right, transparent 15%, black 75%);
    -webkit-mask-image: linear-gradient(to right, transparent 15%, black 75%);
}

@media (max-width: 1100px) {
    .hero-background-img {
        opacity: 0.3;
        width: 100%;
    }

    .hero-background-img img {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.img-story,
.img-sector {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    display: block;
}

.sector-image {
    position: relative;
    height: 400px;
}

/* Pricing */
#pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.price-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    border: 2px solid var(--secondary);
    position: relative;
}

.price-card.featured::after {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
}

.cost {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0 0.2rem;
    font-family: 'Playfair Display', serif;
}

.cost span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.price-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.price-card ul li i {
    width: 18px;
    color: var(--secondary);
}

/* Contact */
#contact {
    padding: 100px 0;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
}

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

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 2rem 0 1rem;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    background: var(--secondary);
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    padding: 60px 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}



/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #555;
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary);
}

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.stars i {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: 600;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
}

.social-post {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-post:hover {
    transform: scale(0.98);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-branding {
    position: absolute;
    bottom: 8%;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    text-align: center;
    opacity: 0.7;
}

.ig-dark { background: var(--primary); color: white; }
.ig-sage { background: var(--secondary); color: white; }
.ig-light { background: var(--bg-light); color: var(--primary); }
.ig-white { background: white; color: var(--primary); border: 1px solid #eee; }

.social-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin: 0;
    z-index: 2;
    line-height: 1.1;
}

.social-post p {
    font-size: 0.7rem;
    z-index: 2;
    opacity: 0.8;
    max-width: 80%;
    margin: 10px auto 0 auto;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: inherit;
}

.ig-aesthetic-line {
    width: 1px;
    height: 30px;
    background: currentColor;
    margin: 15px auto;
    opacity: 0.5;
}

.ig-aesthetic-circle {
    width: 80px;
    height: 80px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
    header {
        position: relative;
        background: var(--bg-light);
    }

    nav {
        height: auto;
        padding: 1rem 0;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    #hero {
        padding: 20px 0 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .hero-background-img {
        position: relative;
        width: 100%;
        height: auto;
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-background-img img {
        mask-image: none;
        -webkit-mask-image: none;
        border-radius: 12px;
        width: 100%;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    #hero h1 {
        font-size: 2.22rem;
        text-shadow: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid,
    .story-grid,
    .split-layout,
    .pricing-grid,
    .contact-box,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    #story,
    #services,
    #sectors,
    #pricing,
    #contact,
    #service-areas,
    #faq,
    #testimonials {
        padding: 50px 0;
    }

    .story-image,
    .sector-image {
        height: auto;
    }

    .img-story,
    .img-sector {
        width: 100%;
        height: auto;
        display: block;
    }

    .story-text h2,
    .section-header h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .price-card {
        padding: 2.5rem 1.5rem;
    }

    .contact-box {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .contact-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.8rem;
    }

    .cost {
        font-size: 2.5rem;
    }
}