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

/* Mobile Visibility Helpers */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

:root {
    --primary-yellow: #f59e0b;
    --dark-yellow: #d97706;
    --light-yellow: #fbbf24;
    --bright-yellow: #fcd34d;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --overlay-dark: rgba(245, 158, 11, 0.85);
    --primary-blue: #136aaf;
}

/* --- Elite Unified Header Synchronization --- */
.header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 1000 !important;
    background-color: #1f2937 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.navbar {
    padding: 0 !important;
    width: 100% !important;
}

.header .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 15px 40px !important;
    gap: 20px !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    justify-content: flex-start !important;
    min-width: 150px !important;
}

.nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    gap: 35px !important;
    margin: 0 20px !important;
    padding: 0 !important;
}

.nav-link {
    white-space: nowrap !important;
    display: block !important;
}

.nav-utils {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
    gap: 20px !important;
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 12px 20px !important;
    }
}

/* --- Mobil DÃ¼zenlemeler (Max GeniÅŸlik: 768px) --- */
/* --- Mobile Menu Overlay System (New) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    left: -100%;
    /* Slide in from left */
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 2;
    display: flex;
    flex-direction: column;
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    /* Ease-out-expo for premium feel */
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    left: 0;
}

/* Header inside Mobile Menu */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-logo {
    height: 40px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Body Content */
.mobile-menu-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Links */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-yellow);
    padding-left: 10px;
    border-color: var(--primary-yellow);
}

/* Actions at Bottom */
.mobile-menu-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.mobile-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-quote-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary-yellow);
    padding: 14px 20px;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Mobile Lang Switch */
.mobile-lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.m-lang-opt {
    cursor: pointer;
    font-weight: 600;
}

.m-lang-opt.active {
    color: var(--primary-yellow);
    text-decoration: underline;
}

/* Original Nav Hiding on Mobile */
@media (max-width: 768px) {

    /* Hide old nav menu completely */
    .nav-menu {
        display: none !important;
    }

    /* Hide desktop utils */
    .nav-utils {
        display: none !important;
    }

    /* Show toggle */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: var(--primary-yellow);
        border: none;
        color: #000;
        width: 38px;
        /* Slightly smaller */
        height: 38px;
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
    }

    /* Fix spacing and alignment */
    .nav-wrapper {
        justify-content: space-between !important;
        align-items: center !important;
        /* Ensure vertical center */
        padding: 0 20px;
    }

    .navbar {
        padding: 8px 0 !important;
        /* Narrower header */
        /* More space top/bottom */
    }

    /* Smaller logo on mobile */
    .logo-image {
        height: 40px !important;
        width: auto !important;
    }

    /* Remove restrictive height and set specific dark background */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        height: auto !important;
        min-height: 80px;
        background-color: #1f2937 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Align hero text to left */
    .hero-content {
        overflow: visible !important;
        margin-top: 0 !important;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .hero-title {
        text-align: left !important;
    }

    .hero-cta-group {
        justify-content: flex-start !important;
    }
}



.nav-menu.active {
    left: 0;
    /* Aktifken gÃ¶rÃ¼nÃ¼r */
}

.mobile-menu-toggle {
    display: flex;
    /* Mobil menÃ¼ butonunu gÃ¶ster */
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
}



/* Hero Section */
.hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 28px;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 0, 0, 0.6);
}

.hero-content {
    overflow: visible !important;
    margin-top: 0 !important;
    padding: 80px 20px 40px;
    margin-left: 0;
    justify-content: flex-start;
    /* Ä°Ã§eriÄŸi yukarÄ± hizala */
    padding-top: 100px;
}

/* Hero Content Ã¼zerindeki gÃ¶rsel gradient efekti */
.hero-content::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

/* Product Categories (Yatay KaydÄ±rma) */
.categories-grid {
    display: flex;
    /* Grid yerine flex kullanarak yatay kaydÄ±rma */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 20px;
    /* KaydÄ±rmanÄ±n kenar boÅŸluÄŸu */
    grid-template-columns: none;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    min-width: 280px;
    /* KartlarÄ±n sabit geniÅŸliÄŸi */
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.category-image {
    height: 150px;
}

/* HakkÄ±mÄ±zda BÃ¶lÃ¼mÃ¼ */
.about-wrapper {
    grid-template-columns: 1fr;
    /* Tek sÃ¼tun */
    gap: 30px;
}

.about-image {
    height: 300px;
    order: 1;
    /* GÃ¶rseli Ã¼ste al */
}

.about-content {
    order: 2;
}

.about-title {
    font-size: 28px;
}

/* HakkÄ±mÄ±zda Ä°statistikler */
.statistics-title {
    font-size: 16px;
    white-space: normal;
}

.stat-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
}

.stat-number {
    font-size: 24px;
}

.stat-label {
    font-size: 11px;
}

.logo-image {
    width: 60px;
    height: 69px;
}

/* Ä°letiÅŸim CTA (Contact CTA) */
.contact-cta-only .contact-cta-card {
    flex-direction: column;
    /* Dikey hizalama */
    align-items: flex-start;
}

