/* =============================================
   GLOBAL STYLES
   ============================================= */

:root {
    --primary-color: #E85D5D;
    --secondary-color: #D93030;
    --accent-color: #E85D5D;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #696969;
    --border-color: #e0e0e0;
    --success-color: #E85D5D;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    font-size: 14px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.display-3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.display-4 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.lead {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   NAVIGATION
   ============================================= */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

@media (max-width: 576px) {
    .navbar-logo {
        height: 32px;
    }
}

.navbar-nav .nav-link {
    margin-right: 1.5rem;
    color: var(--text-light) !important;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Navbar Login Button Highlight */
.navbar-nav .btn-primary {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(232, 93, 93, 0.25);
    animation: pulse-subtle 2s ease-in-out infinite;
}

.navbar-nav .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(232, 93, 93, 0.4);
    transform: translateY(-1px);
}

@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(232, 93, 93, 0.25);
    }
    50% {
        box-shadow: 0 4px 16px rgba(232, 93, 93, 0.35);
    }
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(232, 93, 93, 0.3);
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.02) 0%, rgba(217, 48, 48, 0.02) 100%);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(232, 93, 93, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(217, 48, 48, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-title {
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(232, 93, 93, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */

.benefits-section {
    background-color: #fff;
    padding: 6rem 0;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.1), rgba(217, 48, 48, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

/* Modern Benefit Cards */
.benefit-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card-modern:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(232, 93, 93, 0.15);
    transform: translateY(-5px);
}

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

.benefit-icon-large {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.1), rgba(217, 48, 48, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    transition: all 0.4s ease;
}

.benefit-card-modern:hover .benefit-icon-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: scale(1.05);
}

.benefit-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.badge-highlight {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.1), rgba(217, 48, 48, 0.1));
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-highlight {
    display: flex;
    align-items: start;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.feature-highlight i {
    font-size: 1rem;
    margin-top: 2px;
}

.feature-highlight span {
    flex: 1;
}

/* Responsive - Benefits Section */
@media (max-width: 991px) {
    .benefit-card-modern {
        padding: 2rem;
    }

    .benefit-icon-large {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.75rem;
        margin-right: 1.25rem;
    }

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

@media (max-width: 767px) {
    .benefits-section {
        padding: 4rem 0;
    }

    .benefit-card-modern {
        padding: 1.5rem;
    }

    .benefit-card-modern .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon-large {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin-right: 0;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card-modern .d-flex.align-items-center {
        flex-direction: row !important;
        justify-content: center;
        text-align: center;
    }

    .badge-highlight {
        display: block;
        margin-top: 0.5rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   Customer Benefits Card (Why Customers Choose GetLead)
   ============================================ */

.customer-benefits-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(232, 93, 93, 0.12);
    border: 1px solid rgba(232, 93, 93, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.customer-benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.customer-benefits-card:hover {
    box-shadow: 0 12px 48px rgba(232, 93, 93, 0.18);
    transform: translateY(-5px);
}

.customer-benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.customer-feature-item {
    display: flex;
    align-items: start;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(232, 93, 93, 0.02);
}

.customer-feature-item:hover {
    background: rgba(232, 93, 93, 0.08);
    transform: translateX(8px);
}

.customer-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.1), rgba(217, 48, 48, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.customer-feature-item:hover .customer-feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: scale(1.1);
}

.customer-feature-content {
    flex: 1;
}

.customer-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.customer-feature-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive - Customer Benefits Card */
@media (max-width: 991px) {
    .customer-benefits-card {
        padding: 2rem;
        margin-top: 2rem;
    }

    .customer-benefits-title {
        font-size: 1.35rem;
    }

    .customer-feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .customer-benefits-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .customer-benefits-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .customer-feature-item {
        padding: 0.875rem;
    }

    .customer-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
        margin-right: 0.875rem;
    }

    .customer-feature-title {
        font-size: 0.95rem;
    }

    .customer-feature-desc {
        font-size: 0.8125rem;
    }
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.benefit-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-list i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* =============================================
   PROGRAM SECTION
   ============================================= */

.program-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.program-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.program-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.program-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* =============================================
   PROCESS SECTION
   ============================================= */

.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.02) 0%, rgba(217, 48, 48, 0.02) 100%);
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #E85D5D, #D93030);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E85D5D, #D93030);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(232, 93, 93, 0.3);
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 15px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .timeline-item {
        padding-left: 80px;
        margin-bottom: 2rem;
    }
}

/* =============================================
   WHATSAPP BUTTON
   ============================================= */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 27px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none !important;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: #fff;
}

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

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    background: linear-gradient(135deg, #E85D5D 0%, #D93030 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

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

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-section h2 {
    color: #fff;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-section {
    padding: 6rem 0;
    background-color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.75rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.1), rgba(217, 48, 48, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 93, 93, 0.15);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 4rem 0 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 93, 93, 0.3), transparent);
}

/* Footer Brand Section */
.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Footer Contact */
.footer-contact {
    margin-top: 1rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.contact-item-footer i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: var(--primary-color);
}

/* Footer Headings */
.footer-heading {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Social Text */
.footer-social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(232, 93, 93, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Footer Legal Links */
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal li {
    display: inline-block;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-logo {
        height: 38px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 2.5rem 0 0;
        text-align: center;
    }

    .footer-brand,
    .footer-contact {
        text-align: center;
    }

    .contact-item-footer {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 2rem;
    }

    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
}

/* =============================================
   MODAL
   ============================================= */

.modal-content {
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.modal-header {
    background: linear-gradient(135deg, rgba(232, 93, 93, 0.02), rgba(217, 48, 48, 0.02));
}

.modal-title {
    font-weight: 700;
    color: var(--text-dark);
}

.form-check-input {
    border-color: var(--border-color);
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
    .min-vh-100 {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-image {
        text-align: center;
    }

    .navbar-nav {
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 0.5rem 0;
    }

    .benefits-section,
    .program-section,
    .process-section,
    .contact-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer {
        text-align: center;
    }

    .footer-links.d-inline-flex {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links.d-inline-flex li {
        margin-right: 0;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.75rem;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .benefit-card,
    .program-card {
        padding: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .cta-section::before,
    .cta-section::after {
        display: none;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.max-w-lg {
    max-width: 500px;
}

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

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.scroll-reveal {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
