/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-green: #28423E;
    --light-green: #E8F5E9;
    --teal-green: #4CAF50;
    --off-white: #FAFAFA;
    --white: #FFFFFF;
    --dark-text: #1A1A1A;
    --grey-text: #666666;
    --border-radius-pill: 50px;
    --header-padding: 16px 32px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.header-container {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-pill);
    padding: var(--header-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--dark-green);
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.lang-btn svg {
    transition: transform 0.3s ease;
}

.lang-btn.active svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark-text);
    transition: background-color 0.2s ease;
}

.lang-option:first-child {
    border-radius: 12px 12px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 12px 12px;
}

.lang-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-green);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    text-align: center;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--grey-text);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 66, 62, 0.3);
    text-decoration: none !important;
    display: inline-block;
}

.cta-button:hover {
    background-color: #1f3532;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 66, 62, 0.4);
    text-decoration: none;
    color: var(--white);
}

/* Statistics Cards */
.stats-container {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: var(--teal-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.4;
}

/* About Us Section */
.about {
    background-color: #FFFFFF;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.title-part-1 {
    color: var(--dark-text);
}

.title-part-2 {
    color: var(--teal-green);
}

.about-intro {
    font-size: 18px;
    color: var(--grey-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: start;
}

/* Person Image */
.about-image-wrapper {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
}

.about-person-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: var(--grey-text);
    line-height: 1.6;
}

/* Services Section */
.services {
    background-image: url('images/services-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1E3B33;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.services-title-part1 {
    color: #FFFFFF;
}

.services-title-part2 {
    color: var(--teal-green);
}

.services-subtitle {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-description {
    font-size: 15px;
    color: var(--grey-text);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background-color: #FAFAFA;
    padding: 80px 20px;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.reviews-title-part1 {
    color: var(--dark-text);
}

.reviews-title-part2 {
    color: var(--teal-green);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.review-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.review-position {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.4;
}

.review-text {
    font-size: 15px;
    color: var(--grey-text);
    line-height: 1.7;
}

/* Contact Us Section */
.contact {
    background-color: #FAFAFA;
    padding: 80px 20px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.contact-title-part1 {
    color: var(--dark-green);
}

.contact-title-part2 {
    color: var(--teal-green);
}

.contact-subtitle {
    font-size: 18px;
    color: var(--grey-text);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 32px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.form-description {
    font-size: 16px;
    color: var(--grey-text);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--dark-text);
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--grey-text);
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
    opacity: 0.6;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn {
    background-color: var(--dark-green);
    color: #FFFFFF;
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background-color: #1f3532;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 66, 62, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.active {
    display: flex;
    opacity: 1;
}

.success-modal-content {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--teal-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #FFFFFF;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.success-message {
    font-size: 16px;
    color: var(--grey-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-close-btn {
    background-color: var(--dark-green);
    color: #FFFFFF;
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background-color: #1f3532;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }
    
    .nav {
        width: 100%;
    }
    
    .nav-list {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list a {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        max-width: 100%;
        width: 100%;
    }
    
    .about {
        padding: 60px 20px;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-intro {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 0 auto;
    }
    
    .about-person-img {
        width: 100%;
        height: auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services {
        padding: 50px 20px;
    }
    
    .services-header {
        margin-bottom: 35px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-subtitle {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .reviews {
        padding: 60px 20px;
    }
    
    .reviews-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .review-card {
        padding: 28px;
    }
    
    .contact {
        padding: 60px 20px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header {
        top: 10px;
        width: 95%;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .nav-list {
        gap: 12px;
    }
    
    .nav-list a {
        font-size: 13px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-intro {
        font-size: 15px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .services-title {
        font-size: 26px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 19px;
    }
    
    .service-card-description {
        font-size: 14px;
    }
    
    .reviews-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-name {
        font-size: 17px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 15px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px;
        font-size: 15px;
    }
    
    .success-modal-content {
        padding: 32px 24px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-message {
        font-size: 15px;
    }
}

/* Footer */
.footer {
    background-image: url('images/footer-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1E3B33;
    padding: 60px 20px 40px;
    color: #FFFFFF;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--teal-green);
}

.footer-copyright {
    margin-top: 8px;
}

.copyright-text {
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.9;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 30px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-nav {
        gap: 24px;
    }
    
    .footer-link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .copyright-text {
        font-size: 13px;
    }
}
