.site-content {
    margin:0 !important;
}


.woostify-container{
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left:0px !important;
    margin-right: 0px !important;
}


.woostify-container, .site-boxed-container #view, .site-content-boxed-container .site-content{
 max-width:none !important;   
}


/* =================================================================
   Hero Section Style Match (Based on Reference Image Layout)
   =================================================================== */

.natural-dye-hero-banner {
    position: relative;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 85vh;
    display: flex;
    align-items: flex-end; /* Pushes content down towards the bottom like the image */
    padding-bottom: 5rem;
    padding-top: 10rem;
    overflow: hidden;
}

.natural-dye-hero-banner .hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.natural-dye-hero-banner .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.natural-dye-hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient shading to make text readable over the background image */
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.natural-dye-hero-banner .hero-container-custom {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Split Grid Layout mimicking the screenshot */
.hero-content-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-end;
}

.hero-left-col .hero-tag span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #3b82f6; /* Brand Blue Accent */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.natural-dye-hero-banner .hero-title {
    font-family: var(--font-display, serif);
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.05;
    margin: 0;
}

.hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
}

.natural-dye-hero-banner .hero-description {
    font-family: var(--font-primary, sans-serif);
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
}

/* Pill-shaped button matching image style */
.hero-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-primary, sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    width: fit-content;
}

.hero-pill-btn:hover {
    background-color: #f3f2ee;
    transform: translateY(-2px);
    color: #3b82f6;
}

/* Slider Arrow Controls on sides (matching reference layout) */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background-color 0.2s ease;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-arrow-prev {
    left: 2rem;
}

.hero-arrow-next {
    right: 2rem;
}

/* Responsive design for tablets and phones */
@media screen and (max-width: 992px) {
    .hero-content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .natural-dye-hero-banner {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }
    .hero-slider-arrow {
        display: none; /* Hide side arrows on small screens for layout safety */
    }
}


/* =================================================================
   Story Media Grid Layout (Based on Reference Image)
   =================================================================== */

.story-media-grid-layout {
    padding: 6rem 0;
}

.story-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.story-header-center .section-title {
    margin-bottom: 0;
}

/* Asymmetric 2-column image/video showcase grid */
.story-media-showcase {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    align-items: stretch;
}

.story-media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #e5e7eb;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.story-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    max-height: 420px;
    display: block;
    transition: transform 0.5s ease;
}

.story-media-card:hover img {
    transform: scale(1.03);
}

/* Play button overlay mimicking the video card in reference */
.media-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.play-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1.1rem;
    padding-left: 3px; /* visual center for play triangle */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.story-media-card:hover .play-icon {
    transform: scale(1.08);
    background: #ffffff;
}

/* Bottom Content Container */
.story-content-bottom {
    max-width: 840px;
    margin: 0 auto;
}

.text-center-block {
    text-align: center;
    margin-bottom: 3rem;
}

.text-center-block p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Inline Grid for 01 and 02 Cards */
.story-feature-grid-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .story-media-showcase {
        grid-template-columns: 1fr;
    }
    .story-media-card img {
        max-height: 300px;
    }
    .story-feature-grid-inline {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   Bento Grid Catalog Layout (Based on Reference Image Structure)
   =================================================================== */

.bento-showcase-layout {
    padding: 6rem 0;
}

.bento-grid-catalog {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2rem;
    align-items: stretch;
}

/* Left Stack layout */
.bento-left-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-left-stack .dye-item-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.bento-left-stack .dye-item-card .dye-img-wrap {
    width: 45%;
    height: 100%;
    min-height: 180px;
}

.bento-left-stack .dye-item-card .dye-item-content {
    width: 55%;
    padding: 1.5rem;
}

.bento-left-stack .dye-item-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.bento-left-stack .dye-item-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right Feature Column (Large card matching the right side of the image) */
.bento-right-feature {
    display: flex;
    flex-direction: column;
}

.large-feature-card {
    background: #e2e8f0; /* Soft light backdrop tone matching reference card */
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.large-feature-card .feature-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.large-feature-card .feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Overlay Content on the right large card */
.feature-card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.75) 70%, rgba(15, 23, 42, 0.9) 100%);
    color: #ffffff;
}

