/* ============================================
   HOME PAGE STYLES - Production Ready
   ============================================ */

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #070C34;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(42, 53, 130, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(235, 103, 14, 0.15) 0%, transparent 60%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(235, 103, 14, 0.15);
    border: 1px solid rgba(235, 103, 14, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #EB670E;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title-main {
    font-family: 'Inter', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title-accent {
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    color: #EB670E;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.trust-check {
    width: 20px;
    height: 20px;
    background: #EB670E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    flex-shrink: 0;
}

.trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.hero-cta .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: #EB670E;
    border: none;
    box-shadow: 0 10px 30px rgba(235, 103, 14, 0.3);
}

.hero-cta .btn-primary:hover {
    background: #d4560c;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(235, 103, 14, 0.4);
}

.hero-cta .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235, 103, 14, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cert-badge-large {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #EB670E, #2A3582);
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

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

.hero-stat-value {
    font-family: 'Prata', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #EB670E;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Trust Bar */
.trust-bar {
    background: #FFFFFF;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(42, 53, 130, 0.08);
}

.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-logo-item {
    text-align: center;
}

.trust-logo-name {
    font-family: 'Prata', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #070C34;
    margin-bottom: 0.25rem;
}

.trust-logo-desc {
    font-size: 0.75rem;
    color: #2A3582;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

.service-showcase-card {
    background: #F4EEEA;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-showcase-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EB670E, #2A3582);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(7, 12, 52, 0.1);
}

.service-showcase-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EB670E, #2A3582);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.service-showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #070C34;
    margin-bottom: 1rem;
}

.service-showcase-desc {
    color: #2A3582;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-showcase-link {
    font-weight: 600;
    color: #EB670E;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-showcase-link:hover {
    gap: 0.75rem;
    color: #d4560c;
}

/* Why Choose Us */
.why-choose-redesigned {
    padding: 6rem 0;
    background: #F4EEEA;
    position: relative;
    overflow: hidden;
}

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

.feature-showcase-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.feature-showcase-item:hover {
    box-shadow: 0 20px 40px rgba(7, 12, 52, 0.08);
}

.feature-number {
    font-family: 'Prata', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #EB670E;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-showcase-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #070C34;
    margin-bottom: 1rem;
}

.feature-showcase-desc {
    color: #2A3582;
    line-height: 1.7;
}

/* Internship CTA */
.internship-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #070C34 0%, #1a1f4e 100%);
    position: relative;
    overflow: hidden;
}

.internship-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 103, 14, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.internship-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 53, 130, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.internship-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.internship-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.internship-cta-title span {
    color: #EB670E;
}

.internship-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.internship-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.internship-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.internship-feature-marker {
    width: 8px;
    height: 8px;
    background: #EB670E;
    border-radius: 50%;
}

.internship-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.internship-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
}

.internship-stat-item {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.internship-stat-item:last-child {
    border-bottom: none;
}

.internship-stat-value {
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #EB670E;
    line-height: 1.2;
}

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

/* Testimonials */
.testimonials-redesigned {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

.testimonial-showcase-card {
    background: #F4EEEA;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    font-family: 'Prata', serif;
    color: #EB670E;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content-text {
    font-size: 1.05rem;
    color: #2A3582;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EB670E, #2A3582);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-author-details strong {
    display: block;
    color: #070C34;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author-details span {
    color: #2A3582;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-redesigned {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F4EEEA 0%, #FFFFFF 100%);
}

.newsletter-card {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(7, 12, 52, 0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #070C34;
    margin-bottom: 1rem;
}

.newsletter-card-text {
    color: #2A3582;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.newsletter-form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(42, 53, 130, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    background: #F4EEEA;
    transition: all 0.3s ease;
}

.newsletter-input-field:focus {
    border-color: #EB670E;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(235, 103, 14, 0.1);
}

.newsletter-submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #EB670E, #d4560c);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(235, 103, 14, 0.3);
}

.newsletter-message {
    margin-top: 1.5rem;
    min-height: 1.5rem;
}

/* Home Page Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .services-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .internship-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .internship-features-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-accent {
        font-size: 1.75rem;
    }
    
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .testimonials-showcase {
        grid-template-columns: 1fr;
    }
    
    .trust-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-card {
        padding: 2.5rem 1.5rem;
    }
    
    .newsletter-form-group {
        flex-direction: column;
    }
    
    .newsletter-card-title {
        font-size: 2rem;
    }
}