﻿
/* Glass Card Premium Styling */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 42, 68, 0.08); /* Very subtle navy border */
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

    .glass-card-premium:hover {
        transform: translateY(-8px);
        box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    }

.card-intro-tag {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.text-darker {
    color: #1a1a1a;
    line-height: 1.8;
}

.text-underline-gold {
    border-bottom: 3px solid var(--accent-gold);
}

.thread-divider {
    width: 40px;
    height: 1px;
    background: #ddd;
}

/* Background Watermark */
.bg-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(30, 42, 68, 0.02); /* Extremely faint navy */
    z-index: 0;
    user-select: none;
}

/* Trust Elements */
.stat-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.vertical-thread-line {
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    margin-left: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .glass-card-premium {
        padding: 30px;
        border-radius: 16px;
    }

    .bg-watermark {
        font-size: 10rem;
    }

    .stat-circle {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
}





/* Split-Tone Custom Enhancements */
.letter-spacing-wide {
    letter-spacing: 3px;
}

.question-quote-box {
    border-left: 3px solid var(--accent-gold);
    padding-left: 25px;
}

.answer-bridge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.short-answer-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.impact-no {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    line-height: 1;
}

/* The Solution Card */
.white-card-elevated {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(30, 42, 68, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .white-card-elevated:hover {
        transform: scale(1.02);
    }

.accent-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
}

/* Premium List Icons */
.premium-icon-list {
    list-style: none;
    padding: 0;
}

    .premium-icon-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 18px;
        font-weight: 500;
        color: var(--text-dark);
    }

.list-icon {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 2px; /* Square dots look more modern/legal than circles */
    flex-shrink: 0;
}

.warning-box {
    background: rgba(30, 42, 68, 0.03);
    padding: 20px;
    border-radius: 12px;
    border-left: 2px solid var(--primary-blue);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .white-card-elevated {
        padding: 30px;
    }

    .impact-no {
        font-size: 2rem;
    }
}





/* Reality Snapshot Premium Styling */
.reality-wrapper {
    background: #ffffff;
    padding: 80px 0;
}

.section-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Location Box - Fact Style */
.location-context-box {
    background: rgba(30, 42, 68, 0.03); /* Soft Navy tint */
    padding: 40px;
    border-radius: 20px;
}

.nri-badge {
    background: #fff;
    border: 1px solid #e0e4e9;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

    .nri-badge:hover {
        border-color: var(--accent-gold);
        color: var(--accent-gold);
        transform: translateY(-3px);
    }

/* Concern Card - Resolution Style */
.concern-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border-left: 4px solid var(--accent-gold);
}

.snapshot-list {
    list-style: none;
    padding: 0;
}

    .snapshot-list li {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

.snapshot-icon {
    color: var(--accent-gold);
    font-weight: 900;
    font-family: serif;
    font-size: 1.2rem;
    line-height: 1;
}

/* Emotional Pull Quote */
.nri-pull-quote {
    position: relative;
    padding: 30px;
    font-size: 1.5rem;
    color: #4a5568;
    font-weight: 300;
    font-style: italic;
}

    .nri-pull-quote::before {
        content: "“";
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 5rem;
        color: rgba(30, 42, 68, 0.05);
        font-family: serif;
    }

/* Responsive */
@media (max-width: 768px) {
    .location-context-box, .concern-card-premium {
        padding: 25px;
    }

    .nri-pull-quote {
        font-size: 1.2rem;
    }
}




/* Roadmap Styles */
.roadmap-wrapper {
    position: relative;
    padding-left: 80px;
}

.roadmap-line {
    position: absolute;
    left: 104px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-gold), rgba(30, 42, 68, 0.1));
    z-index: 1;
}

.roadmap-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #e0e4e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-blue);
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    max-width: 600px;
}

/* Specific Highlight for Step 3 */
.step-highlight .step-number {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.2);
}

.step-highlight .step-content h4 {
    color: #000;
}

/* Timeline Box */
.timeline-predictability-box {
    background: var(--primary-blue);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    display: inline-block;
    min-width: 280px;
}

.small-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.days-count {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.days-label {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Links */
.nri-link-premium {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(30, 42, 68, 0.2);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

    .nri-link-premium:hover {
        color: var(--accent-gold);
        border-color: var(--accent-gold);
        padding-left: 5px;
    }

/* Responsive */
@media (max-width: 768px) {
    .roadmap-wrapper {
        padding-left: 0;
    }

    .roadmap-line {
        left: 24px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }

    .days-count {
        font-size: 2rem;
    }
}





/* Fee Section Inversion */
.fee-inversion-wrapper {
    background: #0f172a; /* Extra deep navy for the "Inversion" effect */
    padding: 100px 0;
    position: relative;
}

.fee-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.fee-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Price Typography */
.price-display-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.currency-symbol {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 300;
}

.price-amount {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-suffix {
    display: block;
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: left;
    max-width: 100px;
    line-height: 1.2;
}

/* Payment Milestones */
.payment-milestone-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.milestone-step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.8rem;
}

.milestone-connector {
    width: 40px;
    height: 2px;
    background: rgba(255, 153, 51, 0.3);
}

.text-gold-faded {
    color: rgba(255, 153, 51, 0.7);
    width: 100%;
    letter-spacing: 1px;
}

/* Button Styling */
.btn-nri-gold {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-nri-gold:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

/* Responsive */
@media (max-width: 768px) {
    .fee-card-premium {
        padding: 40px 20px;
    }

    .price-amount {
        font-size: 3.5rem;
    }
}






/* Why Us Grid Styling */
.why-us-tile {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(30, 42, 68, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

    .why-us-tile:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(30, 42, 68, 0.08);
        border-color: var(--accent-gold);
    }

.tile-icon-wrap {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: grayscale(1); /* Keeps it professional, colors only on hover */
    transition: filter 0.3s ease;
}

.why-us-tile:hover .tile-icon-wrap {
    filter: grayscale(0);
}

.why-us-tile h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.why-us-tile p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Accent Corner on Hover */
.why-us-tile::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: transparent var(--accent-gold) transparent transparent;
    transition: all 0.3s ease;
}

.why-us-tile:hover::after {
    border-width: 0 40px 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-us-tile {
        padding: 30px 20px;
        text-align: center;
    }
}




/* CTA Final Premium Styling */
.cta-final-wrapper {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-card-premium {
    background: var(--primary-blue);
    padding: 80px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 30px 60px rgba(30, 42, 68, 0.15);
}

.cta-accent-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 153, 51, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-content-inner {
    position: relative;
    z-index: 2;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Pulse Button Animation */
.btn-nri-primary-pulse {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 153, 51, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
    }
}

.btn-nri-primary-pulse:hover {
    background: #fff;
    transform: scale(1.05);
    color: var(--primary-blue);
}

.cta-trust-strip {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-card-premium {
        padding: 50px 20px;
        border-radius: 24px;
    }

    .btn-nri-primary-pulse {
        width: 100%;
        padding: 18px 20px;
    }
}