/* --- Ã‡ok KÃ¼Ã§Ã¼k Cihazlar (Max GeniÅŸlik: 480px) --- */
@media (max-width: 480px) {
    .logo {
        min-width: auto;
    }

    .hero-title {
        font-size: 24px;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* HakkÄ±mÄ±zda BÃ¶lÃ¼mÃ¼ */
    .about-title {
        font-size: 22px;
    }

    .about-image {
        height: 220px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        /* TÃ¼m istatistikleri alt alta diz */
    }
}

/* --- Arama ModalÄ± iÃ§in Mobil DÃ¼zenleme --- */
@media (max-width: 768px) {
    .search-modal.active {
        padding-top: 0;
        align-items: flex-start;
        padding: 0;
    }

    .search-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        /* Tam ekran */
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .search-body {
        padding: 15px 20px;
        flex: 1;
        overflow-y: auto;
    }

    .search-results {
        max-height: none;
        flex: 1;
        overflow-y: auto;
    }
}

/* --- HakkÄ±mÄ±zda yeni dÃ¼zen --- */
.about-banner {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-color: #141414;
    color: #fff;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.45));
}

.about-banner-content {
    position: relative;
    z-index: 1;
}

.about-banner h1 {
    font-size: 42px;
    margin: 10px 0;
    font-weight: 800;
}

.breadcrumb.light a {
    color: #fff;
}

.breadcrumb.light i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.breadcrumb.light span {
    color: rgba(255, 255, 255, 0.9);
}

.about-layout {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-split {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.about-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    align-self: start;
}

.about-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.about-menu a {
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #0f3d63;
    font-weight: 600;
    background: #f1f5f9;
    transition: all 0.2s ease;
}

.about-menu a.active,
.about-menu a:hover {
    background: #136aaf;
    color: #fff;
}

.about-facts {
    display: grid;
    gap: 10px;
}

.fact-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.fact-card strong {
    display: block;
    font-size: 20px;
    color: #136aaf;
}

.fact-card span {
    color: #4b5563;
    font-size: 13px;
}

.about-main {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.about-block {
    padding: 24px 24px 12px;
    display: none;
}

.about-block h2 {
    margin: 0 0 10px;
    color: #0f3d63;
}

.about-block p,
.about-block li {
    color: #4b5563;
    line-height: 1.7;
}

.about-policy-list {
    padding-left: 18px;
    margin: 0;
    display: grid;
    gap: 8px;
}

.certificates-grid-section {
    padding: 60px 0 90px;
    background: #fff;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.cert-item {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-block {
        padding: 18px;
    }
}

:root {
    --primary-yellow: #f59e0b;
    --dark-yellow: #d97706;
    --light-yellow: #fbbf24;
    --bright-yellow: #fcd34d;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --overlay-dark: rgba(245, 158, 11, 0.85);
    --primary-blue: #136aaf;
}



/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.logo-loader {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Essential for the spinner ring */
}

.loading-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(19, 106, 175, 0.2));
}

/* Loading Spinner - Circular Ring */
/* Loading Spinner - Circular Ring */
/* Loading Spinner - Circular Ring */
/* Loading Spinner - Removed as per request */
.logo-loader::after {
    display: none;
}

/* Optional: Second ring for more effect */
.logo-loader::before {
    display: none;
    /* Simplify for now to debug 'not spinning' */
}

/* Optional: Second ring for more effect */
.logo-loader::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border: 2px solid rgba(241, 245, 249, 0.5);
    border-radius: 50%;
    z-index: -2;
}

.loading-spinner {
    display: none !important;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 0 rgba(19, 106, 175, 0));
    }

    50% {
        transform: scale(1.08);
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(19, 106, 175, 0.3));
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


html {
    scroll-behavior: smooth;
}

/* Mevcut body kuralÄ±nÄ± bul ve ÅŸununla deÄŸiÅŸtir */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /* Yatay kaymayÄ± engeller */
    width: 100%;
    /* GeniÅŸliÄŸi sabitler */
    position: relative;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header / Navigation */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .nav-link,
.header .logo,
.header .icon-btn,
.header .language-selector,
.header .lang-separator,
.header .lang-option {
    color: #1f2937;
}

.header .nav-link:hover {
    color: var(--bright-yellow);
}

.header .nav-link.active {
    color: #1f2937;
}

.header .btn-quote {
    background-color: var(--bright-yellow);
    color: #1f2937;
    text-decoration: none;
}

.header .btn-quote:hover {
    background-color: var(--light-yellow);
}

.header .lang-active {
    color: var(--bright-yellow);
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-weight: bold;
    min-width: 200px;
}

.logo-image {
    width: 80px;
    height: 92px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

/* Logo fallback if image not found */
.logo-image[src=""],
.logo-image:not([src]) {
    display: none;
}



/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--bright-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--bright-yellow);
}

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

.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--bright-yellow);
}

/* Utility Buttons */
.nav-utils {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--bright-yellow);
}

