/* Hero Section */
.page-hero {
    background: #1B4D3E;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.6;
    opacity: 1;
    visibility: visible;
}

/* Animation classes */
.hero-content.animate h1 {
    animation: fadeInDown 1s ease forwards;
}

.hero-content.animate p {
    animation: fadeInUp 1s ease forwards;
}

/* Fallback background if image doesn't load */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1B4D3E;
    z-index: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #2C3E50;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

/* Core Values Section */
.core-values {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #2C3E50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: #ffffff;
}

.value-card h3 {
    color: #2C3E50;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
}

/* Competitive Advantages Section */
.competitive-advantages {
    background-color: #ffffff;
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: #E74C3C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 30px;
    color: #ffffff;
}

.advantage-card h3 {
    color: #2C3E50;
    margin-bottom: 15px;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    color: #666;
    margin-bottom: 8px;
}

/* Achievements Section */
.achievements {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    padding: 80px 0;
    color: #ffffff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.achievement-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #1B4D3E 0%, #2C3E50 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: rgba(27, 77, 62, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(27, 77, 62, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: #1B4D3E;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #1B4D3E;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1B4D3E;
    box-shadow: 0 0 15px rgba(27, 77, 62, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #1B4D3E;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.testimonial-rating {
    margin-top: 10px;
}

.testimonial-rating i {
    color: #1B4D3E;
    font-size: 16px;
    margin-right: 2px;
    text-shadow: 0 0 5px rgba(27, 77, 62, 0.2);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1B4D3E;
}

.slider-dot.active {
    background: #1B4D3E;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(27, 77, 62, 0.4);
}

/* Section Header */
.testimonials .section-header h2 {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(27, 77, 62, 0.9), rgba(27, 77, 62, 0.9)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn.primary {
    background: #D4AF37;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn.primary:hover {
    background: #B8860B;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .values-grid,
    .advantages-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px;
        margin: 10px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 18px;
    }

    .author-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}
 