/* easyMember 2.0 - New One Page Design */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #202942;
    --primary-dark: #151b2e;
    --primary-light: #2a3a5a;
    --accent: #2F55D4;
    --accent-light: #4a6fe8;
    --accent-dark: #2544b8;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #F6F7FA;
    --bg-white: #FFFFFF;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(32, 41, 66, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(32, 41, 66, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(42, 58, 90, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(32, 41, 66, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Campaign Banner */
.campaign-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.campaign-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.campaign-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.campaign-text {
    color: white;
    font-size: 1rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.campaign-text strong {
    font-weight: 700;
    font-size: 1.05rem;
}

.campaign-cta {
    background: white;
    color: var(--primary);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.campaign-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.campaign-cta i {
    transition: transform 0.3s;
}

.campaign-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .campaign-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .campaign-text {
        font-size: 0.9rem;
    }
    
    .campaign-cta {
        width: 100%;
        justify-content: center;
    }
}


/* Navigation */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

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

.nav-link.btn {
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.nav-link.btn:hover {
    background: var(--primary-dark);
    color: white !important;
}

/* Mobile Menu - Make it pop! */
.navbar-toggler {
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
        box-shadow: 0 4px 12px rgba(32, 41, 66, 0.2);
    transition: all 0.3s;
}

.navbar-toggler:hover {
    transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(32, 41, 66, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(32, 41, 66, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(32, 41, 66, 0.15);
        border: 1px solid rgba(32, 41, 66, 0.1);
        backdrop-filter: blur(20px);
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-item {
        margin-bottom: 0.5rem;
    }

    .nav-link {
        padding: 0.75rem 1.25rem !important;
        border-radius: 8px;
        transition: all 0.3s;
        font-weight: 500;
    }

    .nav-link:not(.btn):hover {
        background: rgba(32, 41, 66, 0.1);
        color: var(--primary) !important;
        transform: translateX(4px);
    }

    .nav-link.btn {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        text-align: center;
        width: 100%;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        box-shadow: 0 4px 16px rgba(32, 41, 66, 0.25);
    }

    .nav-link.btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(32, 41, 66, 0.35);
    }
}

/* Hero Section */
.hero-new {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F7FA 100%);
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 41, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 58, 90, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}


.hero-heading {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary-large {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 41, 66, 0.3);
    color: white;
}

.btn-outline-large {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    font-size: 1rem;
}

.btn-outline-large:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(32, 41, 66, 0.02) 10px,
            rgba(32, 41, 66, 0.02) 20px
        );
    pointer-events: none;
    opacity: 0.5;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* Benefit Cards */
.benefit-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    background: var(--bg-white);
    box-shadow: 0 8px 24px rgba(32, 41, 66, 0.1);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.ai-assistant-card {
    background: linear-gradient(135deg, rgba(32, 41, 66, 0.03) 0%, rgba(47, 85, 212, 0.03) 100%);
    border: 2px solid rgba(47, 85, 212, 0.15);
}

.ai-assistant-card:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(32, 41, 66, 0.05) 0%, rgba(47, 85, 212, 0.05) 100%);
    transform: translateY(-4px);
}

/* Background Pattern Overlay */
.container, .section {
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-new {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.features-new::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(32, 41, 66, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
}

.features-new::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(42, 58, 90, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 35s ease-in-out infinite reverse;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.feature-box {
    padding: 2.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
    border-radius: 16px 16px 0 0;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(32, 41, 66, 0.12);
    transform: translateY(-6px);
}

.feature-icon-new {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-icon-new i,
.feature-icon-new .fa,
.feature-icon-new .fas,
.feature-icon-new .far,
.feature-icon-new .fal,
.feature-icon-new .fass,
.feature-icon-new .fars,
.feature-icon-new .fals,
.feature-icon-new .fats,
.feature-icon-new .fabs {
    font-size: 1.75rem;
    color: white;
    display: inline-block;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Features Grid */
.features-grid {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.feature-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(32, 41, 66, 0.1);
    transform: translateY(-2px);
}

.feature-item .feature-icon-new {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Screenshots Section */
.screenshots-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(32, 41, 66, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(32, 41, 66, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.4;
}

.screenshot-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.screenshot-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.screenshot-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--bg-white);
    padding: 1rem;
    transition: all 0.3s;
    min-height: 400px;
}

.screenshot-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(32, 41, 66, 0.2);
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F6F7FA 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 2px dashed var(--border);
    text-align: center;
    padding: 3rem;
}

.screenshot-image:has(img) .screenshot-placeholder {
    display: none;
}

/* Clients Section */
.clients-new {
    padding: 100px 0;
    background: var(--bg-white);
}

.marquee-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
}

.marquee-item img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.4s, opacity 0.4s;
}

.marquee-container:hover .marquee-item img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item img {
        max-width: 120px;
        max-height: 70px;
    }

    .marquee-track {
        gap: 2rem;
        animation-duration: 20s;
    }

    .marquee-item {
        padding: 1rem 1.5rem;
    }
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(32, 41, 66, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 40s ease-in-out infinite;
}

.step-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(32, 41, 66, 0.1);
    border-color: var(--primary);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-box p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Testimonials */
.testimonials-new {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials-new::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(42, 58, 90, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 45s ease-in-out infinite reverse;
}

.testimonial-box {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.testimonial-box:hover {
    box-shadow: 0 8px 30px rgba(32, 41, 66, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 900;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-new {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-title-new {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content .btn-primary-large {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.cta-content .btn-primary-large:hover {
    background: #F6F7FA;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #0f172a !important;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* Stats Counter Section */
.stats-counter {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stat-counter-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-counter-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-counter-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

/* Star Ratings */
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 1.1rem;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Benefit Card Icon (FA version) */
.benefit-icon-fa {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon-fa {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
    
    .cta-title-new {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 80px 0 60px;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .features-new,
    .clients-new,
    .testimonials-new {
        padding: 60px 0;
    }
    
    .client-logo-new {
        max-height: 100px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Back to top button */
#backToTop {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(32, 41, 66, 0.3);
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 41, 66, 0.4);
}

/* Modal Alert Styling - Keep alerts visible */
#bookingModal .alert {
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    animation: none !important;
    opacity: 1 !important;
}

#bookingModal .alert-success {
    border-left-color: #28a745;
    background-color: #d4edda;
    color: #155724;
}

#bookingModal .alert-danger {
    border-left-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

#bookingModal .alert .btn-close {
    opacity: 0.7;
}

#bookingModal .alert .btn-close:hover {
    opacity: 1;
}

/* Ensure modal body scrolls to show alerts */
#bookingModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* Rotating Word Animation */
.rotating-word {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--accent);
    position: relative;
}