.btn-quote {
    background-color: var(--bright-yellow);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-quote:hover {
    background-color: var(--light-yellow);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
}

.lang-active {
    color: var(--bright-yellow);
    font-weight: 600;
    transition: color 0.3s ease;
}

.lang-separator {
    color: var(--text-light);
}

.lang-option {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.lang-option:hover {
    color: var(--white);
}

.language-selector .lang-active:hover {
    color: var(--bright-yellow);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px 12px;
    z-index: 1001;
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}


/* ==================== MODERN PREMIUM HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #050a10;
}

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

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

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    overflow: visible !important;
    margin-top: 0 !important;
    max-width: 800px;
    padding-left: 20px;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 850;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero.main {
    background: #ffd700;
    color: #050a10;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-hero.main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
    background: #ffffff;
}

.btn-hero.outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero.outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content {
        overflow: visible !important;
        margin-top: 0 !important;
        padding-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
    }
}

/* ==================== END HERO SECTION ==================== */


@keyframes zoomIn {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    overflow: visible !important;
    margin-top: 0 !important;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: var(--white);
    max-width: 800px;
    padding: 380px 20px;
    margin-left: -250px;
    gap: 20px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero {
    background-color: var(--bright-yellow);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
    text-decoration: none;
}

.btn-hero:hover {
    background-color: var(--light-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.4);
}

.btn-hero i {
    font-size: 12px;
}

.btn-hero.ghost {
    background-color: #fff;
    color: #0f3d63;
    border: 2px solid #136aaf;
    text-decoration: none;
}

.btn-hero.ghost:hover {
    background-color: #136aaf;
    color: #fff;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    width: 12px;
    height: 12px;
    background-color: var(--white);
}

.pagination-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Product Categories */
.product-categories {
    position: relative;
    padding: 60px 0;
    background-color: #f8f9fa;
    z-index: 2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    justify-items: center;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Scroll Animations */
.scroll-animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.scroll-animate-fade-in.animated {
    opacity: 1;
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-image {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    background-color: #e5e7eb;
    flex-shrink: 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    margin-top: auto;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    width: fit-content;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--bright-yellow);
    transition: width 0.3s ease;
}

.category-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.category-link:hover {
    color: var(--primary-yellow);
}

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

.category-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        /* flex-direction: column; */
        flex-direction: row !important;
        background-color: var(--primary-yellow);
        width: 100%;
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: var(--white);
        font-size: 22px;
        padding: 10px 12px;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.7);
        border-color: var(--white);
    }

    .nav-utils {
        gap: 10px;
    }

    .btn-quote span {
        display: none;
    }

    .btn-quote {
        padding: 10px;
    }

    .hero {
        height: 100vh;
        min-height: 500px;
    }

    /* Video overlay mobilde daha koyu */
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-title {
        font-size: 28px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 0, 0, 0.6);
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    }

    .hero-content {
        overflow: visible !important;
        margin-top: 0 !important;
        padding: 80px 20px 40px;
        margin-left: 0;
        max-width: 100%;
        justify-content: flex-start;
        padding-top: 100px;
    }

    .hero-content::before {
        display: none;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .product-categories {
        padding: 40px 0;
    }

    .product-categories .container {
        padding: 0;
        overflow: hidden;
    }

    .categories-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        padding: 0 20px;
        grid-template-columns: none;
    }

    .categories-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .category-image {
        width: 100%;
        height: 150px;
    }

    .category-content {
        padding: 15px;
    }

    .category-title {
        font-size: 14px;
        margin: 0;
        padding: 0;
    }

    .category-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        min-width: auto;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.search-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-modal-content {
    background-color: var(--white);
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    overflow-x: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    box-sizing: border-box;
}

.home-highlights {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(15, 61, 99, 0.08);
}

.highlight-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #0f3d63;
}

.highlight-card p {
    margin: 0 0 14px;
    color: #4b5563;
    line-height: 1.6;
}

.highlight-link {
    color: #136aaf;
    font-weight: 700;
    text-decoration: none;
}

.highlight-link:hover {
    text-decoration: underline;
}

.contact-cta-only .contact-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 61, 99, 0.08);
}

