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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    word-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal scrolling on all elements */
* {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
}


/* Touch-friendly tap targets */
@media (max-width: 768px) {
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }
}

/* Mobile-specific text handling */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Prevent any element from causing horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure images and media are responsive */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Language Toggle */
.language-toggle {
    position: relative;
    z-index: 1001;
    background: white;
    border-radius: 24px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid #059669;
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.lang-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    min-width: 38px;
    line-height: 1;
    text-align: center;
}

.lang-btn:focus {
    outline: 2px solid #047857;
    outline-offset: 2px;
}

.lang-btn:hover {
    background: #047857;
    transform: scale(1.05);
}

.lang-btn.active {
    background: #047857;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    flex-shrink: 0;
    z-index: 1002;
}

.nav-logo h2 {
    color: #059669;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #059669;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1002;
    position: relative;
}

.hamburger:focus {
    outline: 2px solid #059669;
    outline-offset: 2px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f766e 0%, #059669 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 70vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 3rem;
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #059669;
    color: white;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #059669;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 3rem;
    max-width: 100%;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 8rem;
    opacity: 0.8;
}

.hero-graphic i {
    animation: bounce 2s ease-in-out infinite;
}

.hero-graphic i:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* About Us Section */
.about {
    padding: 120px 0 100px 0;
    background: white;
    margin-top: 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid transparent; /* prevents margin-collapsing with next section */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: #059669;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #059669;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.why-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.why-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Statistics Section - 2 rows with 3 components each */
.statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f766e 0%, #059669 100%);
    color: white;
}

