/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background-color: transparent important !;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #e7e7e7;
    font-weight: 500;
    font-size: 14px;
}

.nav-link:hover {
    color: #fde3eb;
}

.language-toggle {
    display: flex;
    gap: 10px;
}

.lang-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-link:hover,
.lang-link.active {
    background-color: #f0437e;
    color: #fff;
}

/* Hero Header Section */
.hero-header {
    width: 100%;
    height: 400px;
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-image: url('assets/headerBackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.satisfaction-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Intro Section */
.intro-section {
    padding: 80px 0 60px;
    background-color: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.intro-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #A3A3A3;
}

.services-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    text-align: center;
    padding: 30px 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.service-icon i {
    color: #FF7359;
    font-size: 2rem;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.service-item p {
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-item strong {
    color: #000;
    font-weight: 700;
}

/* Methodology Section */
.methodology-section {
    padding: 80px 0;
    background-color: #fff;
}

.methodology-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
}

.methodology-rows {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.method-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.method-row .method-text {
    text-align: right;
}

.method-icons {
    margin-top: 30px;
}

.method-row .method-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.method-row.reverse .method-text {
    text-align: left;
}

.method-row.reverse .method-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.method-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.method-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    color: #FF7359;
    font-size: 2.5rem;
}

/* Contact Section */
.contact-section {
    padding: 160px 0;
    background-color: #FF7359;
    text-align: center;
}

.contact-content h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: white;
}

.cta-button {
    background-color: white;
    color: #FF7359;
    border: none;
    padding: 20px 40px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background-color: #fff;
    color: #666;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

footer p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.is-sticky {
    background-color: #000;
    z-index: 999;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-header {
        height: 250px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .services-section h2,
    .methodology-section h2,
    .contact-content h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .method-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .method-icons {
        order: -1;
    }

    .method-row.reverse .method-icons {
        order: 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .intro-section {
        padding: 60px 0 40px;
    }

    .services-section,
    .methodology-section {
        padding: 50px 0;
    }

    .contact-section {
        padding: 100px 0;
    }

    .contact-content h2 {
        font-size: 2.5rem;
    }

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-header {
        height: 200px;
    }

    .intro-content h1 {
        font-size: 1.7rem;
    }

    .service-item,
    .method-item {
        padding: 20px 15px;
    }

    .services-section h2,
    .methodology-section h2 {
        font-size: 1.6rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-number {
        font-size: 1.3rem;
    }
}