/* Main Layout Styles */

::selection {
    background-color: var(--color-green-light);
    color: var(--color-green-dark);
}

/* Header */
.main-header {
    background-color: rgba(242, 239, 235, 0.95);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 102, 79, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--color-accent);
}

/* Contact Fold Refinement */
.contact-fold {
    background-color: var(--color-off-white);
    position: relative;
    overflow: hidden;
}

/* Add a subtle background detail to make it less "xoxa" */
.contact-fold::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background-image: url('../assets/images/illustrations/illustration-1.svg');
    /* Reuse floral illustration */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(-10deg);
}

.divider-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    /* Tighten gap inside divider */
    color: var(--color-green-medium);
    font-family: var(--font-script);
    font-size: 1.8rem;
    margin: 0 0.5rem;
    /* Reduce outer margin */
}

.divider-text::before,
.divider-text::after {
    content: '';
    height: 1px;
    width: 30px;
    /* Shorter lines */
    background-color: var(--color-beige);
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    /* Very compact */
    margin-top: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Premium Button Refactor - Solid Stability */
/* Premium Button Variants */
.btn-primary {
    background-color: var(--color-green-dark);
    color: var(--color-off-white);
    border: 1px solid var(--color-green-dark);
}

.btn-primary:hover {
    background-color: #3e523e;
    border-color: #3e523e;
    color: var(--color-off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 102, 79, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-green-dark);
    border: 1px solid var(--color-green-dark);
}

.btn-outline:hover {
    background-color: var(--color-green-dark);
    color: var(--color-off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 102, 79, 0.3);
    text-decoration: none;
}

/* Small Button Variant */
.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.contact-actions .btn {
    min-width: 200px;
    /* Keep uniform width for main CTAs */
    margin: 0;
    /* Let flex gap handle spacing */
}

/* Ensure global link hover effects don't apply */
.contact-actions .btn::after,
.contact-actions .btn::before {
    display: none !important;
}

/* Force border visibility for Contact Actions */
.contact-actions .btn-outline {
    border: 1px solid var(--color-green-dark) !important;
    color: var(--color-green-dark) !important;
    background: transparent !important;
}

.contact-actions .btn-outline:hover {
    background-color: var(--color-green-dark) !important;
    color: var(--color-off-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 102, 79, 0.3);
}

/* Button & Links Refinement */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
}

.nav-list .btn {
    background-color: var(--color-green-dark);
    color: var(--color-off-white);
}

.nav-list .btn:hover {
    background-color: #3e523e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 102, 79, 0.3);
    color: var(--color-off-white);
}


/* Hero Section */
.hero {
    position: relative;
    position: relative;
    min-height: 95vh;
    /* Restore full height to fill screen */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pattern-hero.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    /* Slightly increased per request */
    z-index: -1;
}

.display-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin: var(--spacing-xs) 0 var(--spacing-md);
    color: var(--color-green-dark);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-text-muted);
}


/* About Section */
.about-image img {
    border-radius: 0;
    /* Reset */
    border-top-left-radius: 200px;
    border-bottom-right-radius: 200px;
    box-shadow: 20px 20px 0 var(--color-beige);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text p {
    font-size: 1rem;
    /* Explicitly set to match Symbol section */
    line-height: 1.8;
    /* Match Symbol section line-height */
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.quote-box {
    margin-top: var(--spacing-md);
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--color-accent);
}

.accent-text {
    font-size: 2rem;
}


/* Services Section */
.bg-light {
    background-color: rgba(219, 221, 192, 0.2);
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--color-off-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 102, 79, 0.1);
    border-color: var(--color-beige);
}

.service-card .card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-green-dark);
}


/* Values Section - Images */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.img-shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
}

.mt-5 {
    margin-top: var(--spacing-lg);
}

.mb-4 {
    margin-bottom: var(--spacing-md);
}

.mb-5 {
    margin-bottom: var(--spacing-lg);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.max-w-600 {
    max-width: 600px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


/* Footer */
.main-footer {
    background-color: var(--color-green-dark);
    color: var(--color-off-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: none;
}

.grid-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    filter: brightness(0) invert(1);
    margin-bottom: var(--spacing-sm);
    max-width: 150px;
    display: block;
    /* ensure block for spacing */
}

/* More space for social icons */
.social-links {
    margin-top: 3rem;
}

/* Fix Instagram Icon Spacing */
.instagram-icon {
    display: inline-block;
    color: var(--color-off-white);
    transition: all 0.3s ease;
}

.instagram-icon:hover {
    color: var(--color-beige);
    transform: translateY(-2px);
}

.footer-links ul {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-beige);
    text-decoration: none;
    /* remove ugly underline */
    border-bottom: 1px solid var(--color-beige);
    /* subtle custom underline */
}

.footer-contact h4,
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-beige);
    margin-bottom: var(--spacing-sm);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-xs);
    color: var(--color-off-white);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--color-beige);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-beige);
    text-decoration: none;
}

