/* Global Styles & Variables */
:root {
    /* Brand Colors - Refined for Trust */
    --primary-blue: #0f172a;
    /* Slate 900 - Deep, authoritative */
    --primary-light: #1e293b;
    /* Slate 800 */
    --accent-gold: #f59e0b;
    /* Amber 500 - Warmth/Action */
    --secondary-teal: #0ea5e9;
    /* Sky 500 - Clarity/Hope */
    --accent-orange: #ea580c;
    /* Orange 600 - Urgency */

    /* Modern Backgrounds */
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    /* Icon Backgrounds (Preserved) */
    --icon-bg-red: #fee2e2;
    --icon-text-red: #991b1b;
    --icon-bg-blue: #e0f2fe;
    --icon-text-blue: #075985;
    --icon-bg-purple: #f3e8ff;
    --icon-text-purple: #6b21a8;
    --icon-bg-sky: #e0f9fe;
    --icon-text-sky: #0369a1;
    --icon-bg-orange: #ffedd5;
    --icon-text-orange: #9a3412;
    --icon-bg-indigo: #e0e7ff;
    --icon-text-indigo: #3730a3;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f1f5f9;
    --gray-light: #e2e8f0;
    --gray-medium: #94a3b8;
    --text-dark: #0f172a;
    --text-muted: #475569;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Modern Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 25px 30px -5px rgba(0, 0, 0, 0.08), 0 15px 15px -5px rgba(0, 0, 0, 0.04);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1.25;
    font-weight: 600;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    /* Pill shape for modern feel */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e293b 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #c2410c 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-light);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
/* Hero Section - Trust Focus */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    /* Background image: Professional Handshake/Agreement - Symbolizing Debt Resolution & Trust */
    background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(226, 232, 240, 0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
}

/* Abstract Background Shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-wrap: balance;
}

.hero p {
    font-size: 1.35rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-weight: 400;
}


/* Services Section (Matching Reference Image) */
.services-section {
    padding: 6rem 0;
    background: #ebf8ff;
    /* Light blue background matching the reference */
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered alignment */
    text-align: center;
    /* Centered text */
    height: 100%;
    position: relative;
    border: none;
    /* Clean look */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


.icon-box {
    width: 80px;
    /* Larger icons */
    height: 80px;
    border-radius: 50%;
    /* Circle shape like reference? Or just large icons. Reference has floated icons. Let's make them large and clean. */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: transparent;
    /* Remove box background to match "floating icon" feel of reference, or keep subtle? Reference has distinct colored icons. */
}

/* Keeping the specific text colors for icons, but removing background for cleaner look or making it very subtle */
.bg-red {
    color: #dc2626;
    background: #fee2e2;
}

.bg-blue {
    color: #0284c7;
    background: #e0f2fe;
}

.bg-purple {
    color: #7c3aed;
    background: #f3e8ff;
}

.bg-sky {
    color: #0ea5e9;
    background: #e0f9fe;
}

.bg-orange {
    color: #ea580c;
    background: #ffedd5;
}

.bg-indigo {
    color: #4f46e5;
    background: #e0e7ff;
}

/* Override icon box styles to be round and cleaner */
.service-card .icon-box {
    border-radius: 20px;
    /* Soft rounded rect */
}


.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Process Section Styles */
.process-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-teal);
    /* Teal accent from image */
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(10, 25, 47, 0.2);
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Section Styles */
.trust-section {
    padding: 6rem 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    /* Gradient text effect for icons */
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer & Other components can inherit general styles or specific ones below */
.footer {
    background: #1e3a8a;
    /* Deep blue from image */
    color: #e2e8f0;
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
    text-decoration: none;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-teal);
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--secondary-teal);
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #f8fafc;
    overflow: hidden;
    /* Hide overflow for marquee */
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    width: 100%;
}

/* Gradient Fade Overlay on Sides */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}


.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.scroll-left {
    animation: scrollLeft 40s linear infinite;
}

.scroll-right {
    animation: scrollRight 40s linear infinite;
}

/* Pause animation on hover for readability */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}


.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    /* Compact padding */
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    width: 300px;
    /* Fixed width for consistency */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--secondary-teal);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
    flex-grow: 1;
    /* Pushes client info to bottom */
}

.client-info {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.client-info strong {
    color: var(--primary-blue);
}

.client-info span {
    color: var(--text-muted);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Adjust based on content duplication */
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Footer Bottom styles */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    @media (max-width: 768px) {
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--white);
            padding: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-top: 1px solid var(--gray-light);
        }

        .nav-menu.active {
            display: flex;
        }

        .mobile-toggle {
            display: block;
        }
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }
}

/* New Services Grid Layout */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-image {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-image:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.card-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Apply Now Button - Green Pill */
.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #006400;
    /* Dark Green */
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    gap: 0.5rem;
}

.btn-apply:hover {
    background-color: #004d00;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 992px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Modern Process Grid Styles */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

.process-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card-new {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-light);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: var(--primary-blue);
}

.step-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-header-new .step-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.step-icon-new {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.step-card-new h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    text-align: left;
}

.step-card-new p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.step-footer-new {
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.step-footer-new i {
    color: var(--secondary-teal);
}

@media (max-width: 992px) {
    .process-grid-new {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Common Card Grid & feature Cards */
.section-padding {
    padding: 80px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: var(--secondary-teal);
}

.feature-card h3,
.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.feature-card i {
    color: var(--secondary-teal);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* Long-form Content Layouts */
.long-form-section {
    padding: 100px 0;
}

.long-form-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 850px;
}

.long-form-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.fresh-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .fresh-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.visual-placeholder {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.visual-placeholder i {
    font-size: 6rem;
    color: var(--secondary-teal);
    opacity: 0.5;
}

.visual-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.long-form-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.long-form-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.long-form-section h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-blue);
}

.long-form-section p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    max-width: 900px;
}

/* Styled Lists */
.content-list {
    margin: 1.5rem 0 2rem;
}

.content-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.content-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-size: 0.9rem;
}

/* Info Boxes (Case Studies, Myth/Reality) */
.info-box {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--secondary-teal);
    margin: 3rem 0;
}

.info-box h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-box.case-study {
    border-color: var(--secondary-teal);
}

.info-box.myth-reality {
    border-color: var(--accent-gold);
}

.info-box.rights {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Integrated CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e293b 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
}

.cta-banner h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #cbd5e1;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Service Selection Guide */
.service-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.guide-profile {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    height: 100%;
}

.guide-profile h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guide-profile .recommendation {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .long-form-section h2 {
        font-size: 1.8rem;
    }

    .long-form-section h1 {
        font-size: 2.2rem;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .info-box {
        padding: 1.5rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}