/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2ECC71;
    --dark-green: #27AE60;
    --light-green: #E8F8F5;
    --text-dark: #2C3E50;
    --text-gray: #5D6D7E;
    --white: #FFFFFF;
    --border-gray: #E5E7EB;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Contact Info Bar (Desktop) */
.contact-bar {
    background: var(--primary-green);
    padding: 0.85rem 2rem;
    display: none;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 999;
}

.contact-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--white);
    stroke: currentColor;
    flex-shrink: 0;
}

.contact-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item:visited {
    color: var(--white);
}

.contact-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

@media (min-width: 769px) {
    .contact-bar {
        display: block;
    }
}

/* Navigation Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    display: list-item;
}

@media (max-width: 768px) {
    .nav-item {
        display: block;
    }
}

@media (min-width: 769px) {
    .nav-item {
        display: list-item;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
}

.nav-cta {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--dark-green);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--white) 0%, #F0FDF4 50%, var(--light-green) 100%);
    min-height: 600px;
    max-height: 800px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media (min-width: 1920px) {
    .hero {
        max-height: 750px;
        padding: 2.5rem 2rem;
    }
    
    .hero-container {
        max-width: 1600px;
        gap: 5rem;
    }
    
    .hero-headline {
        font-size: 4rem;
    }
}

@media (min-width: 2560px) {
    .hero {
        max-height: 700px;
    }
    
    .hero-container {
        max-width: 1800px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-green);
    color: var(--dark-green);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.leaf-icon {
    width: 16px;
    height: 16px;
    color: var(--dark-green);
}

/* Hero Headline */
.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.headline-text {
    color: var(--text-dark);
}

.headline-highlight {
    color: var(--primary-green);
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 90%;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--border-gray);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.2);
    color: var(--primary-green);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-icon svg {
    width: 32px;
    height: 32px;
}

.floating-icon-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 20%;
    right: -8%;
    animation-delay: 1s;
}

.floating-icon-3 {
    bottom: 30%;
    left: -10%;
    animation-delay: 2s;
}

.floating-icon-4 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

