:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-gray: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: var(--secondary-color);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: 0.3s;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/images/hero-image-new.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

section {
    padding: 5rem 10%;
}

.about {
    background-color: var(--background-color);
}

.about-content {
    display: flex;
    gap: 5rem;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        padding: 0 5%;
    }
}

.about-text {
    flex: 0 0 60%;
}

.about-text p {
    margin: 1rem 0;
}

.services {
    flex: 0 0 40%;
}

.services ul {
    list-style: none;
    margin-top: 1rem;
}

.services li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 2rem;
    top: -13px;
}

section.contact {
    background-color: var(--background-color);
    padding: 0;
}

.contact-content {
    display: flex;
}

.contact-info {
    flex: 0 0 50%;
    padding: 5rem 10vw;
}

.side-image {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .side-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.submit-button {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #c0392b;
}

iframe {
    display: block;
}

#google-map {
    width: 100%;
    height: 400px;
}

.testimonials {
    background-color: var(--light-gray);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

.counters {
    background-color: var(--light-gray);
    text-align: center;
    padding: 5rem 0;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.counter-box {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
    position: relative;
}

.counter::after {
    content: "+";
    font-size: 2rem;
    position: absolute;
    margin-left: 5px;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .counter-box {
        flex: 0 0 calc(100% - 2rem);
    }
}

.testimonials-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-slide {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-position {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 5%;
    }
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links.active a {
    margin: 0.5rem 0;
}

.partners {
    background-color: white;
    text-align: center;
}

.partners h2 {
    margin-bottom: 3rem;
}

.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-container {
        gap: 2rem;
    }
    
    .partner-logo {
        flex: 0 0 150px;
        height: 80px;
    }
}