.btn-inverted {
    border-color: var(--color-off-white);
    color: var(--color-off-white);
    margin-top: var(--spacing-sm);
}

.btn-inverted:hover {
    background-color: var(--color-off-white);
    color: var(--color-green-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: left;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav-list {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
        justify-content: center;
    }

    .display-title {
        font-size: 2.5rem;
    }

    .grid-2-col,
    .grid-footer {
        grid-template-columns: 1fr;
    }

    /* =========================================
   PREMIUM REFACTOR STYLES
   ========================================= */

    /* Utils & Backgrounds */
    /* Background Utilities - FORCE OVERRIDE */
    .bg-off-white,
    .section-bg-offwhite {
        background-color: var(--color-off-white) !important;
    }

    .bg-green-light,
    .section-bg-green {
        background-color: var(--color-green-light) !important;
    }

    .bg-white,
    .section-bg-white {
        background-color: #ffffff !important;
    }

    .bg-pattern {
        background-color: var(--color-off-white);
        background-image: url('../assets/images/pattern-bg.jpg');
        /* No !important here to allow override if needed, but usually this is specific */
        background-size: cover;
        background-blend-mode: overlay;
        position: relative;
    }

    .serif-title {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--color-green-dark);
        margin-bottom: var(--spacing-xs);
        font-weight: 500;
    }

    .text-muted {
        color: var(--color-text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .shadow-soft {
        box-shadow: 0 20px 40px rgba(79, 102, 79, 0.08);
    }

    .img-rounded-lg {
        border-radius: 200px 200px 0 0;
        /* Arch shape */
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 10px 10px 0 var(--color-green-light);
        /* Offset shadow */
    }

    /* Premium Service Cards (Arch) */
    .premium-card {
        background: transparent;
        transition: transform 0.4s ease;
    }

    .premium-card:hover {
        transform: translateY(-10px);
    }

    .arch-image-container {
        width: 100%;
        aspect-ratio: 4/5;
        overflow: hidden;
        border-radius: 200px 200px 0 0;
        /* The Arch */
        box-shadow: 10px 10px 0 var(--color-green-light);
        margin-bottom: var(--spacing-md);
        position: relative;
    }

    .arch-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .premium-card:hover .arch-img {
        transform: scale(1.1);
    }

    .featured-lift {
        margin-top: -30px;
        /* Stagger effect */
    }

    /* Editorial Grid (Astromélia) */
    .editorial-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: center;
        min-height: 60vh;
    }

    .editorial-text {
        padding-right: var(--spacing-lg);
    }

    .editorial-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .editorial-image img {
        max-width: 100%;
        height: auto;
    }

    /* Contact Fold & Buttons */
    .contact-fold {
        position: relative;
        /* bg-green-light handles background */
    }

    .contact-fold::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(79, 102, 79, 0.2), transparent);
    }

    .contact-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .divider-text {
        font-family: var(--font-script);
        color: var(--color-text-muted);
        font-size: 1.2rem;
        margin: 0 var(--spacing-xs);
    }

    /* Buttons */
    /* Removed duplicate button styles */

    .social-link {
        display: inline-block;
        color: var(--color-green-dark);
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s;
    }

    .social-link:hover {
        border-color: var(--color-accent);
        color: var(--color-accent);
    }

    /* Utilities */
    .relative-section {
        position: relative;
        overflow: hidden;
    }

    .relative-z {
        position: relative;
        z-index: 2;
    }

    .d-block {
        display: block;
    }

    .mb-3 {
        margin-bottom: var(--spacing-sm);
    }

    .mt-3 {
        margin-top: var(--spacing-sm);
    }

    .mt-5 {
        margin-top: var(--spacing-lg);
    }

    .mb-4 {
        margin-bottom: var(--spacing-md);
    }

    .max-w-500 {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    /* Mobile Adjustments */
    @media (max-width: 900px) {
        .featured-lift {
            margin-top: 0;
        }

        .editorial-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
            text-align: center;
        }

        .editorial-text {
            padding-right: 0;
            order: -1;
        }

        .editorial-image img {
            width: 80%;
            /* Smaller on mobile */
            margin: 0 auto;
        }

        .text-center-mobile {
            text-align: center;
        }

        .editorial-text .signature {
            justify-content: center;
            display: flex;
        }
    }

    .bg-green-light {
        background-color: var(--color-green-light);
    }

    .bg-pattern {
        background-color: var(--color-off-white);
        background-image: url('../assets/images/pattern-bg.jpg');
        /* Reusing branding pattern */
        background-size: cover;
        background-blend-mode: overlay;
        position: relative;
    }

    .serif-title {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--color-green-dark);
        margin-bottom: var(--spacing-xs);
        font-weight: 500;
    }

    .text-muted {
        color: var(--color-text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .shadow-soft {
        box-shadow: 0 20px 40px rgba(79, 102, 79, 0.08);
    }

    .img-rounded-lg {
        border-radius: 200px 200px 0 0;
        /* Arch shape echoing branding */
        width: 100%;
        height: auto;
        display: block;
    }

    /* Premium Service Cards (Arch) */
    .premium-card {
        background: transparent;
        transition: transform 0.4s ease;
    }

    .premium-card:hover {
        transform: translateY(-10px);
    }

    .arch-image-container {
        width: 100%;
        aspect-ratio: 4/5;
        overflow: hidden;
        border-radius: 200px 200px 0 0;
        /* The Arch */
        box-shadow: 10px 10px 0 var(--color-green-light);
        /* Offset shadow for art direction */
        margin-bottom: var(--spacing-md);
        position: relative;
    }

    .arch-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .premium-card:hover .arch-img {
        transform: scale(1.1);
    }

    .featured-lift {
        margin-top: -20px;
        /* Subtle stagger for visual interest */
    }

    /* Editorial Grid (Astromélia) */
    .editorial-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: center;
    }

    .editorial-text {
        padding-right: var(--spacing-lg);
    }

    .editorial-image img {
        border-radius: 2px;
        /* Clean photo look */
        /* Or maybe arch? Let's stick to clean photo for contrast or Oval */
        border-radius: 300px;
        /* Oval/Circle feel for "Symbol" */
        aspect-ratio: 1/1;
        object-fit: cover;
        border: 1px solid rgba(79, 102, 79, 0.1);
    }

    /* Contact Fold Refine */
    .contact-fold {
        background-color: var(--color-green-light);
        color: var(--color-green-dark);
        /* Ensure text contrast */
    }

    /* Mobile Premium */
    @media (max-width: 900px) {
        .featured-lift {
            margin-top: 0;
        }

        .editorial-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
        }

        .editorial-text {
            padding-right: 0;
            order: -1;
            /* Text first on mobile? or Image? Let's Text first for story */
        }

        .text-center-mobile {
            text-align: center;
        }

        .editorial-text .signature {
            justify-content: center;
            display: flex;
        }
    }

    /* =========================================
   REFACTOR STYLES (Services & Focus)
   ========================================= */

    /* Utilities */
    .relative-section {
        position: relative;
        overflow: hidden;
    }

    .relative-z {
        position: relative;
        z-index: 2;
    }

    .d-block {
        display: block;
    }

    .mb-3 {
        margin-bottom: var(--spacing-sm);
    }

    .mt-3 {
        margin-top: var(--spacing-sm);
    }

    .object-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .flex-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .max-w-500 {
        max-width: 500px;
        width: 100%;
    }

    /* Services Refactor - Photo Cards */
    .services {
        background-color: var(--color-off-white);
    }

    .service-card-photo {
        background: #fff;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .service-card-photo:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(79, 102, 79, 0.15);
    }

    .photo-container {
        width: 100%;
        aspect-ratio: 4/5;
        /* Portrait layout for elegance */
        overflow: hidden;
        position: relative;
    }

    .service-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .service-card-photo:hover .service-img {
        transform: scale(1.08);
        /* Zoom effect */
    }

    .service-content {
        padding: var(--spacing-md);
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-content h3 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--color-green-dark);
        margin-bottom: var(--spacing-sm);
    }

    .service-content p {
        font-size: 0.95rem;
        color: var(--color-text-muted);
        line-height: 1.6;
    }

    /* Symbol Refactor - Split Section */
    .split-section {
        display: flex;
        min-height: 80vh;
        /* Immersive height */
    }

    .split-image,
    .split-content {
        flex: 1;
    }

    .split-image {
        position: relative;
        overflow: hidden;
    }

    .split-content {
        background-color: #F9F7F5;
        /* Warmer than off-white */
        padding: var(--spacing-lg);
    }

    /* Contact Fold Styles */
    .contact-fold {
        background: linear-gradient(135deg, rgba(219, 221, 192, 0.3) 0%, rgba(242, 239, 235, 0.8) 100%);
        position: relative;
    }

    .contact-fold::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(79, 102, 79, 0.2), transparent);
    }

    .contact-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .divider-text {
        font-family: var(--font-script);
        color: var(--color-text-muted);
        font-size: 1.2rem;
        margin: 0 var(--spacing-xs);
    }

    /* Buttons & Social */
    .btn-primary {
        background-color: var(--color-green-dark);
        color: var(--color-off-white);
        padding: 0.8rem 1.5rem;
        border-radius: var(--radius-full);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid var(--color-green-dark);
    }

    .btn-primary:hover {
        background-color: var(--color-accent);
        border-color: var(--color-accent);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(175, 131, 130, 0.3);
    }

    .btn-outline {
        background-color: transparent;
        color: var(--color-green-dark);
        padding: 0.8rem 1.5rem;
        border-radius: var(--radius-full);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid var(--color-green-dark);
    }

    .btn-outline:hover {
        background-color: var(--color-green-dark);
        color: var(--color-off-white);
        transform: translateY(-2px);
    }

    .social-link {
        display: inline-block;
        color: var(--color-green-dark);
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s;
    }

    .social-link:hover {
        border-color: var(--color-accent);
        color: var(--color-accent);
    }

    /* Mobile Adjustments for Refactor */
    @media (max-width: 900px) {
        .split-section {
            flex-direction: column;
            min-height: auto;
        }

        .split-image {
            min-height: 400px;
        }

        .split-content {
            padding: var(--spacing-lg) var(--spacing-md);
        }
    }

    /* =========================================
   REDESIGN ADDITIONS
   ========================================= */

    /* Utilities */
    .relative-section {
        position: relative;
        overflow: hidden;
    }

    .relative-z {
        position: relative;
        z-index: 2;
    }

    .d-block {
        display: block;
    }

    .mb-3 {
        margin-bottom: var(--spacing-sm);
    }

    /* Services Redesign (Floral & Delicate) */
    .bg-floral {
        background-color: #FDFBF7;
        /* Very warm, light off-white */
        background-image: radial-gradient(#E5D7C6 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 1;
    }

    .service-card {
        border: 1px solid rgba(229, 215, 198, 0.3);
        /* Subtle beige border */
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 20px rgba(79, 102, 79, 0.03);
        /* Very soft shadow */
    }

    .service-card:hover {
        border-color: var(--color-rose);
        box-shadow: 0 10px 30px rgba(175, 131, 130, 0.15);
        /* Rose tinted shadow */
        transform: translateY(-5px);
    }

    .card-icon-wrapper {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--spacing-sm);
        transition: transform 0.3s ease;
    }

    .service-card:hover .card-icon-wrapper {
        transform: scale(1.1);
    }

    .service-icon {
        max-height: 100%;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    /* Values / Astromélia Redesign */
    .pattern-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../assets/images/illustrations/pattern-1.svg');
        background-size: 600px;
        background-repeat: repeat;
        opacity: 0.03;
        /* Very subtle texture */
        pointer-events: none;
        z-index: 1;
    }

    .symbol-header {
        margin-bottom: var(--spacing-md);
    }

    .symbol-icon {
        width: 120px;
        height: auto;
        opacity: 0.9;
    }

    /* Contact Fold */
    .contact-fold {
        background-color: var(--color-green-light);
        /* Fallback */
        background: linear-gradient(135deg, rgba(219, 221, 192, 0.3) 0%, rgba(242, 239, 235, 0.8) 100%);
        position: relative;
    }

    .contact-fold::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(79, 102, 79, 0.2), transparent);
    }

    .contact-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .divider-text {
        font-family: var(--font-script);
        color: var(--color-text-muted);
        font-size: 1.2rem;
        margin: 0 var(--spacing-xs);
    }

    /* New Buttons */
    /* Removed duplicate button styles */

    /* Instagram Icon Styles */
    .instagram-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        transition: all 0.3s ease;
    }

    .instagram-icon svg {
        color: white;
    }

    .instagram-icon:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
    }

    .instagram-icon:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
    }
}

/* =========================================
   MOBILE RESPONSIVENESS REFINEMENTS
   ========================================= */

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 200;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Rotate for "X" state */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* Media Queries */
@media (max-width: 900px) {

    /* Mobile Menu Styles */
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(242, 239, 235, 0.98);
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 150;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-list.active {
        /* JS toggles a class on parent or we use .main-nav.active */
    }

    /* Helper class to open menu */
    .main-nav.active {
        right: 0;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    /* General Layout Stacking */
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Hero Text Size Adjustment */
    .display-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .header-content {
        padding: 0 var(--spacing-sm);
    }
}

/* =========================================
   MOBILE RESPONSIVENESS REFINEMENTS
   ========================================= */

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 200;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Rotate for "X" state */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* Media Queries */
@media (max-width: 900px) {

    /* Mobile Menu Styles */
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(242, 239, 235, 0.98);
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 150;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-list.active {
        /* JS toggles a class on parent or we use .main-nav.active */
    }

    /* Helper class to open menu */
    .main-nav.active {
        right: 0;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    /* General Layout Stacking */
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Hero Text Size Adjustment */
    .display-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .header-content {
        padding: 0 var(--spacing-sm);
    }

    /* Revert Hero padding for mobile if needed, but centering usually fine */
}