/* Statistics subtitle (under the heading) */
.statistics .section-header p {
    color: #ffffff;
    opacity: 1;
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #34d399, #10b981);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #34d399;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 1;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.8;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.mission-content {
    text-align: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-statement {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.value-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #34d399;
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item p {
    opacity: 0.95;
    line-height: 1.6;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: #f8fafc;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.location-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.location-text p {
    color: #64748b;
    line-height: 1.6;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #059669;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.contact-details a {
    color: #059669;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #047857;
}

.whatsapp-contact {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.whatsapp-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.whatsapp-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #0d6b5f);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

.whatsapp-note {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-style: italic;
}


/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #34d399;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #34d399;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
        font-size: 14px;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Mobile Navigation Styles */
    .navbar {
        padding: 0.8rem 0;
        height: auto;
    }
    
    .nav-container {
        padding: 0 15px;
        max-width: 100%;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    /* Mobile menu toggle button */
    .hamburger {
        display: flex;
        order: 2;
        margin-left: 10px;
        margin-right: 10px;
        z-index: 1003;
        background: transparent;
        border: none;
        padding: 8px;
    }
    
    /* Language toggle positioning */
    .language-toggle {
        order: 3;
        position: relative;
        transform: scale(0.85);
        z-index: 1003;
        margin: 0;
    }
    
    .lang-btn {
        padding: 6px 8px;
        font-size: 0.75rem;
        min-width: 30px;
        font-weight: 600;
    }
    
    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100vw;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 2rem 0;
        z-index: 1002;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.2rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        animation: slideInMenu 0.4s ease-out forwards;
        animation-delay: calc(var(--i) * 0.1s);
    }
    
    .nav-menu li:nth-child(1) { --i: 1; }
    .nav-menu li:nth-child(2) { --i: 2; }
    .nav-menu li:nth-child(3) { --i: 3; }
    .nav-menu li:nth-child(4) { --i: 4; }
    .nav-menu li:nth-child(5) { --i: 5; }
    
    @keyframes slideInMenu {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        position: relative;
        color: #333;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(5, 150, 105, 0.1);
        color: #059669;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure no overlapping issues */
    .nav-menu {
        box-sizing: border-box;
    }
    
    .nav-menu li {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix z-index layering */
    .navbar {
        z-index: 1000;
    }
    
    .hamburger {
        z-index: 1003;
    }
    
    .language-toggle {
        z-index: 1003;
    }
    
    .nav-menu {
        z-index: 1002;
    }
    
    /* Ensure proper spacing between elements */
    .nav-container {
        gap: 10px;
    }
    
    /* Prevent text selection on hamburger */
    .hamburger {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero {
        padding-top: 90px;
        padding-bottom: 60px;
        min-height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        min-height: auto;
        padding: 1.5rem 0;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-content {
        padding: 0;
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-image {
        padding: 0;
        order: 2;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 15px;
        max-width: 100%;
        overflow-wrap: break-word;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 15px;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        overflow-wrap: break-word;
        opacity: 0.95;
    }
    
    .hero-graphic {
        font-size: 2.8rem;
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
        margin: 1.5rem 0;
        padding: 0 15px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 0 15px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        word-wrap: break-word;
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 25px;
    }
    
    .about {
        padding: 80px 0 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .services {
        padding: 80px 0 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .service-features {
        text-align: left;
    }
    
    .service-features li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .why-choose {
        padding: 80px 0 60px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .statistics {
        padding: 80px 0 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .mission {
        padding: 80px 0 60px 0;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .location {
        padding: 80px 0 60px 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact {
        padding: 80px 0 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whatsapp-contact {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .whatsapp-card {
        padding: 1.5rem;
    }
    
    .whatsapp-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .whatsapp-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .whatsapp-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .whatsapp-note {
        font-size: 0.85rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    
    .section-header {
        padding: 0 20px;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 1.5rem;
        overflow-wrap: break-word;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0;
        line-height: 1.6;
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        font-size: 13px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 12px;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    .nav-container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0.7rem 0;
    }
    
    /* Extra small screens (480px and below) */
    .nav-container {
        padding: 0 12px;
        height: 45px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .hamburger {
        padding: 6px;
        margin-left: 8px;
        margin-right: 8px;
        transform: scale(0.9);
    }
    
    .language-toggle {
        transform: scale(0.8);
        margin: 0;
    }
    
    .lang-btn {
        padding: 4px 6px;
        font-size: 0.7rem;
        min-width: 26px;
        font-weight: 600;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
        height: calc(100vh - 65px);
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    .hero-container {
        padding: 1rem 0;
        gap: 1.8rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 12px;
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 12px;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
        margin-bottom: 1.8rem;
        opacity: 0.95;
    }
    
    .hero-graphic {
        font-size: 2.2rem;
        gap: 1rem;
        margin: 1.2rem 0;
        padding: 0 12px;
    }
    
    .hero-buttons {
        padding: 0 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 240px;
        word-wrap: break-word;
        white-space: normal;
        overflow: visible;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        min-height: 46px;
        border-radius: 23px;
    }
    
    .section-header {
        padding: 0 12px;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        padding: 0;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .about {
        padding: 60px 0 50px 0;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .feature-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .services {
        padding: 60px 0 50px 0;
    }
    
    .service-card {
        padding: 1.8rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .why-choose {
        padding: 60px 0 50px 0;
    }
    
    .why-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .why-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .statistics {
        padding: 60px 0 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 1rem 0.8rem;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .stat-icon {
        font-size: 1.2rem;
        margin-top: 0.3rem;
    }
    
    .mission {
        padding: 60px 0 50px 0;
    }
    
    .mission-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-statement {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }
    
    .value-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .location {
        padding: 60px 0 50px 0;
    }
    
    .location-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .location-item h4 {
        font-size: 1.1rem;
    }
    
    .location-item p {
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 60px 0 50px 0;
    }
    
    .contact-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}


/* Enhanced button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced card hover effects */
.service-card,
.why-card,
.contact-item,
.location-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .why-card:hover,
    .contact-item:hover,
    .location-item:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .nav-link:hover {
        background: transparent;
    }
}


/* Accessibility and keyboard navigation */
.keyboard-navigation *:focus {
    outline: 3px solid #059669 !important;
    outline-offset: 2px !important;
}

.keyboard-navigation .btn:focus {
    outline: 3px solid #ffffff !important;
    outline-offset: 2px !important;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #059669;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .service-card,
    .why-card,
    .contact-item {
        border: 2px solid #333;
    }
}
