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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
}

/* Header Styles */
.header {
    background-color: #FFFFFF;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

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

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
}

/* Navigation Styles */
.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00C486;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-link {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.lang-link.active {
    color: #00C486;
}

.lang-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #00C486;
}

.lang-link:hover {
    color: #00C486;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}


.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    z-index: 3;
    text-align: left;
    max-width: 50%;
    width: 50%;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    left: 0;
    height: 100%;
    margin-left: 3rem;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-title-line1 {
    display: block;
    font-size: 60px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.hero-title-line2 {
    display: block;
    font-size: 105px;
    font-weight: 700;
    color: #000000;
}

.hero-description {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-button {
    background-color: #00C486;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px 30px 2px 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.hero-button:hover {
    background-color: #00A06B;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 3rem 2rem;
    }
    
    .hero-background {
        width: 100%;
        height: 50vh;
        position: relative;
    }
    
    .hero-title-line1 {
        font-size: 48px;
    }
    
    .hero-title-line2 {
        font-size: 84px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-title-line1 {
        font-size: 36px;
    }
    
    .hero-title-line2 {
        font-size: 64px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 2rem;
    }
    
    .hero-button {
        padding: 0.8rem 2rem;
        font-size: 14px;
    }
}

/* About Us Section Styles */
.about {
    background-color: #FFFFFF;
    padding: 6rem 0;
    position: relative;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about-top {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 6rem;
}

.about-image {
    flex: 0 0 45%;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.about-content {
    flex: 0 0 55%;
    text-align: right;
}

.about-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.about-icon {
    width: 332px;
    height: 18px;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    text-align: right;
}

.about-text p {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Feature Icons Section */
.about-features {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
}

.feature-item {
    flex: 1;
    text-align: center;
    max-width: 300px;
}

.feature-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    width: 150px;
    height: 150px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.5;
}

/* Responsive Design for About */
@media (max-width: 1024px) {
    .about-top {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-image {
        flex: 1;
    }
    
    .about-content {
        flex: 1;
        text-align: left;
    }
    
    .about-label {
        justify-content: flex-start;
    }
    
    .about-text {
        text-align: left;
    }
    
    .about-features {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-container {
        padding: 0 1rem;
    }
    
    .about-top {
        margin-bottom: 4rem;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-features {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .feature-item {
        max-width: 100%;
    }
}

/* Our Services Section Styles */
.services {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-content {
    background-color: #F3F3F3;
    border-radius: 0px 120px 0px 0px;
    padding: 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-right: 10%;
}

.services-text {
    flex: 0 0 100%;
    padding-right: 20%;
}

.services-title {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-bullet {
    width: 12px;
    height: 12px;
    background-color: #00C486;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.5;
    margin: 0;
}

.services-image {
    position: absolute;
    right: -15%;
    bottom: 0%;
    z-index: 2;
    width: 485px;
    height: 620px;
}

.services-photo {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    object-fit: cover;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-content {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem;
    }
    
    .services-text {
        flex: 1;
    }
    
    .services-image {
        flex: 1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-content {
        padding: 2rem;
        gap: 2rem;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .service-item {
        margin-bottom: 2rem;
    }
}

/* Reviews Section Styles */
.reviews {
    background-color: #FFFFFF;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reviews-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.reviews-header {
    margin-bottom: 4rem;
}

.reviews-label {
    margin-bottom: 1rem;
}

.reviews-icon {
    width: 404px;
    height: 18px;
}

.reviews-title-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews-title {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.reviews-navigation {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-btn {
    background-color: #F3F3F3;
    color: #000000;
}

.nav-btn:hover {
    background-color: #E0E0E0;
}

.nav-btn.active {
    background-color: #00C486;
    color: #FFFFFF;
}

.nav-btn.active:hover {
    background-color: #00A06B;
}

.nav-btn.disabled {
    background-color: #F3F3F3;
    color: #000000;
    cursor: not-allowed;
    opacity: 0.6;
}

.reviews-carousel {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 350px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.review-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    margin-bottom: 1rem;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.5rem 0;
}

.author-title {
    font-size: 14px;
    color: #6B6B6B;
    margin: 0;
}

.review-line {
    width: 100%;
    height: 3px;
    background-color: #00C486;
    border-radius: 2px;
    margin-top: auto;
}

/* Responsive Design for Reviews */
@media (max-width: 1024px) {
    .reviews-track {
        gap: 1.5rem;
    }
    
    .review-card {
        flex: 0 0 300px;
    }
    
    .reviews-title-nav {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews-container {
        padding: 0 1rem;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .reviews-track {
        gap: 1rem;
    }
    
    .review-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Contact Us Section Styles */
.contact {
    background-color: #FFFFFF;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-left {
    flex: 0 0 50%;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-input,
.form-textarea {
    background-color: #F2F2F2;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 16px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #000000;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: #E8E8E8;
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6B6B6B;
}

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

.contact-button {
    background-color: #00C486;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px 30px 2px 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    align-self: flex-start;
    margin-top: 1rem;
}

.contact-button:hover {
    background-color: #00A06B;
    transform: translateY(-2px);
}

.success-message {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #E8F5E8;
    border: 1px solid #00C486;
    border-radius: 8px;
    text-align: center;
}

.success-message p {
    color: #00C486;
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.contact-right {
    flex: 0 0 50%;
    position: relative;
}

.contact-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    min-height: 500px;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-left {
        flex: 1;
    }
    
    .contact-right {
        flex: 1;
    }
    
    .contact-photo {
        border-radius: 20px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-button {
        width: 100%;
        text-align: center;
    }
}

/* Footer Styles */
.footer {
    background-color: #012B1F;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 4rem;
}

.footer-left {
    flex: 0 0 40%;
}

.footer-tagline {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.footer-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
}

.footer-description {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav-link:hover {
    color: #00C486;
}

.footer-legal {
    margin: 1rem 0;
    text-align: center;
}

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

.footer-legal-link:hover {
    color: #00C486;
}

.footer-separator {
    color: #FFFFFF;
    margin: 0 1rem;
    font-size: 14px;
}

.footer-copyright {
    margin-top: 1rem;
}

.footer-copyright p {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .language-switcher {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .header-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-left {
        flex: 1;
    }
    
    .footer-right {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-tagline {
        font-size: 24px;
    }
    
    .footer-nav {
        gap: 1.5rem;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}