.floating-icon-5 {
    top: 50%;
    right: -12%;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1500px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    margin-top: 30px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Processing Card */
.processing-card {
    position: absolute;
    top: -30px;
    right: 40px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (min-width: 1920px) {
    .hero {
        max-height: 800px;
        padding: 3rem 2rem;
    }
    
    .hero-container {
        max-width: 1600px;
    }
}

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

    .hero-image-container {
        order: -1;
    }

    .hero-headline {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        right: -110%;
        top: 72px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        width: min(360px, 86vw);
        height: calc(100vh - 96px);
        text-align: left;
        transition: right 0.36s cubic-bezier(0.2, 0, 0.2, 1);
        padding: 1.25rem 1.25rem 2.25rem;
        gap: 1.25rem;
        z-index: 999;
        overflow-y: auto;
        border-radius: 18px 0 0 18px;
        box-shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
    }

    .nav-item:first-of-type {
        margin-top: 5rem;
    }



    .nav-menu.active {
        right: 0;
    }

    /* subtle top stripe inside panel */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 100%);
        border-bottom: 1px solid rgba(0,0,0,0.04);
        border-radius: 18px 0 0 0;
    }

    /* Close button list item - hide on desktop */
    .nav-menu-close {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 0.25rem;
    }

    @media (min-width: 769px) {
        .nav-menu-close {
            display: none !important;
        }
    }

    .nav-close {
        background: transparent;
        border: none;
        font-size: 1.25rem;
        line-height: 1;
        color: var(--text-dark);
        padding: 0.25rem 0.5rem;
        cursor: pointer;
    }

    

    /* small radial highlight near top-right (behind close button) */
    .nav-menu .nav-menu-close::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 6px;
        width: 120px;
        height: 80px;
        background: radial-gradient(closest-side, rgba(46,204,113,0.06), transparent 60%);
        border-radius: 50%;
        pointer-events: none;
        transform: translateX(6px);
    }

    /* nav item icons */
    .nav-link { 
        display: flex; 
        align-items: center; 
        gap: 0.75rem; 
        color: var(--text-dark); 
        padding: 0.75rem 1rem; 
        font-size: 1rem; 
        border-radius: 10px; 
        font-weight: 700;
        transition: all 0.3s ease;
    }
    .nav-icon { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; color: var(--primary-green); flex-shrink:0; }

    .nav-link:hover, .nav-link:focus {
        background: rgba(46,204,113,0.06);
        box-shadow: 0 8px 20px rgba(46,204,113,0.04);
        transform: translateY(0);
    }

    /* Active menu item - curved outside style */
    .nav-link.active {
        background: var(--primary-green);
        color: var(--white);
        border-radius: 0 24px 24px 0;
        position: relative;
        box-shadow: 0 8px 20px rgba(46,204,113,0.2);
        margin-right: -1.25rem;
        padding-right: calc(1rem + 1.25rem);
    }

    /* Separator lines between nav items on mobile */
    @media (max-width: 768px) {
        .nav-item {
            border-bottom: 1px solid rgba(16,24,40,0.06);
        }
        
        .nav-item:last-of-type {
            border-bottom: none;
        }
    }

    /* small separators (not a full border) not sure about this styling */ 
    .nav-divider {
        list-style: none;
        height: 1px;
        margin: 0.6rem 0;
        background: rgba(16,24,40,0.06);
        border-radius: 2px;
    }

    @media (min-width: 769px) {
        .nav-divider {
            display: none !important;
        }
    }

    /* panel CTA */
    .nav-panel-cta { 
        display: block;
        margin-top: 2rem; 
    }
    .nav-cta-panel {
        display: inline-block;
        width: 100%;
        text-align: center;
        background: var(--primary-green);
        color: var(--white);
        padding: 0.9rem 1rem;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(46,204,113,0.16);
        transition: transform 0.12s ease, background 0.12s ease;
    }
    .nav-cta-panel:active { transform: translateY(1px); }

    /* Mobile contact info */
    .nav-contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 2px solid rgba(46, 204, 113, 0.2);
        list-style: none;
    }

    .nav-contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.9rem 1.1rem;
        background: linear-gradient(135deg, rgba(46,204,113,0.08), rgba(46,204,113,0.02));
        border: 1.5px solid rgba(46,204,113,0.15);
        border-radius: 12px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .nav-contact-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        stroke-width: 1.5px;
    }

    /* Email icon */
    .nav-contact-email .nav-contact-icon {
        color: #7C3AED;
    }

    /* Office icon */
    .nav-contact-office .nav-contact-icon {
        color: #3B82F6;
    }

    /* Phone icon */
    .nav-contact-phone .nav-contact-icon {
        color: var(--primary-green);
    }

    .nav-contact-item:hover {
        background: linear-gradient(135deg, rgba(46,204,113,0.15), rgba(46,204,113,0.08));
        border-color: var(--primary-green);
        color: var(--primary-green);
        transform: translateX(6px);
        box-shadow: 0 6px 16px rgba(46,204,113,0.12);
    }

    .nav-contact-item:active {
        transform: translateX(4px);
    }

    @media (min-width: 769px) {
        .nav-contact-info {
            display: none !important;
        }
    }

    @media (min-width: 769px) {
        .nav-panel-cta,
        .nav-cta-panel {
            display: none !important;
        }
    }

    .nav-menu-logo {
        display: block;
        margin-bottom: 1rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 769px) {
        .nav-menu-logo {
            display: none !important;
        }
    }

    .nav-menu-logo .logo-link {
        display: flex;
        justify-content: center;
    }

    .nav-menu-logo .logo-img {
        height: 45px;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
    }

    .floating-icon svg {
        width: 24px;
        height: 24px;
    }

    .floating-icon-1,
    .floating-icon-2,
    .floating-icon-3,
    .floating-icon-4,
    .floating-icon-5 {
        display: none;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .processing-card {
        top: -10px;
        right: 10px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* For Employers Section */
.employers-section {
    background: #F0FDF4;
    padding: 5rem 2rem;
}

.employers-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--dark-green);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.heading-text {
    color: var(--text-dark);
    display: block;
}

.heading-highlight {
    color: var(--primary-green);
    display: block;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Design for Employers Section */
@media (max-width: 1024px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .employers-section {
        padding: 3rem 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.75rem;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* TipHub Section */
.tiphub-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-green) 100%);
    padding: 5rem 2rem;
}

.tiphub-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.tiphub-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

/* TipHub Cards */
.tiphub-cards-left,
.tiphub-cards-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tiphub-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.tiphub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Phone Container */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-image {
    width: 280px;
    height: auto;
    border-radius: 32px;
    display: block;
    max-width: 100%;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2C3E50, #34495E);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(46, 204, 113, 0.15);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.phone-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-balance {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-top: 1rem;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.phone-item {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.phone-progress {
    height: 100%;
    background: var(--primary-green);
    border-radius: 4px;
}

.phone-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 1rem 0;
}

