/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FAF9F6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    /* width: 40px; */
    height: 60px;
    /* border-radius: 50%; */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6A994E;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6A994E;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFD166;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FAF9F6 0%, #f5f3ed 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #6A994E, #588157);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 153, 78, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(106, 153, 78, 0.4);
    background: linear-gradient(45deg, #588157, #507a4a);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #FFD166;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight i {
    color: #6A994E;
    font-size: 1.2rem;
}

.highlight span {
    font-weight: 500;
    color: #333333;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services .section-title {
    text-align: center;
}

.services .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD166;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD166, #f5c542);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    color: #333333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials .section-title {
    text-align: center;
}

.testimonials .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #FAF9F6;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #FFD166;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #333333;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6A994E;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #6A994E 0%, #588157 100%);
    color: white;
}

.contact .section-title {
    color: white;
    text-align: center;
}

.contact .section-title::after {
    background: #FFD166;
    left: 50%;
    transform: translateX(-50%);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FFD166;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.phone-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #FFD166;
    text-decoration: underline;
}

.email-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #FFD166;
    text-decoration: underline;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6A994E;
}

.submit-btn {
    background: linear-gradient(45deg, #6A994E, #588157);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(106, 153, 78, 0.4);
}

/* Footer */
.footer {
    background: #333333;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD166;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #6A994E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD166;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-credit {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #999999;
}

.footer-credit a {
    color: #FFD166;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #6A994E;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(250, 249, 246, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .cta-button,
    .whatsapp-btn,
    .submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #6A994E;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero {
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6A994E 0%, #588157 100%);
    color: white;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Detailed Services Section */
.detailed-services {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.service-detail {
    margin-bottom: 5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 500px;
}

.service-detail.reverse .service-detail-content {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-detail-text {
    order: 2;
}

.service-detail.reverse .service-detail-image {
    order: 1;
}

.service-detail-text {
    padding: 3rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD166, #f5c542);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.service-detail-title {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.service-detail-tagline {
    color: #6A994E;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-description-detailed {
    margin-bottom: 2rem;
}

.service-description-detailed p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
}

.service-includes h4,
.service-process h4,
.service-benefits h4,
.service-value h4,
.service-types h4,
.service-languages h4,
.service-stages h4 {
    color: #333333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-includes h4 i,
.service-process h4 i,
.service-benefits h4 i,
.service-value h4 i,
.service-types h4 i,
.service-languages h4 i,
.service-stages h4 i {
    color: #6A994E;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333333;
}

.service-list li i {
    color: #6A994E;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(45deg, #6A994E, #588157);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 153, 78, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(106, 153, 78, 0.4);
    background: linear-gradient(45deg, #588157, #507a4a);
}

.service-detail-image {
    height: 500px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Packages Section */
.service-packages {
    padding: 80px 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #FAF9F6;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    background: white;
    border: 3px solid #FFD166;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD166;
    color: #333333;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header {
    margin-bottom: 2rem;
}

.package-title {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: #6A994E;
    font-weight: 500;
}

.package-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #333333;
}

.package-features li i {
    color: #6A994E;
}

.package-btn {
    display: inline-block;
    background: linear-gradient(45deg, #6A994E, #588157);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(106, 153, 78, 0.4);
}

/* Services CTA Section */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD166 0%, #f5c542 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(45deg, #6A994E, #588157);
    color: white;
}

.cta-button.secondary {
    background: white;
    color: #6A994E;
    border: 2px solid #6A994E;
}

.cta-button.secondary:hover {
    background: #6A994E;
    color: white;
}

/* Active navigation link */
.nav-link.active {
    color: #6A994E;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Service-specific mobile improvements */
.service-detail-content {
    overflow: hidden;
}

.service-img {
    transition: transform 0.3s ease;
}

.service-detail:hover .service-img {
    transform: scale(1.02);
}

/* Better mobile scrolling */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    /* Improved mobile navigation */
    .nav-menu.active {
        max-height: 600px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0rem;
    }
    
    /* Better mobile touch targets */
    .nav-link {
        padding: 0.75rem 0;
        display: block;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile-specific service improvements */
    .service-detail:hover {
        transform: none;
    }
    
    .service-detail:hover .service-img {
        transform: none;
    }
    
    /* Better mobile spacing */
    .detailed-services .section-title {
        margin-bottom: 1.5rem;
    }
    
    .detailed-services .section-subtitle {
        margin-bottom: 2rem;
    }
}

/* Services Component Specific Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 2px solid #e9ecef;
}

.step-number {
    background: #6A994E;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-text {
    color: #333333;
    font-weight: 500;
    font-size: 0.9rem;
}

.stages-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stage-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.stage-icon {
    width: 60px;
    height: 60px;
    background: #6A994E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stage-icon i {
    color: white;
    font-size: 1.5rem;
}

.stage-content h5 {
    color: #333333;
    margin-bottom: 0.5rem;
}

.stage-content p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

.value-points {
    margin-bottom: 2rem;
}

.value-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.value-point i {
    color: #6A994E;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.value-point h5 {
    color: #333333;
    margin-bottom: 0.5rem;
}

.value-point p {
    color: #666666;
    margin: 0;
}

.translation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.translation-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #6A994E;
}

.translation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.translation-header i {
    color: #6A994E;
    font-size: 1.5rem;
}

.translation-header h5 {
    color: #333333;
    margin: 0;
    font-size: 1.2rem;
}

.translation-type ul {
    list-style: none;
    padding: 0;
}

.translation-type li {
    color: #333333;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.translation-type li::before {
    content: '•';
    color: #6A994E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.language-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.language-badge {
    background: #6A994E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.relocation-category {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6A994E;
}

.relocation-category h5 {
    color: #333333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.relocation-category h5 i {
    color: #6A994E;
}

.relocation-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.relocation-list li {
    color: #333333;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.relocation-list li::before {
    content: '✓';
    color: #6A994E;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .services-hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .detailed-services {
        padding: 60px 0;
    }
    
    .service-detail {
        margin-bottom: 3rem;
        border-radius: 15px;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-detail.reverse .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    /* Force all images to top on mobile */
    .service-detail-text {
        padding: 2rem 1.5rem;
        order: 2;
    }
    
    .service-detail-image {
        height: 250px;
        order: 1;
    }
    
    /* Override reverse order for mobile - images always on top */
    .service-detail.reverse .service-detail-text {
        order: 2;
    }
    
    .service-detail.reverse .service-detail-image {
        order: 1;
    }
    
    .service-header {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .service-icon-large i {
        font-size: 1.5rem;
    }
    
    .service-detail-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .service-detail-tagline {
        font-size: 1rem;
    }
    
    .service-description-detailed p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .service-includes h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-list {
        margin-bottom: 1.5rem;
    }
    
    .service-list li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .service-btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .package-card.featured {
        transform: none;
        border-width: 2px;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.95rem;
    }
    
    .package-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Mobile optimizations for service components */
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .process-step {
        padding: 0.5rem 0.75rem;
    }
    
    .stages-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stage-item {
        padding: 1rem;
    }
    
    .stage-icon {
        width: 50px;
        height: 50px;
    }
    
    .stage-icon i {
        font-size: 1.25rem;
    }
    
    .value-point {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .value-point i {
        font-size: 1.25rem;
    }
    
    .translation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .translation-type {
        padding: 1.5rem;
    }
    
    .language-badges {
        gap: 0.5rem;
    }
    
    .language-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .relocation-category {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .relocation-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 90px 0 50px;
        min-height: 50vh;
    }
    
    .services-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .services-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .detailed-services {
        padding: 40px 0;
    }
    
    .service-detail {
        margin-bottom: 2.5rem;
        border-radius: 12px;
    }
    
    .service-detail-text {
        padding: 1.5rem 1rem;
    }
    
    .service-detail-image {
        height: 200px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .service-icon-large {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .service-icon-large i {
        font-size: 1.25rem;
    }
    
    .service-detail-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 0.25rem;
    }
    
    .service-detail-tagline {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .service-description-detailed {
        margin-bottom: 1.5rem;
    }
    
    .service-description-detailed p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-includes h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-list {
        margin-bottom: 1rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        align-items: flex-start;
    }
    
    .service-list li i {
        margin-top: 0.1rem;
    }
    
    .service-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 30px;
    }
    
    .service-packages {
        padding: 50px 0;
    }
    
    .packages-grid {
        gap: 1rem;
    }
    
    .package-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .package-title {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }
    
    .package-subtitle {
        font-size: 0.9rem;
    }
    
    .package-features {
        margin-bottom: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .package-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 30px;
    }
    
    .services-cta {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
    
    .cta-button {
        max-width: 260px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 30px;
    }
    
    /* Touch target optimization */
    .service-btn,
    .package-btn,
    .cta-button {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    /* Small mobile optimizations for service components */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 0.5rem 0.75rem;
        border-radius: 20px;
    }
    
    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
    
    .step-text {
        font-size: 0.85rem;
    }
    
    .stage-item {
        padding: 1rem 0.75rem;
    }
    
    .stage-icon {
        width: 40px;
        height: 40px;
    }
    
    .stage-icon i {
        font-size: 1rem;
    }
    
    .stage-content h5 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .stage-content p {
        font-size: 0.85rem;
    }
    
    .value-point {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.75rem;
    }
    
    .value-point i {
        font-size: 1.5rem;
        margin: 0 auto 0.5rem;
    }
    
    .value-point h5 {
        font-size: 1rem;
    }
    
    .value-point p {
        font-size: 0.9rem;
    }
    
    .translation-type {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .translation-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .translation-header i {
        font-size: 1.25rem;
    }
    
    .translation-header h5 {
        font-size: 1rem;
    }
    
    .translation-type li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .language-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
    
    .relocation-category {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .relocation-category h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .relocation-category h5 i {
        font-size: 1.25rem;
    }
    
    .relocation-list li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

} 
/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #FFD166 0%, #FFE066 100%);
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero .hero-content {
    animation: fadeInUp 1s ease-out;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
    line-height: 1.1;
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666666;
    font-weight: 400;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.hero-highlight i {
    color: #6A994E;
    font-size: 1.5rem;
}

.hero-highlight span {
    color: #333333;
    font-weight: 600;
}

.about-hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero-image {
    position: relative;
    animation: fadeIn 1s ease-out 0.3s both;
}

.image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 170px;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333333;
    font-weight: 600;
}

.overlay-content i {
    color: #6A994E;
}

/* Personal Introduction */
.personal-intro {
    padding: 6rem 0;
    background: #FAF9F6;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-greeting {
    font-size: 1.3rem;
    color: #6A994E;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555555;
}

/* Journey Timeline */
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-icon {
    background: #FFD166;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.timeline-icon i {
    color: #333333;
    font-size: 1.5rem;
}

.timeline-content h4 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666666;
    margin: 0;
}

.timeline-line {
    width: 3px;
    height: 2rem;
    background: linear-gradient(to bottom, #FFD166, #6A994E);
    margin-left: 2rem;
}

/* Journey Story */
.journey-story {
    padding: 6rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.story-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #666666;
    font-style: italic;
}

.story-highlight {
    background: #FAF9F6;
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #FFD166;
}

.story-highlight i {
    color: #6A994E;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.story-highlight h3 {
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-highlight p {
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

/* Dual Life Section */
.dual-life {
    padding: 6rem 0;
    background: #FAF9F6;
}

.dual-life-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.life-card {
    background: white;
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.life-card:hover {
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.city-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.card-header h3 {
    color: #333333;
    font-weight: 700;
    margin: 0;
}

.card-content p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.life-features {
    list-style: none;
}

.life-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555555;
}

.life-features i {
    color: #6A994E;
    width: 20px;
}

.connection-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bridge-line {
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, #FFD166, #6A994E);
}

.bridge-icon {
    background: white;
    border: 3px solid #FFD166;
    border-radius: 50%;
    padding: 1rem;
    margin: 1rem 0;
}

.bridge-icon i {
    color: #6A994E;
    font-size: 1.5rem;
}

.bridge-text {
    color: #6A994E;
    font-weight: 600;
    text-align: center;
    font-style: italic;
}

/* Relocation Challenge */
.relocation-challenge {
    padding: 6rem 0;
    background: white;
}

.challenge-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.challenge-intro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #FFD166;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.challenge-intro i {
    color: #333333;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.challenge-intro p {
    margin: 0;
    color: #333333;
    font-weight: 600;
}

.challenge-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FAF9F6;
    border-radius: 1rem;
}

.challenge-icon {
    background: #6A994E;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.challenge-content h4 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.challenge-content p {
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Path Illustration */
.path-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #FAF9F6;
    border-radius: 1.5rem;
}

.path-start, .path-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.path-start i, .path-end i {
    color: #6A994E;
    font-size: 2rem;
}

.path-obstacles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.obstacle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
}

.obstacle i {
    font-size: 1.5rem;
}

/* Solution Section */
.the-solution {
    padding: 6rem 0;
    background: #FAF9F6;
}

.solution-story {
    margin-top: 3rem;
}

.story-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    background: #6A994E;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.step-content h3 {
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: #FAF9F6;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: #FFD166;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    background: #6A994E;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.advantage-card h3 {
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Personal Touch */
.personal-touch {
    padding: 6rem 0;
    background: #FAF9F6;
}

.touch-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.lifestyle-img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.touch-intro {
    font-size: 1.2rem;
    color: #6A994E;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.personal-promises {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promise {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promise i {
    color: #FFD166;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.promise h4 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.promise p {
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6A994E 0%, #588157 100%);
    color: white;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #FFD166;
    color: #333333;
}

.cta-button.primary:hover {
    background: #FFE066;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #6A994E;
    transform: translateY(-2px);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.cta-guarantee i {
    color: #FFD166;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero .container,
    .intro-content,
    .story-content,
    .challenge-content,
    .touch-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 40px;
    }
    .about-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    .dual-life-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .connection-bridge {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

}

@media (max-width: 768px) {

    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .story-step {
        flex-direction: column;
        text-align: center;
    }
    
    .challenge-item,
    .promise {
        flex-direction: column;
        text-align: center;
    }
    .challenge-icon {
        background: #6A994E;
        color: white;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .advantage-card,
    .story-step .step-content,
    .challenge-item,
    .promise {
        padding: 1.5rem;
    }
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: 1rem;
}

/* Language Switcher in Navigation */
.language-switcher-nav {
    list-style: none;
}

.language-switcher-nav::before,
.language-switcher-nav::marker {
    display: none !important;
}

.language-switcher-nav {
    list-style-type: none !important;
}

.language-switcher-nav .lang-dropdown {
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
    color: #333333;
}

.lang-btn:hover {
    border-color: #FFD166;
    background-color: #FAF9F6;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-btn i {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 0.5rem;
    min-width: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.25rem;
}

.lang-dropdown.active .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    text-decoration: none;
    color: #333333;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #F0F0F0;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #FAF9F6;
    color: #6A994E;
}

.lang-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .language-switcher-nav {
        margin-left: 0;
        /* width: 100%; */
        order: 999;
        /* border-top: 1px solid #E0E0E0; */
        padding-top: 1rem;
        margin-top: 1rem;
        list-style: none !important;
    }
    
    .language-switcher-nav .lang-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        background: #F8F9FA;
        border: 1px solid #E0E0E0;
        border-radius: 0.5rem;
    }
    
    .language-switcher-nav .lang-options {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 0.5rem;
    }
    
    .language-switcher-nav .lang-dropdown.active .lang-options {
        display: block;
    }
    
    .language-switcher-nav .lang-dropdown:not(.active) .lang-options {
        display: none;
    }
    
    .lang-btn {
        padding: 0.4rem 0.6rem;
    }
    
    .lang-text {
        display: inline;
    }
    
    .lang-options {
        right: -10px;
        min-width: 100px;
    }
    
    .lang-option {
        padding: 0.6rem;
        background: white;
        /* border: 1px solid #E0E0E0; */
        margin-bottom: 1rem;
        border-radius: 0.25rem;
    }
} 