:root {
    --primary-blue: #18408b;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --gradient-blue: linear-gradient(135deg, #183a83 0%, #1e3a8a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 40px;
    /* Space for disclaimer bar */
}

/* Disclaimer Bar Styles */
.disclaimer-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 8px 0;
    z-index: 9999;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.disclaimer-content {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.disclaimer-text {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
    font-size: 13px;
    font-weight: 500;
}

.disclaimer-icon {
    margin-right: 10px;
    font-size: 14px;
    color: #ffd700;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Navbar Styles */
.navbar {
    background: var(--gradient-blue) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 36px;
    /* Position below disclaimer bar */
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
}

.logo-container {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.logo-tree {
    width: 25px;
    height: 25px;
    background: var(--gradient-blue);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.logo-tree::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #10b981;
}

.logo-tree::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #059669;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.brand-name .stylized-d {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 2px;
    font-weight: 900;
}

.brand-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--light-blue) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--light-blue) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    background: var(--light-blue);
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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");
}


@media only screen and (max-width: 998px) {
    #navbarNav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: calc(100dvh - 94px);
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        position: fixed;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        width: 90%;
        right: 0;
        top: 92px;
        overflow: scroll;
        z-index: -1;
        background: var(--gradient-blue);
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }


    .right {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/* Hero Section */
.hero-section {
    color: white;
    padding: 120px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #1b3a86a3;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000085;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 18px 45px;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: none;
}

.hero-buttons .btn-light {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-light:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.6), 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 3px solid #10b981;
    color: #10b981;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-outline-light:hover {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.6), 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.hero-buttons .btn:hover::after {
    width: 100%;
    height: 300px;
}

.hero-buttons .btn i {
    margin-right: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.hero-buttons .btn-outline-light:hover i {
    transform: translateX(3px) scale(1.2);
}

/* Button pulse animation */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-buttons .btn-light {
    animation: buttonPulse 2s infinite;
}

.hero-buttons .btn-light:hover {
    animation: none;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    position: relative;
}

.features-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--secondary-blue);
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Leads Section */
.leads-section {
    padding: 100px 0;
    background: white;
}

.leads-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.lead-feature-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.lead-feature-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.lead-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.lead-feature-icon i {
    font-size: 2rem;
    color: white;
}

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

.lead-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.lead-feature-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--gradient-blue);
    border-radius: 25px;
    padding: 50px 40px;
    margin-top: 50px;
    color: white;
}

.benefits-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.benefit-item-full {
    justify-content: center;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

/* Ownership Section */
.ownership-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 50px 40px;
    margin: 50px 0;
    border-left: 5px solid var(--secondary-blue);
}

.ownership-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.ownership-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Additional Benefits Section */
.additional-benefits-section {
    margin-top: 50px;
}

.additional-benefits-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.additional-benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.additional-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-blue);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.benefit-content {
    margin-top: 20px;
}

.benefit-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

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

.benefit-list li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #d5eaff;
}

.pricing-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 25px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(255, 215, 0, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(145deg, #f0f4ff 0%, #ffffff 100%);
    border: 3px solid #18408b;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(24, 64, 139, 0.3), 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 70px rgba(24, 64, 139, 0.4), 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: linear-gradient(135deg, #18408b, #3b82f6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 800;
    transform: rotate(15deg);
    box-shadow: 0 4px 15px rgba(24, 64, 139, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: rotate(15deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.05);
    }
}

.pricing-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #18408b, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(24, 64, 139, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(24, 64, 139, 0.5);
}