.feature-card-overlay-content .light-badge {
    color: #60a5fa;
}

.feature-card-overlay-content h3 {
    font-family: var(--font-display, serif);
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-card-overlay-content p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Carousel pagination dots element matching reference image bottom left */
.bento-dots-action {
    display: flex;
    gap: 0.4rem;
}

.bento-dots-action .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.bento-dots-action .dot.active {
    background: #ffffff;
    width: 16px;
    border-radius: 4px;
}

/* Responsive layout adjustments */
@media screen and (max-width: 1024px) {
    .bento-grid-catalog {
        grid-template-columns: 1fr;
    }
    .bento-left-stack .dye-item-card {
        flex-direction: column;
    }
    .bento-left-stack .dye-item-card .dye-img-wrap,
    .bento-left-stack .dye-item-card .dye-item-content {
        width: 100%;
    }
    .large-feature-card .feature-img-wrap {
        min-height: 400px;
    }
}

/* =================================================================
   Journal Process Section Layout (Based on Reference Image)
   =================================================================== */

.journal-process-section {
    padding: 6rem 0;
}

/* 5-item process grid layout (Adapts neatly to 3 columns) */
.process-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.process-card .dye-item-content {
    padding: 0 !important;
}

.process-card .dye-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #3b82f6; /* Brand Blue accent */
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.process-card h3 {
    font-family: var(--font-display, serif);
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.process-card .card-arrow-link {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.process-card:hover .card-arrow-link {
    color: #3b82f6;
    transform: translate(2px, -2px);
}

/* Special styling for the 5th step highlight item */
.process-card.highlight-card {
    background: #0f172a !important; /* Matches dark theme contrast from your brand */
    color: #ffffff;
    border: none;
}

.process-card.highlight-card h3 {
    color: #ffffff;
}

.process-card.highlight-card p {
    color: #94a3b8;
}

.process-card.highlight-card .dye-badge {
    color: #60a5fa;
}

.process-card.highlight-card .card-arrow-link {
    color: #64748b;
}

.process-card.highlight-card:hover .card-arrow-link {
    color: #ffffff;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .process-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .process-grid-layout {
        grid-template-columns: 1fr;
    }
}



/* =================================================================
   Why Natural Dyes Asymmetric Section (Based on Reference Image)
   =================================================================== */

.why-dyes-asymmetric-section {
    padding: 6rem 0;
}

.why-dyes-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.why-header-left {
    max-width: 650px;
}

.why-header-left .section-title {
    margin-bottom: 0;
}

.header-side-note {
    max-width: 260px;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Asymmetric Bento Container Grid */
.why-asymmetric-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

/* Base Bento Card Design */
.why-bento-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Left Large Feature Card Style */
.large-feature-box {
    background-color: #e5ece6; /* Soft light neutral greenish tint matching image */
    padding: 3rem;
    position: relative;
}

.large-feature-box h3 {
    font-family: var(--font-display, serif);
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.large-feature-box p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 2rem;
}

.why-card-media {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
}

.why-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Stacked Column Container */
.why-bento-stack {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.stacked-box {
    padding: 2.25rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Right Card 1: Green Tone */
.stacked-box.green-theme {
    background-color: #4d8257; /* Deep muted organic green */
    color: #ffffff;
}

/* Right Card 2: Dark Tone */
.stacked-box.dark-theme {
    background-color: #0f172a; /* Dark charcoal/black tone */
    color: #ffffff;
}

.stacked-box h3 {
    font-family: var(--font-display, serif);
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stacked-box p {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.why-card-media-thumb {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.why-card-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Read More Button with circular arrow icon */
.why-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.why-read-more-btn.light-text {
    color: #ffffff;
}

.btn-arrow-icon {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    color: #0f172a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.stacked-box.green-theme .btn-arrow-icon {
    background-color: #ffffff;
    color: #4d8257;
}

.stacked-box.dark-theme .btn-arrow-icon {
    background-color: #ffffff;
    color: #0f172a;
}

.why-bento-card:hover .btn-arrow-icon {
    transform: translate(2px, -2px);
}

/* Bottom Disclaimer styling area */
.why-bottom-disclaimer-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.why-bottom-disclaimer-wrap .contact-disclaimer-box p {
    margin-bottom: 1rem;
}

.why-bottom-disclaimer-wrap .contact-disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .why-dyes-top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .why-asymmetric-grid {
        grid-template-columns: 1fr;
    }
    .stacked-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .why-card-media-thumb {
        width: 100%;
        height: 160px;
    }
}

/* =================================================================
   Maayon Fashion Split Brand Section (Based on Reference Image)
   =================================================================== */

.dye-split-brand-section {
    padding: 6rem 0;
    background-color: #f3f2ee; /* Matches your off-white layout canvas base */
}

.dye-split-brand-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.brand-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content Styles */
.sub-heading-blue {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3b82f6; /* Brand Blue Accent */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title-dark {
    font-family: var(--font-display, serif);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.brand-text-stack {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 2rem;
}

.brand-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

/* Pill Action Button matching the reference image style */
.brand-action-wrap {
    margin-top: 0.5rem;
}

.brand-explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4d8257; /* Muted organic green matching reference button theme */
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary, sans-serif);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(77, 130, 87, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.brand-explore-btn:hover {
    background-color: #3b6844;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Right Media Card Styling */
.brand-right-media {
    width: 100%;
}

.brand-media-card {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    background-color: #e5e7eb;
}

.brand-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.brand-media-card:hover img {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .brand-split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .brand-media-card {
        height: 320px;
    }
}


/* =================================================================
   Modern Split FAQ Accordion Section (Based on Reference Image)
   =================================================================== */

.faq-split-section {
    padding: 6rem 0;
}

.faq-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Sticky Title Block */
.faq-left-col {
    position: sticky;
    top: 2rem;
}

.faq-left-col .section-title {
    font-family: var(--font-display, serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.faq-side-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 360px;
    margin: 0;
}

/* Right Stack Container */
.faq-accordion-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Individual Accordion Card */
.faq-accordion-card {
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-accordion-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* Accordion Header Button */
.faq-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.faq-accordion-header h3 {
    font-family: var(--font-display, serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

/* Plus/Minus Toggle Symbol Style */
.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f3f2ee;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-accordion-card.active .faq-toggle-icon {
    background-color: #0f172a;
    color: #ffffff;
}

/* Accordion Expandable Content */
.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.faq-accordion-card.active .faq-accordion-content {
    max-height: 300px; /* Adjust if content block is longer */
    padding: 0 2rem 1.75rem 2rem;
}

.faq-accordion-content p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .faq-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-left-col {
        position: static;
    }
}

/* =================================================================
   Nature Theme Split CTA Banner (Based on Reference Image)
   =================================================================== */

.nature-banner-cta {
    position: relative;
    background-color: #0b1f14; /* Deep dark forest green base */
    color: #ffffff;
    padding: 7rem 0;
    overflow: hidden;
    text-align: left !important; /* Overrides previous text-center classes */
}

.nature-banner-cta .cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nature-banner-cta .cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nature-banner-cta .cta-overlay-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 24, 16, 0.95) 0%, rgba(11, 31, 20, 0.85) 50%, rgba(11, 31, 20, 0.6) 100%);
    z-index: 2;
}

.nature-banner-cta .cta-container-custom {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-split-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-top-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6ee7b7; /* Soft nature green accent */
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.nature-banner-cta .cta-title {
    font-family: var(--font-display, serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.nature-banner-cta .cta-description {
    font-family: var(--font-primary, sans-serif);
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 2rem;
}

/* Pill Email Input Form matching reference image layout */
.cta-action-form-wrap {
    max-width: 440px;
}

.cta-newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    backdrop-filter: blur(6px);
}

.cta-email-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: #ffffff;
    font-family: var(--font-primary, sans-serif);
}

.cta-email-input::placeholder {
    color: #9ca3af;
}

.cta-submit-arrow {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    color: #0b1f14;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-submit-arrow:hover {
    background-color: #6ee7b7;
    transform: translateX(2px);
}

/* Right floating organic badge design */
.cta-right-col {
    display: flex;
    justify-content: flex-end;
}

.cta-badge-floating {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.75rem;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .cta-split-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .nature-banner-cta {
        padding: 5rem 0;
    }
    .cta-right-col {
        display: none; /* Hide floating badge on small screens */
    }
}