/* Reset i zmienne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #60a5fa;
    --secondary-color: #3b82f6;
    --accent-color: #4ade80;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0f172a 100%);
    --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    --gradient-2: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --gradient-3: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #1e40af 0%, #4ade80 100%);
    --background: linear-gradient(145deg, #ffffff 0%, #f8fafc 60%, #e0f2fe 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(30, 58, 138, 0.15);
    --shadow-lg: 0 8px 32px rgba(30, 58, 138, 0.2);
    --shadow-glow: 0 0 25px rgba(96, 165, 250, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.3);
    border-bottom: 2px solid rgba(96, 165, 250, 0.2);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 1);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4);
}

.navbar .container {
    width: 90vw;
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.3);
    padding: 0 0.5rem;
    user-select: none;
    pointer-events: none;
}

.nav-links a.active {
    color: #4ade80;
}

.nav-links a:hover {
    color: #4ade80;
}

.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: transparent;
    color: var(--white);
    border: none;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.75rem;
}

.lang-btn:hover {
    color: #4ade80;
}

.lang-btn.active {
    background: #4ade80;
    color: #0f172a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding-top: 70px;
}

/* Stats Cards in About Section */
.stats-cards-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
}

.stat-card-about {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card-about:hover {
    background: #ffffff;
    border-color: #4ade80;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.15);
}

.stat-number-about {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-about {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    line-height: 1.3;
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: var(--text-dark);
}

.brands .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brands .section-title {
    color: var(--text-dark);
}

.brands .section-subtitle {
    color: var(--text-light);
}

.brands-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid .brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.brand-card {
    background: transparent;
    border: none;
    padding: 1rem;
    min-width: 140px;
    max-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.brand-card img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.08);
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: 1px;
}



/* Hero Section - Split Screen Container */
.hero-split-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2rem;
    padding: 1rem 2rem;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.hero-left {
    padding: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-right {
    padding: 1rem;
}

.hero-logo-img {
    max-width: 364px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo-split {
    width: 280px;
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: fadeInUp 0.8s ease-out;
}

/* Logo Dual Layer - Hero */
.logo-dual-hero {
    position: relative;
    width: 280px;
    height: 140px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.dual-back-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #2b3c55 0%, #141b26 70%);
    border-radius: 70px;
    border: 4px solid #4ade80;
    transform: rotate(-5deg);
}

.dual-front-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(3deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dual-onup-hero {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2b3c55;
    letter-spacing: -2px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4b5563;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: radial-gradient(circle at 30% 30%, #2b3c55 0%, #141b26 70%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(43, 60, 85, 0.4);
    animation: fadeInUp 1s ease 0.8s both;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(43, 60, 85, 0.3);
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(43, 60, 85, 0.6);
    color: white;
    border-color: rgba(43, 60, 85, 0.5);
}

.hero-right {
    position: relative;
    height: 500px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, #2b3c55 0%, #141b26 70%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    font-size: 2rem;
    color: #4ade80;
}

.floating-card span {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
    white-space: pre-line;
    max-width: 120px;
}

.card-1 {
    top: -5%;
    left: 25%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 15%;
    right: 12%;
    animation: float 6s ease-in-out infinite 1.5s;
}

.card-3 {
    top: 30%;
    left: 8%;
    animation: float 6s ease-in-out infinite 3s;
}

.card-4 {
    bottom: 10%;
    left: 15%;
    animation: float 6s ease-in-out infinite 4.5s;
}

.card-5 {
    bottom: 25%;
    right: 15%;
    animation: float 6s ease-in-out infinite 2s;
}

.stats-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, #2b3c55 0%, #141b26 70%);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(43, 60, 85, 0.5);
    animation: pulse 3s ease-in-out infinite;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4ade80;
}

.badge-text {
    font-size: 0.75rem;
    color: white;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Stats Cards Hero */
.stats-cards-hero {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 1rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card-hero {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 60, 85, 0.1);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(43, 60, 85, 0.2);
    border-color: rgba(74, 222, 128, 0.3);
}

.stat-number-hero {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2b3c55 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-hero {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.4;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDot {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* About Section */
.about,
.about-zigzag {
    padding: 100px 0;
    background: var(--background);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about .container,
.about-zigzag .container {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.about-card:hover::before {
    opacity: 0.1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.about-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Zigzag Layout */
.about-zigzag {
    padding: 100px 0;
    background: var(--background);
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.zigzag-reverse {
    direction: rtl;
}

.zigzag-reverse > * {
    direction: ltr;
}

.zigzag-content {
    padding: 0.5rem;
}

.zigzag-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.zigzag-icon i {
    font-size: 1.1rem;
    color: white;
}

.zigzag-content h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.zigzag-content p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.zigzag-visual {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zigzag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    transition: all 0.4s ease;
}

.zigzag-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.visual-box {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    position: relative;
    overflow: hidden;
}

.visual-box::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.visual-box i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--gradient-accent);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: none;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem 2rem;
    margin-top: 3rem;
    align-items: center;
}

.brand-card {
    background: transparent;
    border: none;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 100px;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card img {
    width: 140px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    opacity: 0.6;
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services .container {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: radial-gradient(circle at 30% 30%, #2b3c55 0%, #141b26 70%);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    display: none;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.service-card > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 100px 0 0 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    background: var(--dark-bg);
    padding: 0 8px;
    color: var(--primary-color);
}

.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 0;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    min-height: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-2);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
    display: block;
}

/* Footer integrated into contact section */
.footer-integrated {
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.footer-integrated p {
    margin: 0;
    font-size: 0.875rem;
}

/* Old footer - keep for compatibility but hide if exists */
.footer {
    display: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
        max-width: 100%;
        padding: 0 1rem;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        max-width: 100vw;
        padding: 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
        box-sizing: border-box;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hero Split Screen - Mobile */
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        height: 350px;
    }

    .floating-card {
        padding: 1rem 1.2rem;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card span {
        font-size: 0.7rem;
    }

    .stats-badge {
        width: 110px;
        height: 110px;
    }

    .badge-number {
        font-size: 1.6rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    /* Stats Cards Hero - Tablet */
    .stats-cards-hero {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-number-hero {
        font-size: 2.5rem;
    }

    .stat-label-hero {
        font-size: 0.85rem;
    }

    /* Brands Grid - Tablet */
    .brands-grid {
        max-width: 100%;
        padding: 0 1rem;
    }

    .brands-grid .brand-row {
        gap: 2rem;
    }

    .brand-card {
        min-width: 100px;
        max-width: 140px;
        height: 80px;
    }

    .brand-card img {
        max-height: 50px;
    }

    /* Zigzag - Mobile */
    .zigzag-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 60px;
        text-align: center;
    }

    .zigzag-reverse {
        direction: ltr;
    }

    .zigzag-visual {
        height: 300px;
    }

    .visual-box i {
        font-size: 5rem;
    }

    .zigzag-content {
        text-align: center;
    }

    .zigzag-content h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-logo-img {
        max-width: 200px;
    }

    .logo-dual-hero {
        width: 200px;
        height: 100px;
    }

    .dual-onup-hero {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .info-item {
        text-align: center;
        justify-content: center;
    }

    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-cards-about {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin: 1.5rem 0;
    }

    .stat-card-about {
        padding: 1.2rem 0.8rem;
    }

    .stat-number-about {
        font-size: 2rem;
    }

    .stat-label-about {
        font-size: 0.85rem;
    }

    .lang-switcher {
        order: -1;
    }

    /* Services Cards - Tablet */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .service-card {
        text-align: center;
    }
}

@media (max-width: 425px) {
    /* Navbar fixes */
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar .container {
        padding: 0 0.75rem;
    }

    .hamburger {
        margin-right: 0;
    }

    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-logo-img {
        max-width: 140px;
    }

    .logo-dual-hero {
        width: 160px;
        height: 80px;
    }

    .dual-onup-hero {
        font-size: 2rem;
    }

    .hero-right {
        height: 240px;
    }

    .stats-badge {
        width: 70px;
        height: 70px;
    }

    .badge-number {
        font-size: 1rem;
    }

    .badge-text {
        font-size: 0.45rem;
    }

    .floating-card {
        padding: 0.4rem 0.6rem;
        font-size: 0.55rem;
        gap: 0.4rem;
    }

    .floating-card i {
        font-size: 1rem;
    }

    .floating-card span {
        font-size: 0.55rem;
        max-width: 90px;
    }

    /* Adjust floating card positions - closer to center, spread vertically */
    .card-1 {
        top: 2%;
        left: 25%;
    }

    .card-2 {
        top: 20%;
        right: 20%;
    }

    .card-3 {
        top: 90%;
        left: 15%;
    }

    .card-4 {
        bottom: 25%;
        left: 18%;
    }

    .card-5 {
        bottom: 8%;
        right: 18%;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Stats Cards Hero - Smaller Mobile */
    .stats-cards-hero {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 1.5rem 0.25rem 2rem 0.25rem;
    }

    .stat-card-hero {
        padding: 0.8rem 0.3rem;
        text-align: center;
    }

    .stat-number-hero {
        font-size: 1.5rem;
    }

    .stat-label-hero {
        font-size: 0.6rem;
        line-height: 1.1;
    }

    /* Stats Cards About - Smaller Mobile */
    .stats-cards-about {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .stat-card-about {
        padding: 0.8rem 0.3rem;
    }

    .stat-number-about {
        font-size: 1.5rem;
    }

    .stat-label-about {
        font-size: 0.6rem;
        line-height: 1.1;
    }

    /* Brands Grid - Mobile */
    .brands-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .brands-grid .brand-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .brand-card {
        min-width: auto;
        max-width: none;
        width: 100%;
        height: 70px;
        padding: 0.5rem;
    }

    .brand-card img {
        max-height: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .zigzag-icon {
        width: 60px;
        height: 60px;
    }

    .zigzag-icon i {
        font-size: 1.8rem;
    }

    .zigzag-content {
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        text-align: left;
    }

    .contact-info {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }
}
