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

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

body {
    font-family: 'Montserrat';
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header */
header {
    padding: 50px 0;
    text-align: center;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.logo {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 0;
    color: #1a1a1a;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-svg {
    height: 100px;
    width: auto;
    max-width: 100%;
    margin: 0;
}

.tagline {
    font-size: 1rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

.header-divider {
    width: 80px;
    height: 1px;
    background-color: #ccc;
    margin: 20px auto;
}

/* Hero section */
.hero {
    padding-bottom: 50px;
    text-align: center;
    background-color: #FFFFFF;
    margin-top: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #1A1A1A;
    margin-bottom: 50px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1rem;
    color: #888;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1rem;
    color: #888;
    font-weight: 300;

}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Stats section */
.stats {
    padding: 80px 0;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    gap: 120px;
    text-align: center;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.border-line {
    height: 1px;
    background-color: #E8E8E8;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 0;
    flex: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: #1A1A1A;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
}

/* Contact section */
.contact {
    padding: 50px 0;
    text-align: center;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.contact h2 {
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    color: #555;
   
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item:hover {
    color: #1A1A1A;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    background-color: #FFFFFF;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-content {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.company-info {
    margin-bottom: 20px;
}

.locations {
    font-weight: 400;
    color: #555;
}

/* Larger bullet points */
.bullet {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #888 !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.footer-divider {
    width:40%;
    height: 1px;
    background-color: #ccc;
    margin: 20px auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: 400;
    color: #555;
    margin-top: 10px;
}

.contact-details span {
    font-size: 0.9rem;
}

.contact-details a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Contact form styles */
.contact-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 45px;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 50px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border-bottom: 1px solid #E8E8E8;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #FFFFFF;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1A1A1A;
}

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

.btn {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    width: 400px;
    max-width: 100%;
    box-sizing: border-box;

 
}

.btn:hover {
    background-color: #333;
}

/* Language switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.language-switcher a {
    color: #555;
    text-decoration: none;
    margin: 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: #1A1A1A;
    font-weight: 500;
}

/* Responsive design */
/* Desktop: 1024px and up */
@media (min-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 50px 0;
    }

    .logo {
        font-size: 36px;
        letter-spacing: 8px;
        margin-bottom: 0;
    }
    
    .logo-svg {
        height: 125px;
    }
    
    .nav-logo-svg {
        height: 30px;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .header-divider {
        width: 80px;
        margin: 20px auto;
    }

    .hero {
        padding-bottom: 50px;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .contact h2 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        font-size: 1.0rem;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .language-options {
        gap: 20px;
    }
}

/* Tablet: 821px to 1023px */
@media (max-width: 1023px) and (min-width: 821px) {
    .container {
        padding: 0 30px;
    }
    
    header {
        padding: 50px 0;
    }
    
    .logo {
        font-size: 32px;
        letter-spacing: 6px;
        margin-bottom: 0;
    }
    
    .logo-svg {
        height: 90px;
    }
    
    .nav-logo-svg {
        height: 28px;
    }
    
    .tagline {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .hero {
        padding-bottom: 50px;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        gap: 80px;
        flex-direction: row;
    }
    
    .contact h2 {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 40px;
        max-width: 500px;
    }
    
    .nav-container {
        gap: 60px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .contact-details {
        gap: 30px;
    }
}

/* Mobile: 820px and below */
@media (max-width: 820px) {
    .container {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 26px;
        letter-spacing: 3px;
        margin-bottom: 0;
    }
    
    .logo-svg {
        height: 70px;
    }
    
    .nav-logo-svg {
        height: 22px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .contact h2 {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .language-options {
        display: flex;
        gap: 15px;
        justify-content: flex-end !important;
        align-items: center;
        width: auto;
        margin: 0;
        flex-shrink: 0;
    }
    
    .language-options a {
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        text-align: center;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .page-nav {
        padding: 12px 0;
    }
    
    .nav-logo {
        font-size: 1rem;
        letter-spacing: 1.5px;
        display: flex;
        text-align: left;
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .nav-logo-svg {
        height: 24px !important;
    }
    
    /* Show mobile menu, hide desktop nav */
    .mobile-menu-btn {
        display: flex !important;
        flex-shrink: 0;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .nav-container {
        justify-content: space-between !important;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .language-switcher a {
        font-size: 0.8rem;
        padding: 4px 6px;
    }
    
    .contact-form {
        padding: 40px;
        margin: 0 10px;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 50px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        min-height: 44px; /* Minimum touch target size */
        border-radius: 4px;
    }
    
    .btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
    
    header {
        padding: 50px 0;
    }
    
    .header-divider {
        width: 60px;
        margin: 12px auto;
    }
    
    .tagline {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .hero {
        padding-bottom: 50px;
        margin-top: 0;
    }
    
    footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .company-info {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
}

/* Small mobile: 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 0;
    }
    
    .logo-svg {
        height: 60px;
    }
    
    .nav-logo-svg {
        height: 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-content {
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .contact h2 {
        font-size: 0.95rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 15px;
        margin: 0 5px;
    }
    
    .form-group {
        margin-bottom: 50px;
    }
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
    
    .btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Show mobile menu, hide desktop nav */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        text-align: center;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .nav-logo {
        font-size: 0.9rem;
        letter-spacing: 1px;
        display: flex;
        text-align: left;
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .nav-logo-svg {
        height: 40px !important;
    }
    
    .page-nav {
        padding: 10px 0;
    }
    
    .language-switcher {
        top: 8px;
        right: 8px;
        gap: 5px;
    }
    
    .language-switcher a {
        font-size: 0.75rem;
        padding: 3px 5px;
    }
    
    .language-options {
        display: flex;
        gap: 12px;
        justify-content: flex-end !important;
        align-items: center;
        width: auto;
        margin: 0;
        flex-shrink: 0;
    }
    
    .language-options a {
        padding: 5px 8px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .contact-details {
        gap: 10px;
    }
    
    .contact-details a {
        font-size: 0.85rem;
    }
    
    .company-info {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    header {
        padding: 50px 0;
    }
    
    .header-divider {
        width: 45px;
        margin: 10px auto;
    }
    
    .tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .hero {
        padding-bottom: 25px;
        margin-top: 0;
    }
    
    footer {
        padding: 30px 0 20px;
    }
}

/* Animation effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page navigation */
.page-nav {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E8E8E8;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: 100%;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1A1A1A;
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.nav-logo-svg {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1A1A1A;
    font-weight: 500;
}


.language-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.language-options a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.language-options a:hover,
.language-options a.active {
    color: #1A1A1A;
    font-weight: 500;
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #1A1A1A;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1002;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-content {
    padding: 60px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #1A1A1A;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.sidebar-links a {
    color: #555;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding-top: 10px 0;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    color: #1A1A1A;
    font-weight: 500;
}

.sidebar-languages {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid #E8E8E8;
}

.sidebar-languages a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.sidebar-languages a:hover,
.sidebar-languages a.active {
    color: #1A1A1A;
    font-weight: 500;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.stats {
    padding: 50px 0;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

