/**
 * Frontend Styles
 * Vendor Bilisim
 */

/* ========================================
   CSS Variables
======================================== */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --secondary-color: #ff6600;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-color: #f8f9fa;
    --bg-light: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Container
======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #e55a00;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* ========================================
   Hero Slider
======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    /*
     * aspect-ratio: CSS yedek değeri — PHP inline stil ile ezilebilir.
     * Gerçek oran her sayfa yüklemesinde resmin piksel boyutundan hesaplanır.
     */
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    /*
     * Koyu arka plan: mobil min-height veya video geçişi sırasında oluşabilecek
     * letterbox/boşluk alanlarını temiz biçimde maskeler.
     */
    background-color: #001233;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /*
     * contain → resim asla kırpılmaz.
     * Container oranı PHP tarafından resmin gerçek piksel boyutuna göre
     * belirlenir; masaüstünde letterbox oluşmaz.
     * Mobilede min-height devreye girince küçük üst/alt boşluk görünebilir
     * — bu hibrit yaklaşımın kasıtlı davranışıdır.
     */
    object-fit: contain;
    object-position: center;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 35, 69, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.slide .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 700px;
    color: white;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.slide-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.slide-buttons .btn {
    min-width: 180px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
	background: rgba(45, 41, 41, 0.71);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: auto;
}

.slider-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Video Slide */
.slide-video {
    background: #000;
}

.slide-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.slide-video .slide-overlay {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.4) 0%, rgba(0, 35, 69, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
}

/* Slider Thumbnail Navigation */
.slider-thumbnails {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    padding: 0;
}

.slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.slider-thumb:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.6);
}

.slider-thumb:hover img {
    transform: scale(1.1);
}

.slider-thumb.active {
    border-color: var(--accent-color, #f5a623);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.5);
}

.slider-thumb .thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    opacity: 0.8;
}

.slider-thumb .thumb-overlay i {
    width: 20px;
    height: 20px;
}

.slider-thumb.active .thumb-overlay {
    background: rgba(245, 166, 35, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.5;
    }
}

