@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Manrope:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #545454;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

p {
    font-family: 'Inter', sans-serif;
}

/* Ensure all buttons use Inter font */
button, input, select, textarea {
    font-family: 'Inter', sans-serif;
}

/* Language Switcher - Removed from navigation, now in footer */

/* Mobile Language Switcher - Removed, now in footer */

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    color: #666;
}

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

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
}

.cookie-accept {
    background: #4F46E5;
    color: white;
}

.cookie-accept:hover {
    background: #00024C;
}

.cookie-decline {
    background: #f3f4f6;
    color: #666;
}

.cookie-decline:hover {
    background: #e5e7eb;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.527);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

.logo {
    width: 155px;
    height: 38px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    max-width: 600px;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #545454;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.4rem 0.5rem;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #4F46E5;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4F46E5;
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: 140px;
    justify-content: flex-end;
}

/* Ensure proper spacing and alignment */
.navbar .cta-button {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Logo link styling */
.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

@media (max-width: 500px) {
    .logo {
        width: 100px;
        height: 25px;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    border: 1px solid #e5e7eb;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

.dropdown-content a:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-content a:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dropdown.show .dropdown-content {
    display: block;
}

.cta-button {
    background: #4F46E5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
    text-decoration: none !important;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #00024C;
    text-decoration: none !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #545454;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #f3f4f6;
    color: #4F46E5;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-container {
        gap: 0.75rem;
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.25rem;
        max-width: 500px;
    }
    
    .nav-actions {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-actions {
        gap: 0.5rem;
        min-width: 100px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 500px) {
    .logo {
        width: 100px;
        height: 25px;
    }
    
    .nav-container {
        padding: 0 0.75rem;
        gap: 0.25rem;
    }
    
    .nav-actions {
        gap: 0.25rem;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 2rem;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #545454;
}

.mobile-menu-items {
    list-style: none;
}

.mobile-menu-items li {
    margin-bottom: 1rem;
}

.mobile-menu-items > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    text-decoration: none;
    color: #545454;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s;
}

.mobile-menu-items a:hover {
    color: #4F46E5;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 200px;
}

.mobile-dropdown-content a {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #e5e7eb !important;
    font-size: 0.9rem;
}

.mobile-dropdown-content a:last-child {
    border-bottom: none !important;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle {
    transform: rotate(180deg);
}

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

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 90vh;
    padding: 10px 20px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    bottom: 20px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), center/cover;
    border-radius: 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    height: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    max-width: 1000px;
    /* Ensure left alignment */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 1.5px 3px rgba(0,0,0,0.2);
}

.book-call-btn {
    background: white;
    color: #545454;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: static;
    margin: 2rem auto 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15), 0 1.5px 3px rgba(0,0,0,0.10);
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.book-call-btn:hover {
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: white;
    color: #545454;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #545454;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;

}

/* Client Logos */
.client-logos {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.logo-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.trusted-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trusted-badge h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4F46E5, #7C3AED);
    border: 2px solid white;
    margin-left: -8px;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #545454;
}

.features-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4F46E5, #7C3AED);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

 /* Products Section */
        .products {
            padding: 6rem 2rem;
            background: #f8f9fa;
        }

        .products-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .products h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #545454;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Ensure product cards maintain consistent width */
        .product-card {
            width: 100%;
            max-width: 350px;
            justify-self: center;
            background: transparent;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 16px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .featured-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: white;
            color: #545454;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .product-info {
            padding: 1.25rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            position: relative;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #545454;
            position: relative;
        }

        .product-name::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #4F46E5;
            transition: width 0.3s ease;
        }

        .product-card:hover .product-name::after {
            width: 100%;
        }

        .product-arrow {
            color: #666;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .product-card:hover .product-arrow {
            color: #4F46E5;
            transform: translateY(-50%) translateX(5px);
        }

/* Services Section */
.services {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    padding: 6rem 2rem;
    overflow: hidden;
}

.services h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.services-track {
    display: flex;
    gap: 2rem;
    animation: infiniteScroll 30s linear infinite;
}

.service-card {
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(79, 70, 229, 0.9));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-arrow {
    background: white;
    color: #4F46E5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.services-track:hover {
    animation-play-state: paused;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.contact-form h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #545454;
}

.contact-form p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #545454;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    background: #4F46E5;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #00024C;
}

/* Global Reach */
.global-reach {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.global-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.global-reach h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.global-reach-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.world-map {
    width: 100%;
    min-height: 400px;
    aspect-ratio: 3 / 1;
    margin-bottom: 3rem;
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {

    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card.featured {
    background: #4F46E5;
    color: white;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F46E5;
}

.location-card.featured .location-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #545454;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: slide 20s infinite linear;
}

.testimonial-card {
    min-width: 400px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4F46E5, #7C3AED);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-text {
    color: #545454;
    line-height: 1.6;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.star {
    color: #fbbf24;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #545454;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #545454;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: #4F46E5;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Blog Section */
.blog {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #545454;
}

.blog-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #545454;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #00024C;
}

/* CTA Section */
.cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #4F46E5;
    padding: 14px 28px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s;
    font-family: 'Inter', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
}

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

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #545454;
}

.footer-section p,
.footer-section a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4F46E5;
}

/* Footer bottom section - responsive */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    margin-bottom: 1rem;
    gap: 2rem;
}

.footer-copyright-section {
    text-align: right;
    color: #666;
    flex-shrink: 0;
}

.footer-copyright-section p {
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    color: #4F46E5;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-info i {
    color: #4F46E5;
    width: 16px;
}

/* Phone number styling */
.phone-info {
    margin-bottom: 1.5rem;
}

.phone-info .icon {
    color: #4F46E5;
    font-size: 1.1rem;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: #545454;
}

.phone-number a {
    color: #545454;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: #4F46E5;
    text-decoration: none;
}

/* Override italic styling for address element in footer */
.contact-address {
    font-style: normal;
}

.contact-address .contact-info {
    font-style: normal;
}

.contact-address .contact-info span {
    font-style: normal;
}

.contact-address .contact-info a {
    font-style: normal;
}

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

.footer-language-switcher {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-language-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    color: #495057;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-language-item:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #212529;
    text-decoration: none;
}

.footer-language-item.active {
    background: #4F46E5;
    border-color: #4F46E5;
    color: white;
}

.footer-language-item.active:hover {
    background: #4338ca;
    border-color: #4338ca;
    color: white;
}

.footer-language-item i {
    font-size: 0.9rem;
}

.footer-bottom-language {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.footer-lang-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-lang-link:hover {
    color: #4338ca;
    text-decoration: none;
}

.footer-lang-link.active {
    color: #545454;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .footer-language-switcher {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-language-item {
        justify-content: center;
    }
    
    /* Footer bottom responsive */
    .footer-bottom-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-copyright-section {
        text-align: center;
        order: 2;
    }
    
    .footer-language-switcher {
        order: 1;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 17px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        max-width: 600px;
    }

    .hero-content {
        padding: 0 20px !important;
    }

    .hero-background {
        left: 10px;
        right: 10px;
        top: 10px;
        bottom: 10px;
        border-radius: 12px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .features-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Products grid responsive */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        max-width: 100%;
        justify-self: stretch;
    }
    
    /* Tablet responsive */
    @media (min-width: 769px) and (max-width: 1024px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .product-card {
            max-width: 400px;
        }
    }

    .feature-items {
        grid-template-columns: 1fr;
    }

    .location-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 300px;
    }

    /* Speed up testimonials scroll on mobile */
    .testimonials-track {
        animation-duration: 10s;
    }

    .service-card {
        min-width: 250px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    /* Hide desktop language switcher on mobile and tablet */
    /* Language switcher removed from navigation */
    .desktop-only-cta {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .contact-container {
        align-items: stretch;
    }
    .contact-image {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .contact-image img {
        height: 80%;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }
}

/* Professional Legal Page Styles */
.legal-header {
    background: #4F46E5;
    color: white;
    padding: 100px 0 40px;
}

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

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Manrope', sans-serif;
    color: white;
}

.legal-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-content {
    background: #f9fafb;
    min-height: 100vh;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.table-of-contents {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table-of-contents h3 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4F46E5;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s;
    display: block;
    padding: 0.25rem 0;
}

.table-of-contents a:hover {
    color: #4F46E5;
    padding-left: 0.5rem;
}

.legal-main {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.legal-section {
    padding: 2.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Manrope', sans-serif;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4F46E5;
}

.legal-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul, .legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li, .legal-section ol li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section ul li::marker {
    color: #4F46E5;
    font-weight: bold;
}

.legal-section ol li::marker {
    color: #4F46E5;
    font-weight: 600;
}

.warranty-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.warranty-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1.5rem;
}

.warranty-item h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.warranty-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.contact-item i {
    color: #4F46E5;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    color: #1f2937;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.legal-footer {
    background: #1f2937;
    color: white;
    padding: 2rem;
    text-align: center;
}

.legal-footer-content p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.legal-footer-content p:last-child {
    margin-bottom: 0;
    opacity: 0.7;
    font-style: italic;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-sidebar {
        position: static;
        order: 2;
    }
    
    .legal-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .legal-header {
        padding: 80px 0 30px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-container {
        padding: 20px 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .warranty-details,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .table-of-contents {
        position: static;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.75rem;
    }
    
    .legal-section {
        padding: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}
