/* ====================================
   FLOOR + SURGE WEALTH RESERVOIR SECTION
   Clean, modern styling without insurance jargon
   ==================================== */

.floor-surge-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A1628 0%, #1a2841 100%);
    position: relative;
    overflow: hidden;
}

.floor-surge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.floor-surge-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.floor-surge-header {
    text-align: center;
    margin-bottom: 60px;
}

.floor-surge-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.floor-surge-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.floor-surge-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

/* Opener - Parkinson's Law */
.floor-surge-opener {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: rgba(220, 53, 69, 0.08);
    border-left: 4px solid #DC3545;
    border-radius: 12px;
}

.parkinson-law-callout {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.parkinson-law-callout i {
    color: #DC3545;
    font-size: 1.3rem;
}

.floor-surge-opener p {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.floor-surge-opener p:last-child {
    margin-bottom: 0;
}

/* Graphic Container */
.floor-surge-graphic-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 50px 40px;
    background: rgba(26, 40, 65, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.floor-surge-graphic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

/* Inputs (Floor + Surge) */
.graphic-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.graphic-input-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-arrow {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(212, 175, 55, 0.5) 100%);
    position: relative;
}

.input-arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid var(--gold);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.input-label {
    flex: 1;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-label:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateX(-5px);
}

.input-label-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.input-label-sub {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.4;
}

/* Reservoir Tank */
.graphic-reservoir {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservoir-tank {
    width: 200px;
    height: 280px;
    position: relative;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.reservoir-tank::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.5) 100%);
    animation: fillReservoir 3s ease-in-out infinite alternate;
}

@keyframes fillReservoir {
    from { height: 60%; }
    to { height: 75%; }
}

.reservoir-icon {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    color: var(--gold);
}

.reservoir-label {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Outputs */
.graphic-outputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.graphic-output-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.output-arrow {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.5) 0%, var(--gold) 100%);
    position: relative;
}

.output-arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid var(--gold);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.output-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.output-label:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    transform: translateX(5px);
}

.output-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--navy);
    flex-shrink: 0;
}

.output-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Graphic Caption */
.graphic-caption {
    text-align: center;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
}

/* Content Blocks */
.floor-surge-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-block h3 i {
    font-size: 1.6rem;
}

.content-block p {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* How It Works List */
.how-it-works-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.how-it-works-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.how-it-works-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(5px);
}

.how-it-works-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}

.how-it-works-content h4 {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.how-it-works-content p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/* Who This Is For */
.who-this-is-for-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.who-this-item {
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.who-this-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.who-this-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.who-this-item p {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Important Note */
.important-note {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 193, 7, 0.08);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
}

.important-note h4 {
    font-size: 1.15rem;
    color: #FFC107;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-note h4 i {
    font-size: 1.2rem;
}

.important-note p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .floor-surge-graphic {
        flex-direction: column;
    }

    .graphic-inputs,
    .graphic-outputs {
        width: 100%;
        max-width: 500px;
    }

    .graphic-reservoir {
        margin: 30px 0;
    }

    .input-label:hover,
    .output-label:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .floor-surge-section {
        padding: 60px 20px;
    }

    .floor-surge-title {
        font-size: 2.2rem;
    }

    .floor-surge-subtitle {
        font-size: 1.1rem;
    }

    .floor-surge-opener {
        padding: 25px;
    }

    .floor-surge-graphic-container {
        padding: 30px 20px;
    }

    .who-this-is-for-list {
        grid-template-columns: 1fr;
    }

    .how-it-works-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .floor-surge-title {
        font-size: 1.8rem;
    }

    .reservoir-tank {
        width: 160px;
        height: 220px;
    }

    .input-arrow,
    .output-arrow {
        width: 40px;
    }
}