/* Hero Slider Responsive */
@media (max-width: 992px) {
    /*
     * object-fit: contain artık global default (kırpma yok).
     * Arka plan rengi .hero-slider üzerinde zaten tanımlı.
     * Bu breakpoint'te yalnızca metin boyutları ve kontrol düğmeleri ayarlanır.
     */
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slider-btn {
        width: 46px;
        height: 46px;
    }

    .scroll-indicator {
        display: none;
    }

    .slider-thumb {
        width: 60px;
        height: 60px;
    }

    .slider-thumbnails {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    /*
     * Hibrit yaklaşım — mobil min-height:
     * Geniş format banner resimleri (örn. 1920×640) dinamik oranla
     * çok ince bir şerit oluşturabilir. min-height bu eşiği engeller.
     * Resim object-fit: contain ile tam görünür, üst/alt boşluk koyu bg ile kapanır.
     */
    .hero-slider {
        min-height: 220px;
    }

    .slide-content {
        text-align: center;
        max-width: 100%;
    }

    .slide .container {
        justify-content: center;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

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

    .slide-buttons .btn {
        min-width: 150px;
        padding: 14px 24px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-thumb {
        width: 55px;
        height: 55px;
    }

    .slider-thumbnails {
        bottom: 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    /* Küçük telefonlarda min-height biraz düşürülür — yine de ince şerit olmaz */
    .hero-slider {
        min-height: 170px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .slide-content p {
        display: none;
    }

    .slide-content .slide-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slide-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .slider-thumb {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }

    .slider-thumbnails {
        bottom: 15px;
        gap: 6px;
    }

    .slider-thumb .thumb-overlay i {
        width: 14px;
        height: 14px;
    }

    .slider-controls {
        display: none;
    }
}

/* ========================================
   Header
======================================== */
.site-header {
    position: relative;
    z-index: 1000;
    background: var(--bg-light);
    box-shadow: var(--shadow);
}

.header-top {
    background: #1a1a2e;
    color: white;
    padding: 8px 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    --header-contact-gap: 20px;
    display: flex;
    gap: var(--header-contact-gap);
    align-items: center;
    flex-wrap: wrap;
}

/* İki telefon: araları = telefon bloğu ile mail arası (üstteki gap ile aynı px) */
.header-phones {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 0.35em;
}

.header-phone-item + .header-phone-item {
    margin-inline-start: var(--header-contact-gap);
}

.header-phone-item {
    display: inline-flex;
    flex-shrink: 0;
    max-width: 100%;
}

.header-contact .header-phone-link,
.header-contact .header-phone-nolink {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-decoration: none;
}

.header-contact .header-phone-nolink {
    cursor: default;
}

.header-contact a {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact a:hover {
    opacity: 0.9;
}

.header-contact .icon {
    width: 16px;
    height: 16px;
}

.header-top-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 20px;
}

.header-top-link {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-top-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.header-top-link svg {
    width: 14px;
    height: 14px;
}

.lang-link {
    color: white;
    font-weight: 600;
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
}

.lang-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.header-main {
    /* padding controlled by settings */
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.main-nav .nav-menu {
    display: flex;
    gap: 30px;
}

.main-nav .nav-menu > li > a {
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
}

.main-nav .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav .nav-menu > li > a:hover::after,
.main-nav .nav-menu > li > a.active::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.main-nav .nav-menu > li.has-dropdown > a {
    padding-right: 18px;
}

.main-nav .nav-menu > li.has-dropdown > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center / contain;
    transition: transform 0.25s ease;
    opacity: 0.85;
    pointer-events: none;
}

.main-nav .nav-menu > li.has-dropdown:hover > a::before,
.main-nav .nav-menu > li.has-dropdown:focus-within > a::before {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-light);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu li a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.header-search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-search-btn:hover {
    background: var(--primary-color);
    color: white;
}

.header-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.search-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-close {
    position: absolute;
    top: -60px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.search-modal-close svg {
    width: 24px;
    height: 24px;
}

.search-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 8px 8px 8px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
}

.search-input-wrapper .search-icon {
    width: 24px;
    height: 24px;
    color: #999;
    flex-shrink: 0;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 15px 20px;
    background: transparent;
}

.search-input-wrapper input::placeholder {
    color: #aaa;
}

.search-submit {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-submit:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.search-submit svg {
    width: 22px;
    height: 22px;
}

.search-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 20px;
    width: 100%;
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.hero-buttons .btn-outline {
    border-color: white;
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ========================================
   Section Styles
======================================== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-alt {
    background: var(--bg-color);
}

/* ========================================
   Categories Carousel
======================================== */
.categories-carousel-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.categories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.categories-nav:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.categories-nav svg {
    width: 22px;
    height: 22px;
}

.categories-prev {
    left: 0;
}

.categories-next {
    right: 0;
}

.categories-carousel {
    overflow: hidden;
}

.categories-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.category-carousel-card {
    flex: 0 0 calc(33.333% - 14px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.category-carousel-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.category-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf0 100%);
}

.category-placeholder svg {
    width: 60px;
    height: 60px;
    color: #ccc;
}

.category-carousel-content {
    padding: 20px;
    text-align: center;
}

.category-carousel-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-carousel-card:hover .category-carousel-content h3 {
    color: var(--primary-color);
}

.category-product-count {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Categories Carousel Responsive */
@media (max-width: 992px) {
    .category-carousel-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .categories-carousel-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 576px) {
    .category-carousel-card {
        flex: 0 0 100%;
    }
    
    .categories-carousel-wrapper {
        padding: 0 35px;
    }
    
    .categories-nav {
        width: 35px;
        height: 35px;
    }
    
    .categories-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   Categories Grid 4 Column
======================================== */
.categories-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-grid-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.category-grid-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.category-grid-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.category-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.category-grid-content {
    padding: 20px;
    text-align: center;
}

.category-grid-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-grid-card:hover .category-grid-content h3 {
    color: var(--primary-color);
}

/* Categories Grid 5 Column Responsive */
@media (max-width: 1400px) {
    .categories-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

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

    .categories-grid-section {
        padding: 50px 0;
    }
}

/* ========================================
   Categories Grid (Legacy)
======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card-image {
    aspect-ratio: 4/3;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.category-card-image .placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.category-card-content {
    padding: 25px;
}

.category-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.category-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.category-card-content .product-count {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ========================================
   Brands Carousel Section
======================================== */
.brands-section {
    background: var(--bg-color);
}

.brands-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.brands-nav {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--text-color);
}

.brands-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.brands-carousel {
    flex: 1;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.brand-item {
    flex: 0 0 calc((100% - 120px) / 5);
    min-width: calc((100% - 120px) / 5);
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.brand-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.brand-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item .brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

@media (max-width: 1200px) {
    .brand-item {
        flex: 0 0 calc((100% - 90px) / 4);
        min-width: calc((100% - 90px) / 4);
    }
}

@media (max-width: 992px) {
    .brand-item {
        flex: 0 0 calc((100% - 60px) / 3);
        min-width: calc((100% - 60px) / 3);
    }
}

@media (max-width: 768px) {
    .brand-item {
        flex: 0 0 calc((100% - 30px) / 2);
        min-width: calc((100% - 30px) / 2);
        padding: 20px;
    }
    
    .brand-item a {
        height: 60px;
    }
    
    .brand-item img {
        max-height: 45px;
    }
    
    .brands-nav {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .brands-carousel-wrapper {
        gap: 10px;
    }
    
    .brand-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* ========================================
   About Section - Modern Design
======================================== */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
}

.about-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

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

.about-experience-badge {
    position: absolute;
    bottom: 100px;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.35);
    z-index: 5;
}

.about-experience-badge .exp-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-text {
    display: block;
    font-size: 0.85rem;
    margin-top: 6px;
    opacity: 0.95;
    font-weight: 500;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-label svg {
    width: 16px;
    height: 16px;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
}

.about-content .about-lead {
    font-size: 0.95rem;
	color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-item .feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-item .feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-feature-item .feature-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-color);
}

.about-feature-item .feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.about-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.about-content .btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   CTA Banner Section
======================================== */
.cta-banner-section {
    padding: 0;
}

.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.9) 0%, rgba(0, 60, 120, 0.85) 100%);
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.cta-features {
    display: flex;
    gap: 30px;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.cta-feature svg {
    width: 40px;
    height: 40px;
    color: white;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-feature:hover svg {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cta-feature span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Services Section - Modern Design
======================================== */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-modern {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.services-header {
    position: sticky;
    top: 120px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-label svg {
    width: 16px;
    height: 16px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.services-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card-modern {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f7;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: height 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-modern:hover::before {
    height: 100%;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.service-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-card-modern p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.service-icon-float {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-icon-float svg {
    width: 24px;
    height: 24px;
}

.service-card-modern:hover .service-icon-float {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.contact-item .icon svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   Latest Products Carousel Section
======================================== */
.latest-products-section {
    background: #ffffff;
}

.section-header-modern {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.section-header-left {
    flex: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-label svg {
    width: 16px;
    height: 16px;
}

.section-header-modern h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
}

.section-header-modern.section-header-centered {
    justify-content: center;
    text-align: center;
}

.section-header-modern.section-header-centered h2 {
    width: 100%;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-primary svg {
    width: 18px;
    height: 18px;
}

.products-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.products-carousel {
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.product-card-carousel {
    flex: 0 0 calc(25% - 19px);
    min-width: calc(25% - 19px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.product-card-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card-carousel .product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-carousel .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    background: #f8f9fa;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card-carousel:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-view {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-view:hover {
    background: var(--primary-color);
    color: white;
}

.btn-view svg {
    width: 18px;
    height: 18px;
}

.product-card-carousel .product-info {
    padding: 15px 20px 20px;
    text-align: center;
    background: white;
}

.product-card-carousel .product-category {
    display: block;
    font-size: 10px;
    color: #888;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
}

.product-card-carousel .product-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.product-card-carousel .product-info h3 a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.product-card-carousel .product-info h3 a:hover {
    color: var(--primary-color);
}

.products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-color);
}

.products-nav:hover {
    background: var(--primary-color);
    color: white;
}

.products-nav svg {
    width: 22px;
    height: 22px;
}

.products-prev {
    left: 0;
}

.products-next {
    right: 0;
}

/* ========================================
   Contact Section
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: var(--bg-color);
}

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

/* ========================================
   Footer
======================================== */
.site-footer {
    background: #1a1a2e;
    color: #ccc;
}

.footer-main {
    padding: 60px 0;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-sub {
    color: #999;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-list .icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list .icon svg {
    width: 18px;
    height: 18px;
}

.contact-list a {
    color: #999;
}

.contact-list a:hover {
    color: white;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.875rem;
}

.footer-hours {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-hours span:first-child {
    font-weight: 600;
    color: white;
}

/* ========================================
   Modern Footer (Light Theme)
======================================== */
.site-footer-modern {
    background: #f8f9fa;
}

/* Pre-footer CTA */
.footer-cta {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 40px 0;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.footer-cta-text p {
    color: #666;
    margin: 0;
}

.footer-cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-footer-cta svg {
    width: 20px;
    height: 20px;
}

.btn-footer-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-footer-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-footer-secondary svg {
    width: 18px;
    height: 18px;
}

/* Main Footer */
.footer-main-modern {
    padding: 60px 0 40px;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-logo-modern {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-logo-modern .footer-logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.footer-logo-modern .footer-logo-img {
    display: block;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.footer-logo-modern .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.footer-logo-modern .logo-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
}

.footer-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social-modern {
    display: flex;
    gap: 10px;
}

.footer-social-modern a {
    width: 38px;
    height: 38px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.footer-social-modern a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-social-modern a svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.footer-col-modern h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 12px;
}

.footer-links-modern a {
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-modern a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.footer-contact-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.footer-contact-list a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom-modern {
    background: white;
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.footer-bottom-content-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content-modern p {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: #888;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 992px) {
    .header-contact {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-light);
        box-shadow: var(--shadow-lg);
        padding: 80px 24px 40px;
        transition: var(--transition);
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav .nav-menu > li > a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav .nav-menu > li.has-dropdown > a {
        padding-right: 40px;
    }

    .main-nav .nav-menu > li.has-dropdown > a::before {
        right: 8px;
    }

    .main-nav .nav-menu > li.has-dropdown.is-open > a::before {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 10px 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.is-open > .dropdown-menu {
        max-height: 1200px;
    }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 0.95rem;
    }

    /* Page scroll lock while mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Lift the header above the backdrop while the drawer is open so the
       nav panel (which lives inside the header's stacking context) can stay
       visible and clickable on top of the dim layer. */
    body.mobile-menu-open .site-header {
        z-index: 1200;
    }

    /* Dim backdrop behind the mobile menu */
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1150;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        height: 400px;
    }
    
    .about-img-main {
        width: 70%;
        height: 300px;
    }
    
    .about-img-secondary {
        width: 60%;
        height: 220px;
    }
    
    .about-experience-badge {
        bottom: 60px;
        padding: 18px 25px;
    }
    
    .about-experience-badge .exp-number {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-features-modern {
        grid-template-columns: 1fr;
    }
    
    .services-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-header {
        position: static;
        text-align: center;
    }
    
    .services-header h2 {
        font-size: 1.75rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .section-header-modern {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .section-header-modern h2 {
        font-size: 1.75rem;
    }
    
    .products-carousel-wrapper {
        padding: 0 40px;
    }
    
    .product-card-carousel {
        flex: 0 0 calc(50% - 13px);
        min-width: calc(50% - 13px);
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* Modern Footer Responsive */
    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social-modern {
        justify-content: center;
    }

    /* Center whole footer bottom on tablet & mobile */
    .footer-bottom-content-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-hours {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Breadcrumb
======================================== */
.breadcrumb-section {
    background: var(--bg-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-color);
    font-weight: 500;
}

/* ========================================
   Category Header
======================================== */
.category-header {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.category-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.category-header-image {
    width: 140px;
    height: 105px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.category-header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.category-header-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-header-info p {
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.6;
}

.category-header-info .product-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   Subcategories Section
======================================== */
.subcategories-section {
    padding: 50px 0;
    background: var(--bg-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Products section toolbar (başlık + marka filtresi) */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.products-toolbar .products-toolbar-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.products-toolbar .toolbar-brand-chip {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--primary-color, #5b3cc4);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.3px;
}
.products-toolbar-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.products-toolbar-filter .brand-filter-select {
    min-width: 220px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 0.95rem;
    color: var(--text-color, #1f2937);
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.products-toolbar-filter .brand-filter-select:hover,
.products-toolbar-filter .brand-filter-select:focus {
    border-color: var(--primary-color, #5b3cc4);
    box-shadow: 0 0 0 3px rgba(91, 60, 196, 0.12);
    outline: none;
}
.products-toolbar-filter .brand-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.products-toolbar-filter .brand-filter-clear:hover {
    background: #ef4444;
    color: #fff;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media (max-width: 640px) {
    .products-toolbar { flex-direction: column; align-items: stretch; }
    .products-toolbar-filter { width: 100%; }
    .products-toolbar-filter .brand-filter-select { flex: 1; min-width: 0; }

    /* Modern Footer: single column + fully centered on small screens */
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-col-modern {
        text-align: center;
    }

    .footer-col-modern h4 {
        text-align: center;
    }

    .footer-links-modern {
        align-items: center;
    }

    .footer-links-modern li {
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: left;
    }

    .footer-contact-list {
        align-items: center;
    }

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

    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .footer-cta-actions .btn-footer-cta,
    .footer-cta-actions .btn-footer-secondary {
        justify-content: center;
    }
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.subcategory-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.subcategory-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.subcategory-image {
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.subcategory-image .placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.subcategory-info {
    padding: 20px;
}

.subcategory-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.subcategory-info .count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Products Section
======================================== */
.products-section {
    padding: 50px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card-featured {
    border: 1px solid rgba(0, 102, 204, 0.35);
    box-shadow: 0 6px 22px rgba(0, 102, 204, 0.14);
}

.products-featured-heading,
.products-rest-heading {
    margin-top: 0;
    margin-bottom: 1rem;
}

.products-rest-heading {
    margin-top: 2rem;
}

.product-image {
    aspect-ratio: 4/3;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    padding: 15px;
    background: #f8f9fa;
}

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

.product-image .placeholder-icon {
    font-size: 3rem;
    color: var(--text-muted);
}

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

.product-brand {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.view-details {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.product-card:hover .view-details {
    color: var(--primary-dark);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

/* ========================================
   Category Page Responsive
======================================== */
@media (max-width: 768px) {
    .category-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .category-header-info h1 {
        font-size: 1.5rem;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .subcategory-image {
        height: 100px;
    }

    .subcategory-info {
        padding: 14px 12px;
    }

    .subcategory-info h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .subcategory-info .count {
        font-size: 0.78rem;
    }
}

/* ========================================
   Product Detail Page - Modern Design
======================================== */
.product-detail-section {
    padding: 60px 0;
    background: var(--bg-color);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

/* Modern Gallery */
.product-gallery-modern {
    position: sticky;
    top: 100px;
}

.gallery-main {
    margin-bottom: 20px;
}

.main-image-wrapper {
    position: relative;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s ease;
}

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

.zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    color: var(--text-color);
}

.zoom-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.no-image-placeholder span {
    font-size: 0.9rem;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    min-height: 24px;
    margin-top: 10px;
}

.gallery-thumbs-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    background: var(--bg-color);
    padding: 0;
    transition: var(--transition);
    position: relative;
}

.thumb-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 102, 204, 0);
    transition: var(--transition);
}

.thumb-item:hover::after {
    background: rgba(0, 102, 204, 0.1);
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modern Product Info */
.product-info-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    padding: 8px 16px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    border: 1px solid rgba(0, 102, 204, 0.2);
    transition: var(--transition);
}

.brand-badge:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.product-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-category svg {
    color: var(--text-muted);
}

.product-category a {
    color: var(--text-light);
}

.product-category a:hover {
    color: var(--primary-color);
}

.product-excerpt {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.product-excerpt p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Modern Actions */
.product-actions-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-download-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-download-pdf:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.05);
}

/* Share Section */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-share > span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-color);
    color: var(--text-light);
}

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

.share-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.share-btn.email:hover {
    background: var(--primary-color);
    color: white;
}

.share-btn.copy:hover {
    background: var(--text-color);
    color: white;
}

/* Product Tabs */
.product-tabs {
    margin-top: 50px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tabs-header {
    display: flex;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 18px 25px;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-color);
    background: rgba(0, 102, 204, 0.03);
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tabs-content {
    padding: 35px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.description-content,
.features-content {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.description-content p,
.features-content p {
    margin-bottom: 15px;
}

/* ============================================
   Rich text (TinyMCE output) typography
   ============================================ */
.rich-text h2,
.rich-text h3,
.rich-text h4 {
    color: var(--text-color, #0f172a);
    margin: 24px 0 12px;
    line-height: 1.35;
    font-weight: 700;
}

.rich-text h2 { font-size: 1.45rem; }
.rich-text h3 { font-size: 1.2rem; }
.rich-text h4 { font-size: 1.05rem; }

.rich-text ul,
.rich-text ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.rich-text ul li,
.rich-text ol li {
    margin-bottom: 6px;
}

.rich-text a {
    color: var(--primary-color, #2563eb);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color 0.2s ease;
}

.rich-text a:hover {
    color: var(--primary-hover, #1d4ed8);
}

.rich-text strong,
.rich-text b {
    font-weight: 700;
    color: var(--text-color, #0f172a);
}

.rich-text em,
.rich-text i {
    font-style: italic;
}

.rich-text blockquote {
    border-left: 4px solid var(--primary-color, #2563eb);
    background: #f8fafc;
    padding: 14px 20px;
    margin: 16px 0;
    color: #334155;
    border-radius: 0 8px 8px 0;
}

.rich-text hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}

.rich-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.95rem;
}

.rich-text table th,
.rich-text table td {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}

.rich-text table th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
}

.no-content {
    color: var(--text-muted);
    font-style: italic;
}

/* Related Products */
.related-products-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.related-products-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Product Detail Responsive */
@media (max-width: 992px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .product-gallery-modern {
        position: static;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 30px 0;
    }
    
    .product-detail-wrapper {
        padding: 20px;
        gap: 30px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .thumb-item {
        width: 65px;
        height: 65px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }
    
    .tab-btn:last-child {
        border-bottom: none;
    }
    
    .tab-btn::after {
        left: 0;
        right: auto;
        width: 4px;
        height: 100%;
        top: 0;
        bottom: 0;
        transform: scaleY(0);
    }
    
    .tab-btn.active::after {
        transform: scaleY(1);
    }
    
    .tabs-content {
        padding: 25px;
    }
}

/* ========================================
   Products List Page - Gorgeous Design
======================================== */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header-section .container {
    position: relative;
    z-index: 1;
}

.page-header-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.page-header-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-section .product-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.products-page-section {
    padding: 60px 0;
    background: var(--bg-color);
}

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

/* Sidebar */
.products-sidebar {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
    scrollbar-gutter: stable;
}

/* Subtle scrollbar on desktop */
.products-sidebar::-webkit-scrollbar {
    width: 8px;
}
.products-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.products-sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.products-sidebar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Drawer header + close button + FAB are hidden on desktop */
.products-sidebar-header,
.products-sidebar-close,
.filter-drawer-fab,
.filter-drawer-backdrop {
    display: none;
}

/* Mobile: transform sidebar into a left-slide drawer */
@media (max-width: 992px) {
    /* Floating action button (bottom-left) */
    .filter-drawer-fab {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: fixed;
        left: 16px;
        bottom: 20px;
        z-index: 1100;
        background: var(--primary-color, #2563eb);
        color: #fff;
        border: 0;
        border-radius: 999px;
        padding: 12px 18px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), 0 2px 6px rgba(15, 23, 42, 0.15);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .filter-drawer-fab:hover,
    .filter-drawer-fab:active {
        transform: translateY(-2px);
        background: var(--primary-hover, #1d4ed8);
    }

    .filter-drawer-fab svg {
        width: 18px;
        height: 18px;
    }

    /* Hide FAB while drawer is open so it doesn't overlap the panel */
    body.filter-drawer-open .filter-drawer-fab {
        opacity: 0;
        pointer-events: none;
    }

    /* Drawer itself */
    .products-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        background: var(--bg-light, #fff);
        box-shadow: 4px 0 24px rgba(15, 23, 42, 0.15);
        transform: translateX(-105%);
        transition: transform 0.3s ease;
        z-index: 1101;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 0 20px 30px;
        scrollbar-gutter: auto;
    }

    .products-sidebar.is-open {
        transform: translateX(0);
    }

    .products-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: var(--bg-light, #fff);
        padding: 16px 0;
        margin-bottom: 16px;
        border-bottom: 1px solid var(--border-color, #e5e7eb);
        z-index: 2;
    }

    .products-sidebar-title {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-color, #0f172a);
    }

    .products-sidebar-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f1f5f9;
        border: 0;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        color: #475569;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .products-sidebar-close:hover {
        background: #e2e8f0;
        color: #0f172a;
    }

    .products-sidebar-close svg {
        width: 20px;
        height: 20px;
    }

    /* Backdrop */
    .filter-drawer-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1100;
    }

    .filter-drawer-backdrop.is-open {
        opacity: 1;
        visibility: visible;
    }

    /* Lock page scroll when drawer is open */
    body.filter-drawer-open {
        overflow: hidden;
    }

    /* Tighter widget spacing inside drawer */
    .products-sidebar .sidebar-widget {
        margin-bottom: 16px;
        padding: 16px;
    }
}

.sidebar-widget {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget h3 svg {
    color: var(--primary-color);
}

/* Sidebar Search Form */
.sidebar-search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.sidebar-search-form input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.sidebar-search-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.sidebar-search-form button {
    width: 100%;
    padding: 12px 14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-search-form button:hover {
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.filter-list li {
    margin-bottom: 6px;
}

.filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.filter-list a:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    border-color: var(--border-color);
}

.filter-list a.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.filter-list .count {
    font-size: 0.75rem;
    background: var(--bg-color);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--text-muted);
}

.filter-list a.active .count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Products Main */
.products-main {
    min-height: 400px;
}

/* Products Grid - 3 columns */
.products-main .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Enhanced Product Card for Products Page */
.products-main .product-card {
    border: 1px solid var(--border-color);
}

.products-main .product-card:hover {
    border-color: var(--primary-color);
}

.products-main .product-image {
    aspect-ratio: 1/1;
}

.products-main .product-info {
    padding: 22px;
}

.products-main .product-info h3 {
    font-size: 1.05rem;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-main .product-info p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.products-main .view-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-color);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.products-main .product-card:hover .view-details {
    background: var(--primary-color);
    color: white;
}

/* Products Page Responsive */
@media (max-width: 1200px) {
    .products-main .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-header-section {
        padding: 50px 0;
    }
    
    .page-header-section h1 {
        font-size: 2rem;
    }
    
    .products-page-grid {
        grid-template-columns: 1fr;
    }
    
    .products-main .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-main .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-main .product-image {
        aspect-ratio: 1/1;
    }
    
    .products-main .product-image img {
        padding: 10px;
    }
    
    .products-main .product-info {
        padding: 15px;
    }
    
    .products-main .product-info h3 {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .products-main .product-info p {
        display: none;
    }
    
    .products-main .product-brand {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .products-main .view-details {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .page-header-section h1 {
        font-size: 1.6rem;
    }
    
    .page-header-section p {
        font-size: 0.95rem;
    }
}

/* ========================================
   Page Banner
======================================== */
.page-banner {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 35, 69, 0.85) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-banner-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.page-banner .breadcrumb a:hover {
    color: white;
}

.page-banner .breadcrumb svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* ========================================
   Contact Page
======================================== */
.contact-page-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-card-content a {
    color: #666;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.contact-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-form-header p {
    color: #666;
    margin: 0;
}

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

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group:not(.form-row .form-group) {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1rem;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.map-section {
    background: #f8f9fa;
}

.map-wrapper {
    border-radius: 0;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
}

/* ========================================
   About Page
======================================== */
.about-page-section {
    padding: 80px 0;
}

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

.about-page-images {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.about-experience-box {
    position: absolute;
    bottom: 80px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
    z-index: 3;
}

.about-experience-box .exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-box .exp-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-tag svg {
    width: 16px;
    height: 16px;
}

.about-page-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-page-content .lead-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-page-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.highlight-text p {
    margin: 0;
    font-size: 0.9rem;
}

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

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 40px;
}

.story-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-top: 10px;
}

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

.story-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

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

.story-features {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.story-feature:last-child {
    border-bottom: none;
}

.story-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.story-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-header h2 {
        font-size: 1.75rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-top: 10px;
}

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

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

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-icon svg {
    color: white;
}

.feature-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 35, 69, 0.9) 100%);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: white;
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.about-cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .page-banner {
        height: 280px;
    }
    
    .page-banner-content h1 {
        font-size: 2.25rem;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-wrapper {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner-content h1 {
        font-size: 1.75rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .about-page-content h2 {
        font-size: 1.75rem;
    }
    
    .section-header-center h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   Services Page
======================================== */
.services-intro-section {
    padding: 80px 0 40px;
    background: white;
}

.services-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 15px 0 20px;
}

.services-intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.services-grid-section {
    padding: 40px 0 80px;
    background: white;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-page-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-page-card:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-page-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 102, 204, 0.1);
    line-height: 1;
}

.service-page-card:hover .service-page-number {
    color: rgba(0, 102, 204, 0.2);
}

.service-page-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-page-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-page-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-page-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Services Features Section */
.services-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.services-features-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 15px 0 20px;
}

.services-features-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.services-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.services-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-feature-check {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-feature-check svg {
    width: 16px;
    height: 16px;
    color: white;
}

.services-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.services-features-image {
    position: relative;
}

.services-features-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.services-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.services-experience-badge .exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.services-experience-badge .exp-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

/* Services CTA Section */
.services-cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 35, 69, 0.9) 100%);
}

.services-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.services-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-white svg {
    width: 20px;
    height: 20px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
}

.btn-outline-white svg {
    width: 18px;
    height: 18px;
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    
    .services-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-features-image {
        order: -1;
    }
    
    .services-experience-badge {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .services-intro-content h2 {
        font-size: 1.75rem;
    }
    
    .service-page-card {
        padding: 30px;
    }
    
    .service-page-number {
        font-size: 2rem;
        top: 20px;
        right: 20px;
    }
    
    .services-features-list {
        grid-template-columns: 1fr;
    }
    
    .services-features-image img {
        height: 350px;
    }
    
    .services-cta-content h2 {
        font-size: 1.75rem;
    }
}

/* ========================================
   Documents Page
======================================== */
.documents-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.documents-banner-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.documents-banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.documents-search-box {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 60px;
    padding: 8px 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.documents-search-box svg {
    width: 24px;
    height: 24px;
    color: #999;
    flex-shrink: 0;
}

.documents-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 15px 20px;
    background: transparent;
}

.documents-search-box input::placeholder {
    color: #aaa;
}

.documents-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.documents-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.documents-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
}

.documents-count {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.document-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.document-card.hidden {
    display: none;
}

.document-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.document-card-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.document-card-content {
    flex: 1;
    margin-bottom: 15px;
}

.document-title-link {
    display: block;
    text-decoration: none;
}

.document-title-link:hover .document-title {
    color: var(--primary-color);
}

.document-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.document-brand {
    display: inline-block;
    background: var(--bg-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 5px;
}

.document-category {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.document-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.document-download-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.document-download-btn svg {
    width: 18px;
    height: 18px;
}

.no-documents,
.no-results-message {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-documents svg,
.no-results-message svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-documents p,
.no-results-message p {
    font-size: 1.1rem;
}

/* Documents Page Responsive */
@media (max-width: 1200px) {
    .documents-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .documents-banner-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-banner {
        padding: 60px 0;
    }
    
    .documents-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-banner-content h1 {
        font-size: 1.75rem;
    }
}

/* ========================================
   Pagination
======================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-color);
    border: 1px solid #e0e0e0;
}

.pagination-btn:hover,
.pagination-num:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-num.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn svg {
    width: 20px;
    height: 20px;
}

.pagination-dots {
    color: #999;
    padding: 0 5px;
}

@media (max-width: 576px) {
    .pagination {
        gap: 5px;
    }
    
    .pagination-btn,
    .pagination-num {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 0.85rem;
    }
}

/* ========================================
   Related Products Carousel
======================================== */
.related-products-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.related-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.related-products-header .section-title {
    margin-bottom: 0;
}

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

.related-products-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.related-products-nav button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.related-products-nav button svg {
    width: 20px;
    height: 20px;
}

.related-products-carousel {
    overflow: hidden;
}

.related-products-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.related-product-card {
    flex: 0 0 calc(25% - 15px);
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.related-product-card .product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-color);
}

.related-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

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

.related-product-card .product-info {
    padding: 20px;
}

.related-product-card .product-brand {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.related-product-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-card .view-details {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Related Products Responsive */
@media (max-width: 992px) {
    .related-product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .related-product-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .related-products-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .related-product-card {
        flex: 0 0 calc(100% - 0px);
    }
}

/* ============================================
   Expandable Text (Read more / Show less)
   ============================================ */
.expandable-text {
    display: inline;
}

.expandable-text-toggle {
    background: none;
    border: 0;
    padding: 0;
    margin-left: 4px;
    color: #5f5f5f;
    font: inherit;
    font-weight: 400;
	font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    line-height: inherit;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.expandable-text-toggle:hover,
.expandable-text-toggle:focus {
    color: var(--primary-hover, #1d4ed8);
    border-bottom-color: transparent;
    outline: none;
}

.expandable-text.is-expanded .expandable-text-ellipsis {
    display: none;
}

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */
.legal-page-section {
    padding: 70px 0 90px;
    background: #f8fafc;
}

.legal-page {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 50px 55px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    color: #334155;
    line-height: 1.75;
    font-size: 1rem;
}

.legal-page .legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin: 0 0 28px;
}

.legal-page .legal-updated svg,
.legal-page .legal-updated [data-lucide] {
    width: 16px;
    height: 16px;
}

.legal-page .legal-lead {
    font-size: 1.08rem;
    color: #1f2937;
    background: #f8fafc;
    border-left: 4px solid var(--primary-color, #2563eb);
    padding: 18px 22px;
    border-radius: 8px;
    margin: 0 0 36px;
}

.legal-page h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 38px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-page h2:first-of-type {
    margin-top: 8px;
}

.legal-page p {
    margin: 0 0 16px;
}

.legal-page ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.legal-page ul li {
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color, #2563eb);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color 0.2s ease;
}

.legal-page a:hover {
    border-bottom-color: currentColor;
}

.legal-page strong {
    color: #0f172a;
}

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

    .legal-page {
        padding: 32px 22px;
        border-radius: 12px;
    }

    .legal-page h2 {
        font-size: 1.2rem;
    }

    .legal-page .legal-lead {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

/* CMS homepage contact HTML blocks */
.contact-details .cms-html {
    font-size: inherit;
    line-height: 1.55;
    color: inherit;
}
.contact-details .cms-html p:last-child {
    margin-bottom: 0;
}