.chart-svg {
    width: 100%;
    height: 60px;
}

.phone-button {
    width: 100%;
    height: 50px;
    background: var(--primary-green);
    border-radius: 12px;
    margin-top: auto;
}

/* Responsive Design for TipHub Section */
@media (max-width: 1200px) {
    .tiphub-content {
        gap: 2rem;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .phone-image {
        width: 240px;
    }
}

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

    .tiphub-cards-left,
    .tiphub-cards-right {
        flex-direction: row;
        justify-content: center;
    }

    .tiphub-card {
        flex: 1;
        max-width: 300px;
    }

    .phone-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .tiphub-section {
        padding: 3rem 1.5rem;
    }

    .tiphub-content {
        margin-top: 2rem;
    }

    .tiphub-cards-left,
    .tiphub-cards-right {
        flex-direction: column;
        width: 100%;
    }

    .tiphub-card {
        max-width: 100%;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .phone-image {
        width: 200px;
    }

    .phone-balance {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tiphub-content {
        gap: 2rem;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
    }

    .phone-image {
        width: 180px;
    }

    .phone-content {
        padding: 1.5rem 1rem;
    }

    .phone-balance {
        font-size: 1.5rem;
    }
}

/* Solutions Slider Section */
.solutions-slider-section {
    background: linear-gradient(135deg, #F8FFFE 0%, #E8F8F5 50%, #F0FDF4 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-section-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 1rem 0 0 0;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.slider-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slider-slide.active {
    display: block;
    opacity: 1;
}

.slider-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 550px;
}

.slider-image-left,
.slider-image-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-image {
    width: 900px;
    height: auto;
    border-radius: 36px;
    display: block;
    max-width: 100%;
}

.slider-image-right .slider-image {
    width: 320px;
    border-radius: 32px;
}

@media (max-width: 768px) {
    .slider-image {
        width: 720px;
    }
}

@media (max-width: 480px) {
    .slider-image {
        width: 600px;
    }
}

.slider-content-left,
.slider-content-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.slider-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

.slider-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

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

.slider-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.slider-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.15);
}

.slider-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
}

.slider-feature-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.slider-feature-card-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.slider-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.slider-feature-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.slider-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.slider-feature-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-green);
    width: 32px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
    .slider-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .slider-image-left {
        order: -1;
    }

    .slider-heading {
        font-size: 2.5rem;
    }

    .slider-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-slider-section {
        padding: 3rem 1.5rem;
    }

    .slider-heading {
        font-size: 2rem;
    }

    .slider-description {
        font-size: 1rem;
    }

    .slider-features-grid {
        grid-template-columns: 1fr;
    }

    .slider-navigation {
        margin-top: 2rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .slider-heading {
        font-size: 1.75rem;
    }

    .slider-feature-card,
    .slider-feature-box {
        padding: 1.5rem;
    }
}

/* Smart HubSaver Section */
.savings-section {
    background: linear-gradient(90deg, #FFFFFF 0%, #F0FDF4 100%);
    padding: 5rem 2rem;
}

.savings-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.savings-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.savings-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.savings-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.savings-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.savings-feature-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.savings-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.savings-feature-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Savings Phone Container */
.savings-phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.savings-phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2C3E50);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 50px rgba(46, 204, 113, 0.2);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.savings-phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #0a0a0a;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.savings-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    filter: blur(1.5px);
}

.savings-phone-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.savings-screen-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.savings-screen-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.savings-screen-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.savings-screen-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.savings-screen-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.savings-screen-amount.green {
    color: var(--primary-green);
}

.savings-screen-progress {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.savings-progress-bar {
    height: 100%;
    background: var(--primary-green);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.savings-screen-button {
    width: 100%;
    height: 50px;
    background: var(--primary-green);
    border-radius: 12px;
    margin-top: auto;
}

/* Responsive Design for Savings Section */
@media (max-width: 1024px) {
    .savings-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .savings-phone-container {
        order: -1;
    }

    .savings-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .savings-section {
        padding: 3rem 1.5rem;
    }

    .savings-heading {
        font-size: 2rem;
    }

    .savings-description {
        font-size: 1rem;
    }

    .savings-phone-frame {
        width: 240px;
        height: 480px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .savings-heading {
        font-size: 1.75rem;
    }

    .savings-feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .savings-phone-frame {
        width: 200px;
        height: 400px;
    }
}

/* Bulk Payouts Hub Section */
.payouts-section {
    background: linear-gradient(135deg, #F8FFFE 0%, #E8F8F5 50%, #F0FDF4 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.payouts-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.payouts-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.payouts-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payouts-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

.payouts-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

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

.payouts-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.payouts-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.15);
}

.payouts-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
}

.payouts-feature-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.payouts-feature-card-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.payouts-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Payouts Phone Container */
.payouts-phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.payouts-phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 40px rgba(46, 204, 113, 0.1);
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.3s ease;
}

.payouts-phone-frame:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.payouts-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    filter: blur(1px);
}

