/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Previne oprirea video-ului la scroll */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.6));
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-on-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-on-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-brief {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Services Section */
.services-overview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: #333;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .btn {
    margin: 0 20px 20px 20px;
    margin-top: auto;
    align-self: flex-start;
}



/* CTA Section - Now handled by common.css */

/* CTA buttons now handled by common.css */

/* Hero button styles - specific to hero section only */
.hero .btn {
    background-color: var(--accent-color);
    color: var(--text-on-light);
    border: 2px solid var(--accent-color);
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero .btn:hover {
    background-color: transparent;
    color: var(--text-on-dark);
    border-color: var(--text-on-dark);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary {
    background-color: transparent;
    color: var(--text-on-dark);
    border-color: var(--text-on-dark);
}

.hero .btn-secondary:hover {
    background-color: var(--text-on-dark);
    color: var(--accent-color);
}

/* Button styles now handled by common.css */

/* Button styles now handled by common.css */

/* Trust/Stats Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 24px;
    text-align: center;
}

.trust-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-color);
}

.trust-label {
    margin-top: 8px;
    color: var(--muted-text);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(253, 121, 3, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-author {
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
    display: inline-block;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    font-style: italic;
}

/* Partners */
.partners-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.partners-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: none;
}

/* Footer - Now handled by common.css */

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -8px;
    }

    .partners-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 3rem;
        text-align: center;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .hero .btn {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0.4rem auto;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .about-grid,
    .services-grid,
    .trust-grid,
    .testimonials-grid,
    .partners-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card::before {
        font-size: 2.5rem;
        top: -6px;
        left: 20px;
    }
    
    .testimonial-author {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
    
    
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0.75rem 2rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .hero .btn {
        max-width: 220px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 2rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
} 