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

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.6s ease-out;
}

#loading-screen.fade-out {
    opacity: 0;
    transform: translateX(-100%);
}

.loading-logo {
    animation: logoAnimation 1.2s ease-in-out;
}

.loading-logo img {
    width: 200px;
    height: auto;
    max-width: 70vw;
    object-fit: contain;
    animation: logoScale 1.2s ease-in-out;
}

@keyframes logoAnimation {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoScale {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hide main content initially */
body.loading .header,
body.loading .hero,
body.loading .brands-section,
body.loading .solution-section,
body.loading .tape-solutions,
body.loading .industries,
body.loading .prototyping,
body.loading .contact,
body.loading .footer {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

body.loaded .header,
body.loaded .hero,
body.loaded .brands-section,
body.loaded .solution-section,
body.loaded .tape-solutions,
body.loaded .industries,
body.loaded .prototyping,
body.loaded .contact,
body.loaded .footer {
    opacity: 1;
}

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

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

/* Header Styles */
.header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

/* Removed header-top - now integrated into navbar */

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Scrolled header language selector */
.header.scrolled .language-selector {
    color: #2563eb;
    text-shadow: none;
    background: rgba(37, 99, 235, 0.1);
}

.header.scrolled .language-selector:hover {
    background: rgba(37, 99, 235, 0.15);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.search-cart {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Social Media */
.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Scrolled header social media */
.header.scrolled .social-link {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    text-shadow: none;
}

.header.scrolled .social-link:hover {
    background: rgba(37, 99, 235, 0.2);
    color: #1d4ed8;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 8px 35px 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    width: 200px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Scrolled header search input */
.header.scrolled .search-box input {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    color: #333;
}

.header.scrolled .search-box input::placeholder {
    color: rgba(37, 99, 235, 0.7);
}

.header.scrolled .search-box input:focus {
    background: rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

/* Scrolled header search icon */
.header.scrolled .search-box i {
    color: #2563eb;
    text-shadow: none;
}

.cart {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #2563eb;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
    height: 80px;
    overflow: visible;
    gap: 60px;
    width: 100%;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-grow: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Scrolled header nav links */
.header.scrolled .nav-link {
    color: #2563eb;
    text-shadow: none;
}

.header.scrolled .nav-link:hover {
    color: #1d4ed8;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    margin-bottom: 20px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-menu ul {
    list-style: none;
}

.dropdown-menu li {
    margin-bottom: 8px;
}

.dropdown-menu a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
    z-index: 10000;
    position: relative;
    padding: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
}

/* Scrolled header mobile toggle */
.header.scrolled .mobile-menu-toggle {
    color: #2563eb;
    text-shadow: none;
    background: rgba(37, 99, 235, 0.1);
}

.header.scrolled .mobile-menu-toggle:hover {
    background: rgba(37, 99, 235, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.75);
    backdrop-filter: blur(1px);
    z-index: 1;
}

/* Mobile video optimization */
@media (max-width: 768px) {
    .hero-video video {
        object-position: center center;
        min-height: 100%;
    }
    
    .video-overlay {
        background: rgba(30, 58, 138, 0.8);
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        margin-top: 0;
    }
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 45px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

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

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

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

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 120px;
    background: white;
    border: none;
    border-right: 1px solid #e5e7eb;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: default;
    flex: 1;
    min-width: 200px;
    overflow: hidden;
    padding: 15px;
}

.brand-item:last-child {
    border-right: none;
}

.brand-item:hover {
    background: #f8f9fa;
    transform: none;
    box-shadow: none;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(30%);
    transition: all 0.3s ease;
    border-radius: 0;
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Companies Section */
.companies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.companies-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.companies-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.company-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.company-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.company-logo {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 10px;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-info {
    flex: 1;
    text-align: left;
}

.company-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.company-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: #1e3a8a;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-text {
    text-align: left;
}

.solution-text h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .solution-text h2 {
        white-space: normal;
        font-size: 2rem;
        line-height: 1.3;
        text-align: center;
    }
}

.solution-subtitle {
    font-size: 1.3rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.solution-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left;
}

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

.solution-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .solution-image img {
        max-width: 100%;
        margin: 0 auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
}

.solution-image img:hover {
    transform: scale(1.02);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .solution-text {
        text-align: center;
    }
    
    .solution-text h2 {
        font-size: 2rem;
    }
    
    .solution-description {
        text-align: center;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Tape Solutions Section */
.tape-solutions {
    padding: 80px 0;
    background: white;
}

.tape-solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.solution-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-item:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-5px);
}

.solution-icon {
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 2.5rem;
    color: #2563eb;
    transition: color 0.3s ease;
}

.solution-video {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.solution-item:hover .solution-video {
    border-color: white;
    transform: scale(1.05);
}

.solution-item:hover .solution-icon i {
    color: white;
}

.solution-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
}


/* Industries Section */
.industries {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
}

.industries-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.industries-text {
    text-align: left;
}

.industries-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    white-space: nowrap;
}

.industries-text .section-subtitle {
    font-size: 1.3rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 30px;
}

.industries-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left;
}

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

.industries-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.industries-image img:hover {
    transform: scale(1.02);
}

/* Mobile responsive for industries */
@media (max-width: 768px) {
    .industries-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .industries-text {
    text-align: center;
}

    .industries-text h2 {
        font-size: 2rem;
}

.industries-description {
        text-align: center;
    }
}

/* Prototyping Section */
.prototyping {
    padding: 80px 0;
    background: #f8f9fa;
}

.prototyping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.prototyping-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.prototyping-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2563eb;
}

.prototyping-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.prototyping-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1e3a8a;
}

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

.contact .section-subtitle {
    font-size: 1.3rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.contact-persons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-person {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.person-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.person-title {
    font-size: 1rem;
    color: #60a5fa;
    font-weight: 500;
    margin-bottom: 5px;
}

.person-credentials {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.person-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.person-contact i {
    color: #60a5fa;
    width: 16px;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-feature i {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 15px;
}

.contact-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1e3a8a;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.method-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-details .contact-number,
.contact-details .contact-email,
.contact-details .contact-address {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.contact-details .contact-hours {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modern-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.modern-contact-form .form-group {
    margin-bottom: 30px;
}

.modern-contact-form label {
    display: block;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.modern-contact-form input,
.modern-contact-form textarea,
.modern-contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    color: #333;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus,
.modern-contact-form select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form select {
    cursor: pointer;
}

.modern-contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.modern-contact-form .checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    font-weight: 400;
}

.modern-contact-form .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #1e3a8a;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-header i {
    font-size: 2rem;
    color: #60a5fa;
}

.location-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.location-description {
    font-size: 1.2rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 15px;
}

.location-info > p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.location-details {
    margin-bottom: 40px;
}

.location-item {
    margin-bottom: 25px;
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 8px;
}

.location-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.quick-contact {
    margin-bottom: 40px;
}

.quick-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.quick-btn i {
    font-size: 1.1rem;
    color: #60a5fa;
}

.working-hours h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.working-hours p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.location-map {
    border-radius: 12px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #3b82f6;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: white;
    color: #1e3a8a;
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.company-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6b7280;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #9ca3af;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
}

.statistics-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #1e3a8a;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-photo i {
    font-size: 2.5rem;
    color: #6b7280;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.member-title {
    font-size: 1rem;
    color: #60a5fa;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: #1e3a8a;
    color: white;
}

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.cert-icon i {
    font-size: 1.5rem;
    color: #60a5fa;
}

.cert-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.cert-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 80px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-image {
        max-height: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .story-text h2,
    .values-section h2,
    .statistics-section h2,
    .team-section h2,
    .certifications-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .company-image {
        max-height: 250px;
    }
    
    .image-placeholder {
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 80px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modern-contact-form {
        padding: 30px;
    }
    
    .modern-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map {
        height: 300px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .quick-btn {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-methods h2,
    .form-header h2,
    .faq-section h2,
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .modern-contact-form {
        padding: 20px;
    }
    
    .location-map {
        height: 250px;
    }
}

/* WhatsApp Support Button */
.whatsapp-support {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #333;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(10px);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 25px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 15px;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.footer-logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    padding-left: 0;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    color: #60a5fa;
    text-align: left;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-section a h4 {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-section a:hover h4 {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #374151;
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}


/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        order: 3;
        background: rgba(30, 58, 138, 0.1) !important;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(30, 58, 138, 0.2);
        border-radius: 8px;
        padding: 10px;
        transition: all 0.3s ease;
        color: #1e3a8a !important;
        font-size: 20px;
        width: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(30, 58, 138, 0.15) !important;
        transform: scale(1.05);
        color: #2563eb !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        padding: 25px 20px;
        z-index: 9999;
        gap: 0;
        border-radius: 0 0 16px 16px;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu.active .nav-link {
        color: #000000 !important;
        text-shadow: none !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        padding: 15px 10px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        border-radius: 8px !important;
        margin: 2px 0 !important;
        display: block !important;
    }
    
    .nav-menu.active .nav-link:hover {
        color: #333333 !important;
        background: rgba(0, 0, 0, 0.05) !important;
        border-bottom-color: #000000 !important;
    }
    
    .nav-menu.active .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
/* Çakışan CSS kaldırıldı - ana mobil stiller kullanılacak */
    
    .navbar {
        height: 70px;
        padding: 10px 0;
        gap: 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Body padding for fixed header */
    body {
        padding-top: 70px;
    }
    
    .logo img {
        height: 50px;
        max-width: 160px;
    }
    
    .navbar-right {
        gap: 12px;
    }
    
    .social-media {
        gap: 8px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .search-box {
        display: none;
    }
    
    .hero {
        height: 85vh;
        min-height: 550px;
        padding-top: 70px;
    }
    
    .hero-content {
        margin-top: 0;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 18px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 95%;
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 200px;
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .brands-section {
        padding: 30px 0;
    }
    
    .brands-grid {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: flex-start;
        overflow-x: auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        border-radius: 8px;
        margin: 0 10px;
    }
    
    .brands-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .brands-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .brands-grid::-webkit-scrollbar-thumb {
        background: #2563eb;
        border-radius: 2px;
    }
    
    .brand-item {
        width: 140px;
        height: 80px;
        padding: 12px;
        border-right: 1px solid #e5e7eb;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .brand-item:hover {
        background: #f8f9fa;
        transform: scale(1.02);
    }
    
    .tape-solutions {
        padding: 60px 0;
    }
    
    .tape-solutions h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    
    .solution-item {
        padding: 20px 15px;
        text-align: center;
    }
    
    .solution-video {
        width: 120px;
        height: 120px;
    }
    
    .solution-item h3 {
        font-size: 0.95rem;
        margin-top: 12px;
        line-height: 1.3;
    }
    
    .prototyping {
        padding: 60px 0;
    }
    
    .prototyping-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .prototyping-text h2 {
        font-size: 2.2rem;
    }
    
    .prototyping-text h3 {
        font-size: 1.3rem;
    }
    
    .prototyping-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .contact .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .contact-persons {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }
    
    .contact-person {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .footer {
        padding: 20px 0 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .footer-logo img {
        height: 40px;
        max-width: 140px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
        padding-left: 0;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 12px;
        font-size: 13px;
    }
    
    .language-selector {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }
    
    /* Section improvements */
    .solution-section,
    .industries {
        padding: 60px 0;
    }
    
    .solution-text h2,
    .industries-text h2 {
        font-size: 2.2rem;
        white-space: normal;
    }
    
    .solution-subtitle,
    .industries-text .section-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .solution-description,
    .industries-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    /* WhatsApp responsive */
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        font-size: 13px;
        padding: 6px 10px;
        left: 65px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        height: 75vh;
        min-height: 450px;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 98%;
        line-height: 1.4;
    }
    
    .hero-cta .btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .brands-section {
        padding: 25px 0;
    }
    
    .brands-grid {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: flex-start;
        overflow-x: auto;
        border-radius: 6px;
        margin: 0 10px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .brand-item {
        width: 120px;
        height: 65px;
        padding: 10px;
        border-right: 1px solid #e5e7eb;
        flex-shrink: 0;
    }
    
    .brand-item img {
        max-width: 90%;
        max-height: 90%;
    }
    
    /* WhatsApp mobile */
    .whatsapp-support {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        font-size: 12px;
        padding: 5px 8px;
        left: 60px;
    }
    
    .footer {
        padding: 18px 0 10px;
    }
    
    .footer-content {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .footer-logo img {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-links {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 10px;
        font-size: 12px;
    }
    
    .navbar {
        height: 60px;
        padding: 8px 0;
        gap: 10px;
    }
    
    .logo img {
        height: 45px;
        max-width: 140px;
    }
    
    .navbar-right {
        gap: 8px;
    }
    
    .social-media {
        gap: 8px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .search-box input {
        width: 120px;
        font-size: 12px;
        padding: 6px 25px 6px 10px;
    }
    
    .language-selector {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    .language-selector span {
        display: none;
    }
    
    .brands-content h2 {
        font-size: 1.5rem;
    }
    
    .tape-solutions {
        padding: 50px 0;
    }
    
    .tape-solutions h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 35px;
        padding: 0 5px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 5px;
    }
    
    .solution-item {
        padding: 15px 10px;
    }
    
    .solution-video {
        width: 100px;
        height: 100px;
    }
    
    .solution-item h3 {
        font-size: 0.85rem;
        margin-top: 10px;
        line-height: 1.2;
    }
    
    .solution-content h2,
    .product-filter h2,
    .industries h2,
    .prototyping-text h2,
    .news h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .filter-container {
        padding: 20px;
    }
    
    .contact {
        padding: 50px 0;
    }
    
    .contact h2 {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }
    
    .contact .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .contact-persons {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-person {
        padding: 18px 15px;
    }
    
    .person-info h3 {
        font-size: 1.1rem;
    }
    
    .person-contact p {
        font-size: 13px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    
    /* Section improvements for small screens */
    .solution-section,
    .industries {
        padding: 50px 0;
    }
    
    .solution-text h2,
    .industries-text h2 {
        font-size: 1.9rem;
        white-space: normal;
    }
    
    .prototyping {
        padding: 50px 0;
    }
    
    .prototyping-text h2 {
        font-size: 1.9rem;
    }
    
    .prototyping-text h3 {
        font-size: 1.2rem;
    }
    
    .prototyping-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .company-info {
        text-align: center;
    }
    }
}
