/* ========================================
   Ada Otomatik Kapı - Premium Style
   Nice ve Isodoor Yetkili Bayisi - Malatya
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Premium & Professional */
    --primary: #1a365d;
    --primary-dark: #0f2444;
    --primary-light: #2c5282;
    --secondary: #d69e2e;
    --secondary-light: #ecc94b;
    --secondary-dark: #b7791f;
    
    /* Brand Colors */
    --nice-primary: #00447c;
    --nice-secondary: #e31937;
    --isodoor-primary: #d69e2e;
    --isodoor-secondary: #b7791f;
    
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    --text-dark: #1a202c;
    --text-body: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --bg-dark: #1a202c;
    
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing */
    --section-padding: 80px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

main {
    min-height: 60vh;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--secondary);
}

.top-bar-right {
    color: var(--secondary);
    font-weight: 500;
}

/* Brand Badges in Top Bar */
.brand-badges {
    display: flex;
    gap: 10px;
}

.brand-badge {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.brand-badge.nice {
    background: var(--nice-primary);
    color: white;
}

.brand-badge.isodoor {
    background: var(--isodoor-primary);
    color: white;
}

/* ========================================
   Header
   ======================================== */
.header {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 16px;
    color: var(--text-body);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    padding: 10px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-body);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

/* Dropdown Header & Footer */
.dropdown-header {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 5px;
}

.dropdown-header strong {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-footer {
    border-top: 1px solid var(--border-light);
    margin-top: 5px;
    padding-top: 5px;
}

.dropdown-all {
    color: var(--primary) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-all i {
    font-size: 10px;
    transition: var(--transition);
}

.dropdown-all:hover i {
    transform: translateX(3px);
}

/* Header CTA */
.header-cta {
    background: var(--whatsapp);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-cta i {
    font-size: 18px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn i {
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-sm i {
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.niceforyou.com/sites/default/files/styles/max_width_1200/public/2023-05/nice-automation-range.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badge.nice {
    background: var(--nice-primary);
}

.hero-badge.isodoor {
    background: var(--isodoor-primary);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--secondary-light);
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-light);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--section-padding) 0;
}

.bg-light {
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Brands Section - New Design
   ======================================== */
.brands-section-new {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.brand-showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.brand-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.brand-showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.brand-showcase-card.nice .brand-showcase-bg {
    background: linear-gradient(145deg, #00447c 0%, #002d52 50%, #001a33 100%);
}

.brand-showcase-card.isodoor .brand-showcase-bg {
    background: linear-gradient(145deg, #d69e2e 0%, #b7791f 50%, #8b5a1b 100%);
}

.brand-showcase-card::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.03'%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");
    z-index: 1;
}

.brand-showcase-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: white;
}

.brand-showcase-badge {
    align-self: flex-start;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-showcase-logo {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 16px;
    display: inline-flex;
    align-self: flex-start;
}

.brand-showcase-card.nice .brand-showcase-logo {
    background: rgba(255,255,255,0.1);
}

.brand-showcase-logo.isodoor-logo {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.brand-showcase-logo img {
    height: 45px;
    width: auto;
}

.brand-showcase-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.brand-showcase-content p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 25px;
}

.brand-showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-showcase-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    background: rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 8px;
}

.brand-showcase-features li i {
    font-size: 14px;
}

.brand-showcase-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.brand-showcase-card.nice .brand-showcase-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.brand-showcase-card.nice:hover .brand-showcase-btn {
    background: white;
    color: var(--nice-primary);
}

.brand-showcase-card.isodoor .brand-showcase-btn {
    background: rgba(255,255,255,0.2);
    color: white;
}

.brand-showcase-card.isodoor:hover .brand-showcase-btn {
    background: white;
    color: var(--isodoor-secondary);
}

.brand-showcase-btn i {
    transition: transform 0.3s ease;
}

.brand-showcase-card:hover .brand-showcase-btn i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .brands-showcase {
        grid-template-columns: 1fr;
    }
    
    .brand-showcase-card {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .brands-section-new {
        padding: 50px 0;
    }
    
    .brand-showcase-content {
        padding: 25px;
    }
    
    .brand-showcase-content h3 {
        font-size: 20px;
    }
    
    .brand-showcase-features {
        gap: 8px;
    }
    
    .brand-showcase-features li {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ========================================
   Brands Section - Old (keeping for compatibility)
   ======================================== */
.brands-section {
    background: var(--bg-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.brand-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.brand-card.nice {
    border-color: var(--nice-primary);
}

.brand-card.nice:hover {
    border-color: var(--nice-secondary);
}

.brand-card.isodoor {
    border-color: var(--isodoor-primary);
}

.brand-card.isodoor:hover {
    border-color: var(--isodoor-secondary);
}

.brand-card-header {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-light);
    position: relative;
}

.brand-card.nice .brand-card-header {
    background: linear-gradient(135deg, rgba(0, 68, 124, 0.05) 0%, rgba(227, 25, 55, 0.05) 100%);
}

.brand-card.isodoor .brand-card-header {
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.05) 0%, rgba(45, 138, 45, 0.05) 100%);
}

.brand-card .brand-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.brand-name-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.authorized-label {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-card.nice .authorized-label {
    background: var(--nice-primary);
    color: white;
}

.brand-card.isodoor .authorized-label {
    background: var(--isodoor-primary);
    color: white;
}

.brand-card-body {
    padding: 25px 30px;
    flex: 1;
}

.brand-card-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.brand-card-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-categories {
    list-style: none;
}

.brand-categories li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-body);
}

.brand-categories li i {
    color: var(--whatsapp);
    font-size: 12px;
}

.brand-categories li.more {
    color: var(--text-muted);
    font-style: italic;
}

.brand-card-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.view-products {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-card.nice .view-products {
    color: var(--nice-primary);
}

.brand-card.isodoor .view-products {
    color: var(--isodoor-primary);
}

.view-products i {
    transition: var(--transition);
}

.brand-card:hover .view-products i {
    transform: translateX(5px);
}

/* ========================================
   Services Overview Section
   ======================================== */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-overview-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon-large i {
    font-size: 32px;
    color: white;
}

.service-overview-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-overview-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-overview-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.service-overview-card a:hover {
    color: var(--primary-dark);
}

/* ========================================
   Brand Page Header
   ======================================== */
.brand-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
}

.brand-header.nice {
    background: linear-gradient(135deg, var(--nice-primary) 0%, #002d52 100%);
}

/* Isodoor header CSS sonunda tanımlandı - altın/sarı tema */

.brand-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.brand-header-text {
    flex: 1;
}

.brand-logo-large {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.brand-header-text h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
}

.brand-header-text p {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 20px;
}

.brand-website {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.8;
    font-size: 14px;
}

.brand-website:hover {
    opacity: 1;
}

.brand-header-badge {
    text-align: center;
}

.authorized-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
}

.authorized-badge i {
    font-size: 24px;
    color: var(--secondary-light);
}

/* Brand Services */
.brand-services {
    background: var(--bg-white);
}

/* ========================================
   Brands About Section
   ======================================== */
.brands-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.brand-about-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-about-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-about-logo img {
    max-height: 50px;
    width: auto;
}

.brand-about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.brand-about-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .brands-about-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: var(--bg-white);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ========================================
   Categories Section
   ======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.categories-grid.large {
    grid-template-columns: repeat(2, 1fr);
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card.large {
    display: flex;
    flex-direction: row;
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-card.large .category-image {
    width: 40%;
    height: auto;
    min-height: 250px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-image .product-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.category-content {
    padding: 25px;
}

.category-card.large .category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.category-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link i {
    transition: var(--transition);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* Category Mini Card */
.category-card-mini {
    text-align: center;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card-mini .category-image {
    height: 120px;
    margin-bottom: 15px;
    border-radius: var(--radius);
}

.category-card-mini h4 {
    font-size: 14px;
    color: var(--text-dark);
}

.categories-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ========================================
   Products Section
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.featured-badge.large {
    padding: 8px 16px;
    font-size: 13px;
}

/* Product Brand Badge */
.product-brand {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-brand.nice {
    background: var(--nice-primary);
}

.product-brand.isodoor {
    background: var(--isodoor-primary);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-content h3 a {
    color: var(--text-dark);
}

.product-content h3 a:hover {
    color: var(--primary);
}

.product-content > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.product-price {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   Product Detail Page
   ======================================== */
.product-detail {
    padding-top: 40px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.product-detail-image .main-image {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: zoom-in;
}

.product-detail-image .main-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-zoom-hint {
    text-align: center;
    padding: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.product-detail-info {
    padding-top: 20px;
}

.product-category-badge {
    display: inline-block;
    margin-bottom: 15px;
}

.product-category-badge a {
    background: var(--bg-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
}

.product-category-badge a:hover {
    background: var(--primary);
    color: white;
}

.product-detail-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-short-desc {
    font-size: 17px;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-tags-detail .tag {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    font-size: 12px;
}

.product-price-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-size: 14px;
}

.product-features .feature i {
    color: var(--whatsapp);
    font-size: 16px;
}

.product-description {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.product-description h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.description-content {
    color: var(--text-body);
    line-height: 1.8;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary);
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-us-content p {
    color: var(--text-body);
    margin-bottom: 25px;
    line-height: 1.7;
}

.why-us-list {
    margin-bottom: 30px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-body);
}

.why-us-list li i {
    color: var(--whatsapp);
    font-size: 18px;
}

.why-us-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ========================================
   Category Header
   ======================================== */
.category-header {
    background: var(--bg-light);
    padding: 50px 0;
}

.category-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.category-header-text {
    flex: 1;
}

.category-header-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.category-header-text p {
    color: var(--text-body);
    font-size: 17px;
    margin-bottom: 20px;
}

.product-count-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
}

.category-header-image {
    width: 300px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.category-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
}

.no-products i {
    font-size: 60px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.no-products p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Other Categories */
.other-categories {
    background: var(--bg-light);
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========================================
   About Page
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-lg);
}

.highlight i {
    font-size: 24px;
    color: var(--primary);
}

.highlight strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.highlight span {
    font-size: 13px;
    color: var(--text-muted);
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-gray);
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Brand Section */
.brand-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.brand-logo {
    flex-shrink: 0;
}

.brand-logo img {
    width: 200px;
}

.brand-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.brand-text p {
    color: var(--text-body);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-body);
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-card.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-icon {
    background: var(--whatsapp);
}

.contact-icon i {
    font-size: 20px;
    color: white;
}

.contact-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-text span {
    display: block;
    color: var(--text-body);
    font-size: 15px;
}

.contact-text small {
    font-size: 12px;
    color: var(--text-muted);
}

/* Working Hours */
.working-hours h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours h3 i {
    color: var(--primary);
}

.working-hours ul {
    margin-bottom: 20px;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.working-hours li span {
    color: var(--text-muted);
}

.working-hours li strong {
    color: var(--text-dark);
}

.working-hours .note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    padding: 15px;
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-body);
}

.working-hours .note i {
    color: var(--whatsapp);
    margin-top: 2px;
}

/* Quick Contact Box */
.quick-contact-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.quick-contact-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quick-contact-box > p {
    color: var(--text-body);
    margin-bottom: 30px;
}

.whatsapp-cta {
    background: rgba(37, 211, 102, 0.1);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
}

.whatsapp-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.whatsapp-info i {
    font-size: 40px;
    color: var(--whatsapp);
}

.whatsapp-info strong {
    display: block;
    color: var(--text-dark);
}

.whatsapp-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    background: var(--bg-white);
    padding: 0 15px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

/* Service Area */
.service-area {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.service-area h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.area-tag {
    background: var(--bg-light);
    color: var(--text-body);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
}

.area-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* Map */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary);
    margin-top: 3px;
}

.faq-item p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 26px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Brands */
.footer-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand {
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.footer-brand.nice {
    background: var(--nice-primary);
}

.footer-brand.isodoor {
    background: var(--isodoor-primary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 18px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a.view-all {
    color: var(--secondary);
    font-weight: 600;
}

.footer-links a.view-all:hover {
    color: var(--secondary-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nice-logo {
    height: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand-logo {
    height: 22px;
    filter: brightness(0) invert(1);
}

.footer-brand-logo.isodoor {
    height: 20px;
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 30px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-dark);
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    /* Top Bar */
    .top-bar {
        display: none;
    }
    
    /* Header */
    .header-content {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 20px;
        order: 3;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .nav-dropdown .dropdown-menu.active {
        display: block;
    }
    
    .header-cta {
        order: 2;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    /* Features */
    .features {
        margin-top: -40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        display: flex;
        text-align: left;
        gap: 20px;
        padding: 20px;
    }
    
    .feature-icon {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    /* Categories */
    .categories-grid,
    .categories-grid.large {
        grid-template-columns: 1fr;
    }
    
    .category-card.large {
        flex-direction: column;
    }
    
    .category-card.large .category-image {
        width: 100%;
        min-height: 200px;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Product Detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-info h1 {
        font-size: 26px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    /* Why Us */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-image {
        order: -1;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    
    /* Brand Header */
    .brand-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-header-text h1 {
        font-size: 32px;
    }
    
    /* Top Bar Badges */
    .brand-badges {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .brand-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Category Header */
    .category-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .category-header-image {
        width: 100%;
        height: 200px;
    }
    
    /* Categories Slider */
    .categories-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-slider {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-box {
        padding: 25px;
    }
    
    .product-description {
        padding: 25px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* ========================================
   Isodoor Hizmet Sayfası Stilleri
   ======================================== */

/* Isodoor Intro Section */
.isodoor-intro {
    padding: 60px 0;
    background: var(--bg-light);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.intro-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--isodoor-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-icon i {
    font-size: 48px;
    color: white;
}

.intro-text h2 {
    font-size: 28px;
    color: var(--isodoor-primary);
    margin-bottom: 15px;
}

.intro-text p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Grid Large */
.services-section {
    padding: var(--section-padding) 0;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-large {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-large .service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-large .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-large:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.service-badge {
    background: var(--secondary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-badge i {
    margin-right: 5px;
}

.service-card-large .service-content {
    padding: 25px;
}

.service-card-large .service-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-large .service-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Why Us Section (Marka sayfası için) */
.why-us-section {
    padding: var(--section-padding) 0;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: white;
}

.why-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
}

/* Responsive Isodoor Styles */
@media (max-width: 992px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-contact {
        justify-content: center;
    }
    
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-large {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   Isodoor Brand Header - Altın/Sarı Tema
   ======================================== */
.brand-header.isodoor {
    background: linear-gradient(135deg, var(--isodoor-primary) 0%, var(--isodoor-secondary) 100%);
}

.brand-header.isodoor .authorized-badge {
    background: rgba(255,255,255,0.2);
}

/* Isodoor Service Card Styling */
.isodoor-service-card .product-footer {
    justify-content: space-between;
}

.service-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

.service-label i {
    margin-right: 5px;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: white;
}

/* Isodoor CTA */
.isodoor-cta {
    background: linear-gradient(135deg, var(--isodoor-primary) 0%, var(--isodoor-secondary) 100%);
}

/* ========================================
   Hizmet Detay Sayfası (hizmet.php)
   ======================================== */

/* Service Detail Header */
.service-detail-header {
    padding: 60px 0;
    background: var(--bg-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.service-badge-overlay span {
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.service-badge-overlay i {
    margin-right: 8px;
}

.service-detail-info .service-brand {
    margin-bottom: 15px;
}

.brand-mini-logo {
    height: 40px;
    width: auto;
}

.service-detail-info h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.service-features .feature i {
    color: var(--secondary);
    font-size: 18px;
}

.service-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Service Details Grid */
.service-details-section {
    padding: var(--section-padding) 0;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.detail-icon i {
    font-size: 28px;
    color: white;
}

.detail-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.detail-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: var(--section-padding) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--secondary);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Other Services Slider */
.other-services {
    padding: var(--section-padding) 0;
}

.services-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.service-card-mini {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
}

.service-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-mini-image {
    height: 120px;
    overflow: hidden;
}

.service-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-mini:hover .service-mini-image img {
    transform: scale(1.05);
}

.service-card-mini h4 {
    padding: 15px;
    font-size: 14px;
    color: var(--text-dark);
    text-align: center;
}

/* Responsive Service Detail */
@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-details-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .service-detail-info h1 {
        font-size: 28px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-details-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-contact-buttons {
        flex-direction: column;
    }
}

/* ========================================
   Kapsamlı Mobile Responsive Düzenlemeler
   ======================================== */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    /* Genel */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Header */
    .header-content {
        flex-wrap: wrap;
    }
    
    .header-cta {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .nav-dropdown .dropdown-menu.active {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card h3 {
        font-size: 14px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    /* Brands */
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card .product-content h3 {
        font-size: 14px;
    }
    
    .product-card .product-content p {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    /* Brand Header */
    .brand-header {
        padding: 40px 0;
    }
    
    .brand-header h1 {
        font-size: 28px;
    }
    
    .brand-header p {
        font-size: 14px;
    }
    
    .brand-header-badge {
        margin-top: 20px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 24px;
    }
}

/* Mobil (576px ve altı) */
@media (max-width: 576px) {
    /* Genel */
    section {
        padding: 40px 0;
    }
    
    /* Top Bar */
    .top-bar {
        display: none;
    }
    
    /* Header */
    .logo-text {
        font-size: 24px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Brand Header */
    .brand-header h1 {
        font-size: 24px;
    }
    
    .authorized-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 22px;
    }
    
    /* Why Cards Grid */
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        padding: 20px;
    }
    
    /* Contact Info */
    .footer-contact li {
        font-size: 13px;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Product Footer */
    .product-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .product-footer .btn {
        width: 100%;
        justify-content: center;
    }
}
