/* =========================================
   SERVICE NARRATIVE SECTION
   "Geometric White" Redesign - 2x2 Grid
   ========================================= */

.service-narrative-section {
    padding: var(--space-12) 0; /* Symmetrical top/bottom breathing room */
    background-color: #FFFFFF; /* Pure Clean White */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ✨ ENHANCED GEOMETRIC BLOOM ✨ */
/* Multiple shapes for full section coverage and shimmering depth */
.service-narrative-section::before,
.service-narrative-section::after,
.service-narrative-section .bg-shape-3 {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Large Hollow Circle (Gold) - Drifts behind top/middle */
.service-narrative-section::before {
    width: 650px;
    height: 650px;
    border: 3px solid rgba(253, 183, 26, 0.25);
    border-radius: 50%;
    top: 5%;
    left: 15%;
    animation: geoFloat 35s infinite linear;
}

/* Large Floating Square (Lavender) - Drifts behind bottom/middle */
.service-narrative-section::after {
    width: 500px;
    height: 500px;
    border: 3px solid rgba(74, 29, 142, 0.2);
    bottom: 5%;
    right: 15%;
    animation: geoFloat 45s infinite reverse linear;
}

/* Extra Floating Shape (Hollow Circle) for middle coverage */
.service-narrative-section .bg-shape-3 {
    width: 400px;
    height: 400px;
    border: 2px solid rgba(253, 183, 26, 0.15);
    border-radius: 50%;
    top: 35%;
    left: 55%;
    animation: geoFloat 30s infinite alternate linear;
}

@keyframes geoFloat {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(100px, 150px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-80px, 80px) rotate(240deg) scale(0.9); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

.narrative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8); /* Tighter, more professional gap */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* Clean 2x2 Grid - Staggering Removed */
.narrative-card {
    background: rgba(30, 11, 77, 0.92); /* Deeper Purple for White BG */
    backdrop-filter: blur(25px); /* Heavier Frost */
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(253, 183, 26, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    box-shadow: 0 30px 60px rgba(30, 11, 77, 0.2); /* Soft Purple Shadow */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    min-height: 540px;
    z-index: 2;
    overflow: hidden;
}

.narrative-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    background: rgba(30, 11, 77, 0.98);
    border-color: rgba(253, 183, 26, 0.5);
    box-shadow: 0 50px 100px rgba(30, 11, 77, 0.3);
}

/* Content Elements */
.narrative-label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(253, 183, 26, 0.1);
    color: var(--color-gold);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(253, 183, 26, 0.2);
}

.narrative-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.narrative-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-4);
    font-weight: 800;
    min-height: 2.5em;
}

.narrative-lead {
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: var(--space-4);
    font-style: italic;
    opacity: 0.9;
}

.narrative-text {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

/* Result Section */
.narrative-result {
    margin-top: auto;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-heading {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.result-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4);
}

.result-list li {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    margin-bottom: var(--space-3);
    display: flex;
    gap: var(--space-2);
    line-height: 1.5;
}

.result-list li::before {
    content: "→";
    color: var(--color-gold);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-title {
    color: #ffffff;
    font-weight: 700;
    font-size: var(--text-sm);
}

.benefit-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.4;
}

/* OUTCOME SWAG LABEL */
.outcome-swag {
    display: block;
    background: linear-gradient(135deg, var(--color-gold) 0%, #D49B15 100%);
    color: var(--color-primary);
    text-align: center;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 10px 30px rgba(253, 183, 26, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .narrative-card {
        transform: none !important;
        margin-top: 0 !important;
        min-height: auto;
    }

    .service-narrative-section::before,
    .service-narrative-section::after {
        width: 300px;
        height: 300px;
    }
}