.payouts-phone-content {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
}

.payouts-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 0.25rem;
}

.status-icon {
    font-size: 0.7rem;
}

.payouts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
}

.header-arrow {
    font-size: 1.2rem;
}

.header-title {
    font-size: 0.9rem;
}

.header-icon {
    font-size: 1rem;
}

.payouts-balance-section {
    text-align: center;
    padding: 1rem 0;
}

.payouts-balance {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.payouts-balance-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.payouts-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0 0.75rem;
}

.payouts-stat-item {
    background: #F5F5F5;
    padding: 0.75rem;
    border-radius: 8px;
}

.payouts-stat-label {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.payouts-buttons-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.payouts-circular-button {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.payouts-button-icon {
    font-size: 1.2rem;
}

.payouts-button-amount {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
}

.payouts-list-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 0.75rem;
}

.payouts-list-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.payouts-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: #F9F9F9;
    border-radius: 8px;
}

.payouts-list-avatar {
    width: 24px;
    height: 24px;
    background: #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.payouts-list-text {
    font-size: 0.75rem;
    color: var(--text-dark);
}

.payouts-bottom-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: auto;
}

/* Payouts Content */

/* Footer */
.footer {
    background: #34495E;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
    opacity: 0.95;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.footer-links {
    margin-top: 0.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.15s ease;
}

.footer-link:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Privacy page styles */
.privacy-page {
    background: linear-gradient(180deg, #F7FFF8 0%, #F0FDF4 100%);
    min-height: auto;
    padding: 2.5rem 1.5rem 2.5rem;
}

.privacy-hero {
    max-width: 1100px;
    margin: 0 auto 0.5rem;
    padding: 0.9rem 1.25rem 0;
}

.privacy-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.privacy-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 800;
}

.privacy-date {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.back-link {
    margin-top: 0.4rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.privacy-content {
    max-width: 980px;
    margin: 0 auto;
    background: transparent;
    color: var(--text-dark);
    padding: 0.25rem 0 2rem;
}

.privacy-content h2 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0.6rem 0 0.4rem;
    font-weight: 700;
}

.privacy-content p,
.privacy-content li {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}


.privacy-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.privacy-content a:hover,
.privacy-content a:focus {
    color: var(--dark-green);
    text-decoration: underline;
}

.privacy-content ul {
    margin-left: 1.15rem;
}

.note-strong {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 0.5rem;
}

.contact-block {
    margin-top: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-title { font-size: 1.35rem; }
    .privacy-page { padding: 2.5rem 1rem 3.5rem; }
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.footer-copyright {
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design for Payouts Section */
@media (max-width: 1024px) {
    .payouts-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .payouts-phone-wrapper {
        order: -1;
    }

    .payouts-heading {
        font-size: 2.5rem;
    }

    .payouts-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .payouts-section {
        padding: 3rem 1.5rem;
    }

    .payouts-heading {
        font-size: 2rem;
    }

    .payouts-description {
        font-size: 1rem;
    }

    .payouts-phone-frame {
        width: 240px;
        height: 480px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .payouts-heading {
        font-size: 1.75rem;
    }

    .payouts-phone-frame {
        width: 200px;
        height: 400px;
    }

    .payouts-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Dignifying Informal Employment Section */
.dignifying-section {
    background: #2C3E50;
    padding: 5rem 2rem;
}

.dignifying-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.dignifying-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.dignifying-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.dignifying-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.dignifying-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dignifying-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.dignifying-card-icon {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.dignifying-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.dignifying-card-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Book Consultation Section */
.consultation-section {
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.consultation-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.consultation-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.consultation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.consultation-link:hover {
    opacity: 0.8;
}

.consultation-link svg {
    width: 16px;
    height: 16px;
}

.consultation-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.consultation-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
}

.consultation-content-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.consultation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
}

.consultation-badge svg {
    width: 16px;
    height: 16px;
}

.consultation-description {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.5rem 0;
}

.benefit-text {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Testimonial styles for the consultation (Get Started Today) section */
.testimonial {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-badge {
    display: inline-block;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
}

.author-title {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}


.check-icon {
    width: 20px;
    height: 20px;
    color: var(--white);
    flex-shrink: 0;
}

/* Consultation Form */
.consultation-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.form-subheading {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0 0 1rem 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* Office Contact Information */
.office-contact-info {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-gray);
}

.office-contact-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.3px;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.office-address {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(46, 204, 113, 0.08) 100%);
    border-radius: 16px;
    border: 1.5px solid var(--primary-green);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.office-address:hover {
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.15);
    transform: translateY(-2px);
}

.office-icon {
    flex-shrink: 0;
    color: var(--primary-green);
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.address-line {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.office-contact-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
}

.office-contact-items {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.office-contact-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    background: rgba(46, 204, 113, 0.05);
    border: 1.5px solid var(--border-gray);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.office-contact-link .office-icon {
    color: var(--white);
    background: var(--primary-green);
    border-radius: 50%;
    padding: 0.35rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-contact-link:hover {
    background: rgba(46, 204, 113, 0.05);
    border-color: var(--border-gray);
    color: var(--text-dark);
    box-shadow: none;
    transform: none;
}

.office-contact-link[href]:hover {
    background: rgba(46, 204, 113, 0.05);
    border-color: var(--border-gray);
    color: var(--text-dark);
    box-shadow: none;
    transform: none;
}

.office-contact-link:not([href]):hover {
    background: rgba(46, 204, 113, 0.05);
    border-color: var(--border-gray);
    color: var(--text-dark);
    box-shadow: none;
    transform: none;
}

.office-contact-link a {
    color: inherit;
    text-decoration: none;
}

.phone-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.phone-separator {
    color: var(--text-gray);
    font-weight: 400;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-call-btn,
.floating-scroll-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.floating-call-btn {
    background: var(--primary-green);
    color: var(--white);
}

.floating-scroll-btn {
    background: var(--white);
    color: var(--text-dark);
    display: none;
}

.floating-scroll-btn.show {
    display: flex;
}

.floating-call-btn:hover,
.floating-scroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-call-btn svg,
.floating-scroll-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .dignifying-heading,
    .consultation-heading {
        font-size: 2.8rem;
    }

    .consultation-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .consultation-feature-card:nth-child(4),
    .consultation-feature-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .dignifying-section,
    .consultation-section {
        padding: 3rem 1.5rem;
    }

    .dignifying-heading,
    .consultation-heading {
        font-size: 2.2rem;
    }

    .consultation-subheading {
        font-size: 1.2rem;
    }

    .dignifying-cards {
        grid-template-columns: 1fr;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .floating-icon svg {
        width: 24px;
        height: 24px;
    }

    .floating-icon-1,
    .floating-icon-2,
    .floating-icon-3,
    .floating-icon-4,
    .floating-icon-5 {
        display: none;
    }

    .consultation-feature-card:nth-child(5) {
        grid-column: span 1;
    }

    .consultation-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .consultation-form-wrapper {
        order: -1;
    }

    .consultation-heading {
        font-size: 2.5rem;
    }

    .consultation-subheading {
        font-size: 1.2rem;
    }

    .consultation-form-wrapper {
        padding: 2rem;
    }

    .slider-wrapper {
        padding: 2rem;
    }

    .slider-section-heading {
        font-size: 2rem;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-call-btn,
    .floating-scroll-btn {
        width: 50px;
        height: 50px;
    }

    .office-contact-info {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .office-contact-heading {
        font-size: 1rem;
    }

    .office-address {
        padding: 1rem;
        gap: 0.75rem;
    }

    .office-details {
        gap: 1rem;
    }

    .address-line {
        font-size: 0.85rem;
    }

    .office-contact-link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .office-contact-link {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dignifying-heading,
    .consultation-heading {
        font-size: 1.8rem;
    }

    .dignifying-description,
    .consultation-description {
        font-size: 1rem;
    }

    .dignifying-card {
        padding: 2rem;
    }
}

/* Desktop: Hide mobile CTA button */
@media (min-width: 769px) {
    .nav-panel-cta,
    .nav-cta-panel {
        display: none !important;
    }
}

/* Desktop: Hide mobile contact info */
@media (min-width: 769px) {
    .nav-contact-info,
    .nav-contact-item {
        display: none !important;
    }
}

