:root {
    --primary-color: #2c5c9c;
    --secondary-color: #f8b400;
    --dark-color: #1a2b50;
    --light-color: #f8f9fa;
    --accent-color: #e74c3c;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Cards */
.services-highlights {
    background-color: white;
}

.service-card {
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(44, 92, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    position: relative;
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 24px;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-dots .dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--accent-color);
    animation: pulse 2s infinite;
}

.location-dots .libreville {
    top: 30%;
    left: 25%;
}

.location-dots .port-gentil {
    bottom: 25%;
    left: 15%;
}

.location-dots .franceville {
    top: 60%;
    right: 30%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.05;
}

.stat-item {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Value Proposition */
.value-prop {
    background-color: white;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.value-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.value-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary-color);
}

/* Services Alternate */
.services-section .service-card-alt {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.services-section .service-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(44, 92, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.service-card-alt:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p:before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: -20px;
    top: -20px;
    color: rgba(44, 92, 156, 0.1);
    font-family: serif;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.client-info h5 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.client-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f8a90a 100%);
    padding: 80px 0;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}