/* ============================
   HOME PAGE ENHANCEMENTS
   Professional styling with smooth animations
   ============================ */

/* ============================
   BANNER ENHANCEMENTS
   ============================ */

.banner {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #1e40af 70%, #0ea5e9 100%);
    background-size: 300% 300%;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    animation: gradientShift 12s ease-in-out infinite;
    margin-top: 0;
}

.banner__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.12), transparent),
        radial-gradient(1.5px 1.5px at 80% 50%, rgba(255,255,255,0.08), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.1), transparent),
        radial-gradient(1.5px 1.5px at 90% 10%, rgba(255,255,255,0.12), transparent);
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
    100% { transform: translateY(0) translateX(0); }
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatOrb 8s ease-in-out infinite;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

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

.banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.banner__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Badge */
.banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    letter-spacing: 0.02em;
}

.banner__badge i {
    font-size: 0.85rem;
    color: #38bdf8;
}

.banner__text h1 {
    color: white;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.banner__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.banner__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-lg {
    padding: 14px 32px !important;
    font-size: 1.05rem !important;
    min-width: 180px;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Stats Row */
.banner__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

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

/* ============================
   SECTION EYEBROW & TITLES
   ============================ */

.section-eyebrow {
    text-align: center;
    margin-bottom: 1rem;
}

.section-eyebrow span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(14, 165, 233, 0.08));
    color: #1e40af;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(30, 64, 175, 0.12);
}

.section-eyebrow span i {
    color: #3b82f6;
    font-size: 0.8rem;
}

.services_company_description {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    z-index: 1;
}

.services_title {
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services_description {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #475569;
}

.section-title-center {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

/* ============================
   FEATURES GRID (replaces services_list)
   ============================ */

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

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e40af;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
    color: white;
    transform: scale(1.1) rotate(3deg);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ============================
   WHY CHOOSE / BENEFITS
   ============================ */

.why-choose-section {
    margin-bottom: 3.5rem;
    padding: 3rem 0;
}

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

.benefit-item {
    padding: 2rem;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(30, 64, 175, 0.15);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(14, 165, 233, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ============================
   CTA DESCRIPTION CARD UPGRADE
   ============================ */

.services_company_description_card {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 60%, #0ea5e9 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 24px;
    margin: 0 0 3rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.services_company_description_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services_company_description_card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services_company_description_card > * {
    position: relative;
    z-index: 2;
}

.services_company_description_card_title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.services_company_description_card_text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.services_company_description_card_list {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.services_company_description_card_list li {
    margin: 0;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.services_company_description_card_list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #38bdf8;
}

.services_company_description_card_list li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* CTA Buttons Row */
.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================
   VIDEO SECTION UPGRADE
   ============================ */

.video-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.video-title {
    text-align: center;
    color: #0f172a;
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.video-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.15);
}

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

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .banner__stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .banner__stats {
        flex-direction: row;
        gap: 1.5rem;
    }

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

    .stat-label {
        font-size: 0.7rem;
    }
    
    .services_company_description_card {
        padding: 2.5rem 1.5rem;
    }
    
    .services_company_description_card_list {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons-row {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons-row .btn {
        width: 100%;
        max-width: 280px;
    }

    .banner__buttons {
        flex-direction: column;
        align-items: center;
    }

    .banner__buttons .btn {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .services_company_description {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}