.contact-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-cta-card .btn-primary,
.contact-cta-card .btn-secondary {
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.contact-cta-card .btn-primary {
    background: #136aaf;
    color: #fff;
}

.contact-cta-card .btn-secondary {
    background: #e5e7eb;
    color: #0f3d63;
}

.about-read-more {
    margin-top: 10px;
    background: #136aaf;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

.about-link {
    margin-left: 12px;
    font-weight: 700;
    color: #136aaf;
}

@media (max-width: 768px) {
    .contact-cta-only .contact-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e5e7eb;
    background-color: var(--primary-yellow);
    color: var(--white);
}

.search-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.search-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-body {
    padding: 25px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #6b7280;
    font-size: 18px;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.search-input:focus {
    outline: none;
    border-color: var(--bright-yellow);
}

.search-submit-btn {
    position: absolute;
    right: 10px;
    background-color: var(--bright-yellow);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-submit-btn:hover {
    background-color: var(--light-yellow);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
}

.search-placeholder {
    text-align: center;
    color: #6b7280;
    padding: 40px 20px;
    font-size: 14px;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f9fafb;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item mark {
    background-color: #fef3c7;
    color: #92400e;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.search-result-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 15px;
}

.search-result-category {
    font-size: 13px;
    color: #6b7280;
}

.search-results.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.search-no-results {
    text-align: center;
    color: #6b7280;
    padding: 40px 20px;
}

.search-no-results i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 768px) {
    .search-modal.active {
        padding-top: 0;
        align-items: flex-start;
        padding: 0;
    }

    .search-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .search-header {
        padding: 15px 20px;
        flex-shrink: 0;
    }

    .search-header h2 {
        font-size: 18px;
    }

    .search-close {
        font-size: 20px;
        padding: 5px;
    }

    .search-body {
        padding: 15px 20px;
        flex: 1;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .search-input-wrapper {
        margin-bottom: 15px;
        flex-shrink: 0;
    }

    .search-input {
        padding: 12px 45px 12px 40px;
        font-size: 16px;
    }

    .search-submit-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        right: 8px;
    }

    .search-results {
        max-height: none;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .search-placeholder {
        padding: 30px 15px;
        font-size: 13px;
    }

    .search-result-item {
        padding: 12px 15px;
    }

    .search-result-title {
        font-size: 14px;
    }

    .search-result-category {
        font-size: 12px;
    }

    .category-card {
        padding: 0;
    }

    .category-image {
        height: 150px;
    }

    .category-content {
        padding: 15px;
    }
}

/* About Us / Corporate Section */
.about-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-section .container {
    width: 100%;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.about-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 0;
}

.about-subtitle {
    font-size: 15px;
    color: var(--bright-yellow);
    font-weight: 500;
    margin-bottom: 8px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.product-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-left: 0;
    margin-right: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-breadcrumb::-webkit-scrollbar {
    display: none;
}

.product-breadcrumb a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--bright-yellow);
    opacity: 1;
}

.product-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.product-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.product-detail-content {
    padding: 80px 0;
    background: #fff;
}

.about-text {
    margin-bottom: 30px;
}

.about-text p {
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 18px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-block.active {
    display: block;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-about {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--bright-yellow);
    background-color: transparent;
    color: var(--bright-yellow);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: var(--bright-yellow);
    color: var(--white);
    transform: scale(1.1);
}

.about-journey {
    font-size: 15px;
    color: var(--bright-yellow);
    font-weight: 500;
}


.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 28px;
    color: #1f2937;
    flex-shrink: 0;
}

.stat-icon-star {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 14px;
    color: var(--bright-yellow);
    background-color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--bright-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-section {
        padding: 50px 0;
        min-height: auto;
    }

    .about-wrapper {
        gap: 35px;
        margin-bottom: 40px;
    }

    .about-image {
        height: 380px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-text p {
        font-size: 13px;
    }

    .about-section .statistics-section {
        margin-top: 30px;
        padding-top: 30px;
    }

    .statistics-grid {
        gap: 35px;
    }

    .stat-header-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .statistics-title {
        font-size: 18px;
    }

    .statistics-arrows {
        gap: 6px;
    }

    .statistics-arrows i {
        font-size: 14px;
    }

    .stat-item {
        gap: 15px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
        min-height: auto;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .about-image {
        height: 300px;
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .about-title {
        font-size: 28px;
    }

    .about-text p {
        font-size: 13px;
    }

    .about-section .statistics-section {
        margin-top: 25px;
        padding-top: 25px;
    }

    .statistics-grid {
        gap: 20px;
    }

    .stat-header-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .statistics-title {
        font-size: 16px;
        white-space: normal;
    }

    .statistics-arrows {
        gap: 5px;
    }

    .statistics-arrows i {
        font-size: 12px;
    }

    .stat-item {
        gap: 12px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 22px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .logo-image {
        width: 60px;
        height: 69px;
    }

}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 0;
    }

    .about-wrapper {
        margin-bottom: 25px;
    }

    .about-image {
        height: 220px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-subtitle {
        font-size: 13px;
    }

    .about-text p {
        font-size: 12px;
    }

    .btn-about {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .about-journey {
        font-size: 13px;
    }

    .about-section .statistics-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .statistics-title {
        font-size: 14px;
    }

    .statistics-arrows {
        gap: 4px;
    }

    .statistics-arrows i {
        font-size: 10px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        gap: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .logo-image {
        width: 50px;
        height: 58px;
    }

}

/* Certificates Section */
.certificates-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

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

.certificates-content {
    padding: 20px 0;
}

.certificates-badge {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.certificates-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.certificates-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 40px;
}

.certificates-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.certificate-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.certificate-icon {
    font-size: 32px;
    color: var(--bright-yellow);
    flex-shrink: 0;
    margin-top: 5px;
}

.certificate-feature-content strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.certificate-feature-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.certificates-image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.certificates-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 50px;
}

/* Main Products Section */
.main-products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.main-products-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 15px;
}

.main-products-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-product-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.main-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--bright-yellow);
}

.main-product-icon {
    font-size: 48px;
    color: var(--bright-yellow);
    margin-bottom: 20px;
    display: block;
}

.main-product-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.main-product-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.main-product-desc strong {
    color: #1f2937;
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--white);
}

.products-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.products-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-download-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    /* Premium Red Gradient */
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.btn-download-pdf.btn-price-list {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    /* Premium Green Gradient */
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-download-pdf:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.btn-download-pdf i {
    font-size: 18px;
}

.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px auto 0;
    max-width: 1420px;
    /* (260px card * 5) + (30px gap * 4) = 1420px */
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex: 0 0 260px;
    /* Even more compact and elegant */
    min-width: 260px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Rectangular aspect ratio like the provided image */
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #136aaf;
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #0f5a8f;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    padding: 20px 20px 10px;
    margin: 0;
    text-align: center;
}

.product-btn {
    display: inline-block;
    background-color: var(--bright-yellow);
    color: #1f2937;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0 20px 20px;
    transition: all 0.3s ease;
    width: calc(100% - 40px);
}

.product-btn:hover {
    background-color: var(--light-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.4);
}

/* Technical Section */
.technical-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.technical-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 15px;
}

.technical-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.technical-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    border-top: 3px solid var(--bright-yellow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.technical-icon {
    font-size: 32px;
    color: var(--bright-yellow);
    margin-bottom: 20px;
    display: block;
}

.technical-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.technical-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.technical-content p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.technical-content strong {
    color: #1f2937;
    font-weight: 600;
}

/* References Section */
.references-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.references-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.references-carousel {
    display: flex;
    gap: 40px;
    animation: scrollReferences 30s linear infinite;
    width: fit-content;
}

.references-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollReferences {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reference-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 200px;
}

.reference-logo {
    width: 150px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.reference-item:hover .reference-logo {
    filter: brightness(1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    color: var(--bright-yellow);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.btn-quote-form {
    width: 100%;
    background-color: var(--bright-yellow);
    color: #1f2937;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quote-form:hover {
    background-color: var(--light-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.4);
}

.contact-map {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quote Form Modal */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    overflow-y: auto;
    overflow-x: hidden;
}

.quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.quote-modal-content {
    background-color: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-sizing: border-box;
}

.quote-modal-content::-webkit-scrollbar {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.quote-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.quote-modal-close {
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.quote-modal-close:hover {
    background-color: #e5e7eb;
    color: #1f2937;
    transform: rotate(90deg);
}

.quote-modal-body {
    padding: 30px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-yellow);
}

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

/* Product Select Dropdown */
.product-select-wrapper {
    position: relative;
}

.product-select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.product-select:focus {
    outline: none;
    border-color: var(--bright-yellow);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
    font-size: 14px;
}

.product-custom-input {
    margin-top: 10px;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.product-custom-input:focus {
    outline: none;
    border-color: var(--bright-yellow);
}

.btn-submit-quote {
    background-color: var(--bright-yellow);
    color: #1f2937;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-quote:hover {
    background-color: var(--light-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.4);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .quote-modal-header {
        padding: 20px;
    }

    .quote-modal-body {
        padding: 20px;
    }
}

/* Video Modal */
/* Video Modal - Premium Glassmorphic Design */
/* Video Modal - Premium Glassmorphic Design */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* Slightly darker for better contrast */
    z-index: 9999;
    /* Ensure it's on top of everything */
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.video-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 95%;
    max-width: 1000px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.15);
    /* Subtle gold glow */
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
    opacity: 1;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 20;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.video-modal-close span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-modal-close:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    transform: translateY(-2px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-modal-close {
        top: -40px;
        right: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 60px 0 20px;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-image {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-company-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-slogan {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 50%;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--bright-yellow);
    color: #1f2937;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 16px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

.footer-contact-list i {
    color: var(--bright-yellow);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-links-list a:hover {
    color: var(--bright-yellow);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 10px;
}

.powered-by-text {
    font-size: 12px;
    color: #9ca3af;
}

.powered-by-logo {
    display: flex;
    align-items: center;
}

.pars-logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo-section {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .products-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .products-title {
        font-size: 32px;
    }

    .products-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .btn-download-pdf {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .products-carousel-wrapper {
        gap: 10px;
    }

    .product-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .main-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-products-title {
        font-size: 32px;
    }

    .technical-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .technical-title {
        font-size: 32px;
    }

    .certificates-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certificates-image {
        height: 400px;
    }

    .certificates-title {
        font-size: 32px;
    }
}

.btn-download-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d32f2f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.25s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn-download-pdf:active {
    transform: scale(0.95);
}

/* IÅŸÄ±k parlamasÄ± */
.btn-download-pdf::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-30deg);
}

/* Aktif animasyon */
.btn-download-pdf.active::after {
    animation: shine 0.6s forwards;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

/* "Ä°ndiriliyor..." yazÄ±sÄ± */
.btn-download-pdf.loading {
    background: #b71c1c;
}

.btn-download-pdf.loading .btn-text {
    opacity: 0;
}

.btn-download-pdf.loading::before {
    content: "Ä°ndiriliyor...";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


.product-categories,
.product-categories * {
    background-color: transparent;
}

.category-card {
    background-color: #ffffff !important;
}

.category-image {
    background-color: #ffffff !important;
}

.category-image img {
    background-color: #ffffff !important;
    display: block;
}

.category-image::before,
.category-image::after,
.category-card::before,
.category-card::after {
    display: none !important;
    content: none !important;
}



/* =====================================================
   MOBÄ°L SAÄA KAYMA + HAMBURGER MENÃœ KESÄ°N DÃœZELTME
   BUNU CSS DOSYASININ EN ALTINA EKLE
===================================================== */
@media (max-width: 768px) {

    /* Genel taÅŸma engeli */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        position: relative;
    }

    /* TÃ¼m elemanlar ekran dÄ±ÅŸÄ±na taÅŸamasÄ±n */
    * {
        box-sizing: border-box;
        max-width: 100vw;
    }

    /* HERO saÄŸa kayma sebebi olan margin fix */
    .hero-content {
        overflow: visible !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        padding: 80px 20px 40px;
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none !important;
    }

    /* HERO before gradient taÅŸmasÄ±nÄ± engelle */
    .hero-content::before {
        display: none;
    }

    /* ===== MOBÄ°L NAV MENU â€“ SAÄDAN AÃ‡ILAN ===== */
    .nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        left: auto !important;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--primary-yellow);
        /* flex-direction: column; */
        flex-direction: row !important;
        padding: 250px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
    }

    .nav-menu.active {
        right: 0;
    }

    /* MenÃ¼ linkleri dikey */
    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 14px 10px;
        font-size: 16px;
    }

    /* Hamburger buton her zaman Ã¼stte */
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }

    /* MenÃ¼ aÃ§Ä±kken body scroll kilidi (JS ile class ekliyorsan) */
    body.menu-open {
        overflow: hidden;
    }
}



.mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #f2f2f2;
    color: #222;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu-toggle:hover {
    background: #e9ac29;
    color: #fff;
}

/* Header Navigation Utils - Buton Stilleri */
.nav-utils {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.btn-quote:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.6);
}

.btn-quote i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-utils {
        gap: 5px;
    }

    .btn-quote {
        padding: 8px 12px;
        font-size: 12px;
    }

    .btn-quote span {
        display: none;
    }

    .btn-quote i {
        font-size: 16px;
    }
}



/* Header Stilleri - Siyah Arka Plan */
.header {
    background: #1f2937;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: transparent;
    padding: 18px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

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

.nav-link.active::after {
    width: 0;
}

.nav-link:hover {
    color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.08);
}

.nav-link.active {
    color: #ffffff !important;
    background: transparent;
}

.icon-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.icon-btn:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}

.logo-image {
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* Breadcrumb Stilleri - Daha ÅÄ±k ve DayanÄ±klÄ± */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb.light {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a:hover {
    color: #fbbf24;
}

.breadcrumb i.fa-angle-right,
.breadcrumb i.fa-chevron-right {
    font-size: 12px;
    opacity: 0.6;
}

.breadcrumb i.fa-home {
    font-size: 13px;
}

/* About Banner Stilleri - KÃ¼Ã§Ã¼ltÃ¼lmÃ¼ÅŸ */
.about-banner {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0 !important;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 61, 99, 0.85), rgba(19, 106, 175, 0.75));
}

.about-banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 180px 0 80px;
    text-align: left !important;
}

.about-banner-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    line-height: 1.6;
}



/* Language Selector - ÅÄ±k TasarÄ±m */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.4);
}