.pricing-card:hover .pricing-icon::before {
    left: 100%;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-title {
    transform: scale(1.05);
}

.pricing-subtitle {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: 500;
    font-style: italic;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-subtitle {
    color: #333;
    transform: translateY(-2px);
}

.pricing-price-container {
    background: linear-gradient(135deg, #18408b, #3b82f6, #18408b);
    padding: 25px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(24, 64, 139, 0.3);
    transition: all 0.4s ease;
}

.pricing-price-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}

.pricing-card:hover .pricing-price-container {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(24, 64, 139, 0.4);
}

.pricing-card:hover .pricing-price-container::before {
    left: 100%;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-price {
    transform: scale(1.1);
}

.pricing-period {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-features li {
    padding: 8px 0;
    color: #333;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    color: #000;
    transform: translateX(5px);
    background: rgba(24, 64, 139, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.pricing-features li i {
    color: #18408b;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pricing-features li:hover i {
    transform: scale(1.2);
    color: #3b82f6;
}

.pricing-button {
    background: linear-gradient(135deg, #18408b, #3b82f6);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(24, 64, 139, 0.3);
}

.pricing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #3b82f6, #18408b);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(24, 64, 139, 0.5);
}

.pricing-button:hover::before {
    left: 100%;
}

.pricing-button:active {
    transform: translateY(-1px) scale(1.02);
}

.bonus-offer {
    background: linear-gradient(135deg, #18408b, #3b82f6, #18408b);
    color: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 15px 40px rgba(24, 64, 139, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: bonusPulse 3s ease-in-out infinite;
}

.bonus-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: bonusShimmer 2s ease-in-out infinite;
}

@keyframes bonusPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes bonusShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.bonus-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.bonus-description {
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid white;
}


.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 15px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 64, 139, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-blue);
}

.cta-button i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Service Features Section */
.service-features-section {
    margin-top: 4rem;
    padding: 4rem 0;
    background: #d5eaff;
    position: relative;
    overflow: hidden;
}

.service-features-section .container {
    position: relative;
    z-index: 2;
}

.service-features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.service-features-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

.service-feature-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    border: none;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.service-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-feature-card:hover .service-feature-icon::before {
    left: 100%;
}

.service-feature-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.service-feature-card:hover .service-feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-feature-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--gradient-blue);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact-list {
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 1.2rem;
}

.footer-contact-label {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.footer-address {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-contact-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer a:hover {
    color: white;
    transform: translateX(5px);
}

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

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer .text-center p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-content {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.privacy-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.privacy-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.privacy-principles {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.privacy-principles-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.privacy-principles-list {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-principles-list li {
    list-style: none;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.privacy-principles-list li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-section-content {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section-content:last-child {
    border-bottom: none;
}

.privacy-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-blue);
    display: inline-block;
}

.privacy-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 25px 0 15px 0;
}

.privacy-sub-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 20px 0 10px 0;
}

.privacy-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.privacy-list {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-list li {
    list-style: none;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.privacy-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.privacy-footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.privacy-footer-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.privacy-footer-text:last-child {
    margin-bottom: 0;
}

/* Terms Section */
.terms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.terms-content {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.terms-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.terms-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.terms-notice {
    background: linear-gradient(135deg, #18408b, #3b82f6);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-section-content {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.terms-section-content:last-child {
    border-bottom: none;
}

.terms-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-blue);
    display: inline-block;
}

.terms-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 25px 0 15px 0;
}

.terms-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.terms-list {
    margin: 20px 0;
    padding-left: 0;
}

.terms-list li {
    list-style: none;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.terms-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.terms-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.terms-footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.terms-footer-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.terms-footer-text:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-blue);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

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

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-container {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.contact-form .btn-primary {
    background: var(--gradient-blue);
    border: none;
    border-radius: 15px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(24, 64, 139, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(24, 64, 139, 0.4);
}

/* Form Validation Styles */
.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6 .4.4.4-.4m0 4.8-.4-.4-.4.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.contact-form .form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.contact-form .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 500;
}

.contact-form .invalid-feedback.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.contact-form .valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
    font-weight: 500;
}

.contact-form .valid-feedback.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form .form-control:focus.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form .form-control:focus.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-form .form-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(24, 64, 139, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.map-content {
    margin-bottom: 30px;
}

.map-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 500;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(24, 64, 139, 0.15);
    border: 4px solid rgba(24, 64, 139, 0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }

    .map-title {
        font-size: 1.75rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #d5eaff;
}

.process-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 2rem;
    color: white;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-blue);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

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

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 16px 35px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .hero-buttons .btn i {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .hero-slide {
        background-attachment: scroll;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    /* Features Section Mobile */
    .features-main-title {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 30px 20px;
        margin-bottom: 2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    /* Leads Section Mobile */
    .leads-main-title {
        font-size: 2.2rem;
    }

    .lead-feature-card {
        padding: 30px 20px;
        margin-bottom: 2rem;
    }

    .lead-feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .lead-feature-icon i {
        font-size: 1.8rem;
    }

    .lead-feature-title {
        font-size: 1.3rem;
    }

    .benefits-section {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .benefits-title {
        font-size: 1.8rem;
    }

    .benefit-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .benefit-item-full {
        flex-direction: row;
    }

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

    .benefit-icon i {
        font-size: 1.2rem;
    }

    /* Ownership Section Mobile */
    .ownership-section {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .ownership-title {
        font-size: 1.8rem;
    }

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

    /* Additional Benefits Mobile */
    .additional-benefits-title {
        font-size: 1.8rem;
    }

    .additional-benefit-card {
        padding: 25px 20px;
        margin-bottom: 2rem;
    }

    .benefit-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -12px;
        left: 20px;
    }

    .benefit-card-title {
        font-size: 1.1rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }

    /* Pricing Section Mobile */
    .pricing-main-title {
        font-size: 2.2rem;
    }

    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .pricing-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .bonus-offer {
        padding: 25px 20px;
        margin-top: 2rem;
    }

    .bonus-title {
        font-size: 1.3rem;
    }

    .bonus-price {
        font-size: 2rem;
    }

    /* Single row layout for mobile */
    .pricing-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .pricing-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    @media (max-width: 768px) {
        .pricing-section .col-lg-3 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 576px) {
        .pricing-section .col-lg-3 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
}

/* Logo Slider Section */
.logo-slider-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    --slick-gap: 40px;
    /* Gap variable for slides - increased for better visibility */
}

.logo-slider-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.logo-slider-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.logo-slider-track {
    margin: 0;
}

.logo-slider-track .slick-slide {
    padding: 0 !important;
    margin: 0 calc(var(--slick-gap) / 2) !important;
}

.slick-list {
    padding-block: 20px !important;
}

.logo-slide {
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
    width: 100% !important;
}

.logo-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.logo-slide img {
    max-width: 80%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: block;
}

/* Better SVG handling */
.logo-slide img[src$=".svg"] {
    width: 100%;
    height: auto;
    max-width: 180px;
    filter: none;
    opacity: 1;
}

.logo-slide:hover img[src$=".svg"] {
    transform: scale(1.05);
}

/* Better WEBP handling */
.logo-slide img[src$=".webp"] {
    background: transparent;
    filter: none;
    opacity: 1;
}

/* Handle PNG files - show original colors */
.logo-slide img[src$=".png"] {
    filter: none;
    opacity: 1;
}

.logo-slide:hover img[src$=".png"] {
    transform: scale(1.05);
}

/* General hover effect - scale up on hover */
.logo-slide:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Slick slider custom styles */
.logo-slider-track .slick-track {
    display: flex;
    align-items: center;
}

/* Override Slick's default styles - margin already set above */

/* Responsive Design */
@media (max-width: 768px) {
    .logo-slider-section {
        --slick-gap: 20px;
        /* Smaller gap on tablets */
    }

    .logo-slider-title {
        font-size: 1.5rem;
    }

    .logo-slide {
        height: 80px;
        padding: 10px 20px;
    }

    .logo-slide img {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .logo-slider-section {
        padding: 40px 0;
        --slick-gap: 15px;
        /* Smaller gap on mobile */
    }

    .logo-slider-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .logo-slide {
        height: 70px;
        padding: 8px 15px;
    }

    .logo-slide img {
        max-height: 45px;
    }

}