.language-selector span {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 4px;
}

.language-selector .lang-active {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
}

.language-selector .lang-option:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.language-selector .lang-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    cursor: default;
    padding: 0;
}

@media (max-width: 768px) {
    .language-selector {
        padding: 4px 10px;
        gap: 6px;
    }

    .language-selector span {
        font-size: 12px;
    }
}


/* Header Navigation Utils - Daha DÃ¼zenli */
.nav-utils {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    flex-shrink: 0;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.search-btn i {
    color: #ffffff !important;
}

.search-btn:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24 !important;
}

.search-btn:hover i {
    color: #fbbf24 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-utils {
        gap: 8px;
    }

    .btn-quote span {
        display: inline-block;
        font-size: 13px;
    }

    .btn-quote {
        padding: 8px 15px;
        gap: 6px;
    }
}

@media (min-width: 1025px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Logo Container - OrtalÄ± */
.logo {
    display: flex;
    align-items: center;
    min-width: 150px;
    flex-shrink: 0;
}

/* Nav Wrapper Improvements */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}

.nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    list-style: none;
    gap: 35px;
    margin: 0 auto 0 40px;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin: 0;
}


/* Desktop'ta menÃ¼ her zaman yan yana */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        padding: 0 !important;
    }
}




/* Desktop - MenÃ¼ Her Zaman Yan Yana */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        padding: 0 !important;
        left: auto !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}






/* Hero Section - Header ile HizalÄ± */
.hero {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* Header altÄ±nda boÅŸluk olmasÄ±n */
.header {
    margin-bottom: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero banner sections */
.about-banner,
.page-hero {
    margin-top: 0 !important;
}





/* Breadcrumb ve Banner - Sola HizalÄ± Standart */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: auto;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left !important;
}

.about-banner-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: left !important;
}

.about-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    line-height: 1.6;
    text-align: left !important;
}

/* About Banner Content - Kesin Sola Hizalama */
.about-banner .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    margin-left: 400px;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 100px 0 50px;
    text-align: left !important;
    width: 100%;
    max-width: 100%;
}

.about-banner-content * {
    text-align: left !important;
}

/* Scroll Behavior - Hash Scroll'u Engelle */
html {
    scroll-behavior: auto !important;
}

html:target {
    scroll-behavior: auto !important;
}

/* About menu linkleri iÃ§in scroll engelleme */
.about-menu a[href^="#"] {
    scroll-behavior: auto !important;
}

/* About Layout - MenÃ¼ ve Kart HizalÄ± */
.about-layout {
    padding: 60px 0;
}

.about-split {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.about-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.about-menu a {
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.about-menu a:hover {
    background: #e5e7eb;
    color: #0f3d63;
}

.about-menu a.active {
    background: #0f3d63;
    color: #ffffff;
}

.about-main {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .about-banner {
        padding: 140px 0 40px !important;
        min-height: auto !important;
    }

    .about-banner .container {
        margin-left: 0 !important;
        padding: 0 20px !important;
    }

    .about-banner-content {
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .about-banner-content h1 {
        font-size: 24px !important;
        margin: 5px 0 5px !important;
    }

    .about-banner-content p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
        opacity: 0.9 !important;
    }

    .breadcrumb {
        margin-bottom: 0px !important;
        padding: 6px 14px !important;
        font-size: 12px !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-sidebar {
        position: static;
    }

    .about-menu {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 5px;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .about-menu a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        padding: 15px 10px;
        font-size: 13px;
        border-radius: 12px;
        background: #ffffff;
        color: #1f2937;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        white-space: normal;
        border: 1px solid #eef2f6;
        transition: all 0.3s ease;
    }

    .about-menu a i {
        font-size: 18px;
        color: #136aaf;
    }

    .about-menu a.active {
        background: #0f3d63;
        color: #ffffff;
        border-color: #0f3d63;
    }

    .about-menu a.active i {
        color: #fbbf24;
    }
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-hero {
    padding: 160px 0 80px;
    background: #0f172a;
    color: var(--white);
    text-align: center;
    position: relative;
    border-bottom: 5px solid var(--primary-yellow);
}

.product-detail-hero h1 {
    font-size: 40px;
    font-weight: 800;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.product-detail-image-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.product-detail-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.product-info-text {
    padding-bottom: 20px;
}

.product-info-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.product-info-text p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Box */
.product-features-elegant {
    margin-top: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.feature-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-text-main {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
}

/* Action Buttons */
.product-action-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-detail-quote,
.btn-detail-tech {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-detail-quote {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(19, 106, 175, 0.3);
}

.btn-detail-quote:hover {
    background: #0f5a96;
    transform: translateY(-2px);
}

.btn-detail-tech {
    background: #fff;
    color: #334155;
    border: 2px solid #e2e8f0;
}

.btn-detail-tech:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

/* Specs Section */
.product-specs-section {
    margin-top: 80px;
}

.specs-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0f172a;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.specs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table th {
    background: #f8fafc;
    color: #0f172a;
    padding: 14px 20px;
    text-align: center;
    /* Center by default for technical data */
    vertical-align: middle;
    /* Vertically align multi-row headers */
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid #e2e8f0;
    /* Boxed structure for complex headers */
}

.product-specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 15px;
}

.product-specs-table tr:last-child td {
    border-bottom: none;
}

.product-specs-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.product-specs-table tr:hover {
    background-color: #f1f5f9;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .product-detail-hero {
        padding: 140px 0 60px;
    }

    .product-detail-hero h1 {
        font-size: 32px;
    }

    .product-action-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn-detail-quote,
    .btn-detail-tech {
        width: 100%;
    }
}


/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    content-visibility: auto;
}

.hero-video-bg {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce motion for accessibility and performance */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== CUSTOM VIDEO CONTROLS FOR MODAL ==================== */
.video-wrapper .custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px 20px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-wrapper:hover .custom-video-controls,
.video-wrapper.paused .custom-video-controls {
    opacity: 1;
}

/* Big Play Button Centered */
.video-wrapper .big-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 4;
    padding-left: 5px;
    /* Visual center correction */
}

.video-wrapper .big-play-btn:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.video-wrapper.playing .big-play-btn {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Progress Bar */
.progress-area {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    transition: height 0.1s ease;
}

.progress-area:hover {
    height: 7px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-yellow);
    border-radius: 5px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    transition: 0.2s;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.progress-area:hover .progress-bar::before {
    opacity: 1;
}

/* Controls Layout */
.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Control Buttons */
.control-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.control-btn:hover {
    color: var(--primary-yellow);
    opacity: 1;
    transform: scale(1.1);
}

/* Volume Slider */
.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 0;
    /* Hidden by default */
    overflow: hidden;
    transition: width 0.3s ease;
}

.controls-left:hover .volume-container,
.volume-container:hover {
    width: 100px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    cursor: pointer;
}

/* Time */
.time-display {
    font-size: 13px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    min-width: 80px;
    opacity: 0.8;
}











/* --- DEFINITIVE ELITE DESIGN SYSTEM (v2.0) --- */

/* 1. Global Section Headers & Navigation Arrows */
.section-nav-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
    width: 100%;
}

.section-nav-header:has(.products-title) {
    justify-content: space-between;
}

.snh-nav {
    display: flex;
    gap: 10px;
}

.ch-nav-btn {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ch-nav-btn i {
    font-size: 14px;
    font-weight: 700 !important;
}

.ch-nav-btn:hover {
    background: #0088ff;
    color: #ffffff;
    border-color: #0088ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 136, 255, 0.2);
}

.ch-nav-btn.active {
    background: #0088ff;
    color: #fff;
    border-color: #0088ff;
}

/* 2. Ultra-Premium Mobile Hero (Left Aligned Version) */
@media (max-width: 768px) {
    .hero-video {
        min-height: 100vh !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 160px 20px 80px !important;
    }

    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.45) !important;
        backdrop-filter: blur(5px) !important;
    }

    .hero-content {
        overflow: visible !important;
        margin-top: 0 !important;
        position: relative !important;
        background: rgba(255, 255, 255, 0.04) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        padding: 60px 30px 45px !important;
        border-radius: 35px !important;
        text-align: left !important;
        /* LEFT ALIGNED as requested */
        width: 100% !important;
        max-width: 370px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        /* LEFT ALIGNED */
        z-index: 10 !important;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6) !important;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.45 !important;
        letter-spacing: -0.2px !important;
        font-weight: 850 !important;
        color: #ffffff !important;
        margin-bottom: 45px !important;
        text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
        letter-spacing: -0.5px !important;
    }

    .hero-cta-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .btn-hero {
        width: 100% !important;
        padding: 18px 30px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }

    .btn-hero.main {
        background: linear-gradient(135deg, #0088ff 0%, #00d4ff 100%) !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: 0 12px 30px rgba(0, 136, 255, 0.45) !important;
    }

    .btn-hero.outline {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
        color: #ffffff !important;
    }

    .btn-hero i {
        display: none !important;
    }

    /* Circular Local Production Badge Header-Overlapping */
    .yerli-mobile-badge {
        display: flex !important;
        position: absolute;
        top: -20px;
        right: 25px;
        width: 80px;
        height: 80px;
        background: #fbbf24;
        border-radius: 50% !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 50;
        border: 4px solid #fff;
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
        animation: badge-pulse 3s ease-in-out infinite;
    }

    .yerli-mobile-text {
        color: #000;
        font-size: 10px;
        font-weight: 1000;
        line-height: 1.1;
        text-transform: uppercase;
    }

    @keyframes badge-pulse {

        0%,
        100% {
            transform: translateY(0) scale(1.0);
        }

        50% {
            transform: translateY(-5px) scale(1.03);
        }
    }

    /* Slider Mobile Fixes */
    .categories-grid,
    .products-carousel {
        display: flex !important;
        overflow-x: auto !important;
        gap: 15px !important;
        padding: 10px 20px 30px !important;
        scrollbar-width: none !important;
    }

    .category-card,
    .product-card {
        min-width: 290px !important;
        flex-shrink: 0 !important;
    }
}


/* --- Restore Original Corner Yerli Üretim Badge STYLE --- */
.yerli-corner-badge {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-badge 3s ease-in-out infinite;
}

.yerli-seal {
    width: 42px;
    height: 42px;
    background: #fbbf24;
    /* Golden */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

.yerli-seal i {
    font-size: 16px;
    margin-bottom: -2px;
}

.yerli-tr-label {
    font-size: 10px;
    font-weight: 900;
}

.yerli-text-box {
    display: flex;
    flex-direction: column;
}

.yerli-h {
    font-size: 11px;
    font-weight: 800;
    color: #fbbf24;
    opacity: 0.9;
}

.yerli-t {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .yerli-corner-badge {
        bottom: 20px;
        right: 20px;
        transform: scale(0.9);
        background: rgba(0, 0, 0, 0.6);
        padding: 10px 15px;
    }

    /* Hide the mobile-circular leftovers */
    .yerli-mobile-badge {
        display: none !important;
    }
}







/* --- DEFINITIVE ELITE SEAL (MOBILE) - CIRCULAR STYLE --- */
.yerli-mobile-circle {
    display: none;
}

@media (max-width: 768px) {
    .yerli-mobile-circle {
        display: flex !important;
        position: absolute !important;
        top: -40px !important;
        /* Görseldeki gibi kartın sağ üstünde */
        right: -10px !important;
        width: 85px !important;
        height: 85px !important;
        background: #fbbf24 !important;
        border: 5px solid #ffffff !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        z-index: 100 !important;
    }

    .seal-label {
        font-size: 11px !important;
        font-weight: 950 !important;
        color: #000 !important;
        line-height: 1.2 !important;
        text-align: center !important;
        text-transform: uppercase !important;
    }

    /* Hide the desktop badge on mobile */
    .yerli-corner-badge {
        display: none !important;
    }

    /* Hero kart ayarlarını koru */
    .hero-content {
        position: relative !important;
        overflow: visible !important;
        margin-top: 0 !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
}













/* --- Definitve Header & Hero Gap Fix --- */
.header {
    background-color: #1f2937 !important;
}

@media (max-width: 768px) {
    .hero-title {
        margin-bottom: 0 !important;
    }

    .hero-cta-group {
        margin-top: 0 !important;
    }
}


/* --- ELITE DESKTOP HERO SYSTEM (Centered Glass Card) --- */
@media (min-width: 992px) {
    .hero-video {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100vh !important;
    }

    .hero .container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        max-width: 1200px !important;
    }

    .hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        max-width: 900px !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-shadow: none !important;
    }

    .hero-title {
        font-size: 56px !important;
        line-height: 1.1 !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin-bottom: 25px !important;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        max-width: 800px !important;
    }

    .hero-subtitle {
        display: block !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        color: #00d4ff !important;
        letter-spacing: 3px !important;
        text-transform: uppercase !important;
        margin-bottom: 15px !important;
    }

    .hero-description {
        display: block !important;
        font-size: 18px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        max-width: 600px !important;
        margin-bottom: 40px !important;
        line-height: 1.6 !important;
    }

    .hero-cta-group {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        justify-content: center !important;
        width: auto !important;
    }

    .btn-hero {
        min-width: 200px !important;
        padding: 16px 35px !important;
        font-size: 16px !important;
        border-radius: 50px !important;
    }
}

/* Ensure subtitle/description are hidden by default if not needed elsewhere */
@media (max-width: 991px) {

    .hero-subtitle,
    .hero-description {
        display: none !important;
    }
}



/* --- Desktop Button Refinements --- */
@media (min-width: 992px) {
    .btn-hero.main {
        background: linear-gradient(135deg, #0088ff 0%, #00d4ff 100%) !important;
        border: none !important;
        box-shadow: 0 15px 35px rgba(0, 136, 255, 0.45) !important;
    }

    .btn-hero.outline {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.6) !important;
        color: #ffffff !important;
        backdrop-filter: none !important;
    }

    .btn-hero:hover {
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3) !important;
    }
}


/* --- DESKTOP HERO REFINEMENT (Centered & Clean) --- */
@media (min-width: 992px) {

    .hero-subtitle,
    .hero-description {
        display: none !important;
    }

    .hero-title {
        margin-bottom: 35px !important;
        font-size: 52px !important;
    }
}


/* --- Cleanup: Active Corner Badge (Desktop) --- */
@media (min-width: 769px) {
    .yerli-corner-badge {
        display: flex !important;
    }
}


/* --- Product Header Controls Integration --- */
.snh-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.snh-controls .products-actions {
    margin: 0;
}

.snh-controls .btn-download-pdf {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    gap: 8px;
}

.snh-controls .btn-download-pdf i {
    font-size: 16px;
}

@media (max-width: 991px) {
    .section-nav-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
        margin-bottom: 40px !important;
    }

    .products-title {
        font-size: 28px !important;
        width: 100% !important;
    }

    .snh-controls {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 20px !important;
    }

    .products-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .btn-download-pdf {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .snh-nav {
        margin-top: 10px !important;
    }
}

/* ==========================================================================
   PREMIUM CERTIFICATE GALLERY (ANTIGRAVITY EDITION)
   ========================================================================== */

.certificate-gallery-container {
    width: 100%;
}

.certificate-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Fixed 3 columns for side-by-side */
    gap: 10px;
    /* Even closer together */
    padding: 10px 0;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .certificate-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 side-by-side on mobile */
        gap: 5px;
    }

    .cert-img-wrapper {
        height: 100px;
        /* Smaller height for mobile */
    }
}

.cert-card-premium {
    background: transparent;
    /* Remove background */
    border-radius: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    /* Remove border */
    box-shadow: none;
    /* Remove shadow */
    position: relative;
}

/* Disable hover effects */
.cert-card-premium:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.cert-img-wrapper {
    width: 100%;
    height: 180px;
    /* Slightly larger */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cert-card-premium:hover .cert-img-wrapper {
    transform: none;
}

.cert-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
}

.cert-card-premium:hover img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
}

.cert-title-premium {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-subtitle-premium {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    font-weight: 500;
}

.cert-glow {
    display: none;
    /* Remove glow as requested no hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .certificate-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Keep 3 yan yana */
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 40px 0;
    }

    .cert-img-wrapper {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .certificate-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Force 3 side-by-side on mobile */
        gap: 8px;
    }

    .cert-img-wrapper {
        height: 90px;
        /* Compact height for small screens */
    }
}