/* ============================================
   RÜZGAR İNŞAAT - ANA CSS
   ============================================ */

:root {
    --primary: #1a1a2e;
    --primary-dark: #0f0f1e;
    --gold: #c9a84c;
    --gold-light: #e8c76a;
    --gold-dark: #a88730;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--primary-dark);
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 2px solid var(--gold);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar a {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); font-size: 12px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.logo img {
    height: 65px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.main-nav > ul > li.active > a {
    border-bottom: 2px solid var(--gold);
}

.main-nav > ul > li > a .fa-chevron-down {
    font-size: 10px;
    transition: var(--transition);
}

.main-nav > ul > li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 200;
}

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

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    font-size: 13.5px;
    color: var(--primary);
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.dropdown li a i:first-child { color: var(--gold); font-size: 12px; width: 14px; flex-shrink: 0; }

.dropdown li:last-child a { border-bottom: none; }

.dropdown li a:hover {
    color: var(--gold);
    background: var(--light);
    padding-left: 24px;
}

/* Dropdown footer link */
.dropdown-footer a {
    background: linear-gradient(135deg, var(--primary), #2a2a4a) !important;
    color: white !important;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif;
    justify-content: center !important;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 12px 18px !important;
}
.dropdown-footer a i { color: var(--gold) !important; }
.dropdown-footer a:hover { background: var(--primary-dark) !important; padding-left: 18px !important; }

/* 2. seviye dropdown (ürün listesi) */
.has-sub {
    position: relative;
}

.has-sub > a {
    justify-content: space-between !important;
}

.sub-arrow {
    font-size: 10px !important;
    margin-left: auto;
    color: #ccc !important;
    transition: var(--transition);
}

.has-sub:hover .sub-arrow { color: var(--gold) !important; }

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    min-width: 220px;
    max-width: 280px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: var(--transition);
    z-index: 300;
}

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

.sub-dropdown li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    color: var(--primary) !important;
    border-bottom: 1px solid #f0f0f0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-dropdown li a:hover {
    color: var(--gold) !important;
    background: var(--light) !important;
    padding-left: 20px !important;
}

/* Ürün küçük resim navigasyonda */
.nav-prod-thumb {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Sağa taşan dropdown'u sola aç */
.has-sub:last-child .sub-dropdown,
.has-sub:nth-last-child(2) .sub-dropdown {
    left: auto;
    right: 100%;
    transform: translateX(8px);
}
.has-sub:last-child:hover .sub-dropdown,
.has-sub:nth-last-child(2):hover .sub-dropdown {
    transform: translateX(0);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; z-index: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.4) 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px;
    z-index: 2;
}

.slide-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h2 {
    font-size: clamp(30px, 4vw, 56px);
    color: var(--white);
    margin-bottom: 16px;
    max-width: 700px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.slide.active .slide-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: clamp(15px, 1.8vw, 19px);
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    transition: background 0.3s, transform 0.8s ease 0.9s, opacity 0.8s ease 0.9s, box-shadow 0.3s;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 80px 0; }

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

.section-tag {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    color: var(--gold-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(201,168,76,0.3);
}

.section-header h2 {
    font-size: clamp(26px, 3vw, 40px);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ============================================
   STATS / SAYAÇLAR
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
}

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

.stat-item {
    text-align: center;
    color: white;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   HAKKIMIZDA (ANASAYFA)
   ============================================ */
.about-section { background: var(--white); }

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

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--primary);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-img-badge span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-img-badge small {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content { padding-left: 20px; }

.about-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content h2 span { color: var(--gold); }

.about-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.about-feature i {
    width: 32px;
    height: 32px;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
    color: var(--primary);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    padding: 13px 28px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ============================================
   ÜRÜNLER (ANASAYFA)
   ============================================ */
.products-preview { background: var(--light); }

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-img-wrap {
    overflow: hidden;
    height: 220px;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.product-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ============================================
   UYGULAMALAR (ANASAYFA)
   ============================================ */
.applications-preview { background: var(--white); }

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

.app-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.app-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.app-card:hover .app-card-overlay { opacity: 1; }

.app-card-overlay span {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

/* ============================================
   HAFRIYAT SECTION (ANASAYFA)
   ============================================ */
.hafriyat-preview {
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a4a 100%);
    position: relative;
    overflow: hidden;
}

.hafriyat-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/uploads/applications/uygulama-10.jpeg') center/cover;
    opacity: 0.15;
}

.hafriyat-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hafriyat-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.hafriyat-content h2 span { color: var(--gold); }

.hafriyat-content p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hafriyat-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.hafriyat-service {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

.hafriyat-service i {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.2);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hafriyat-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hafriyat-img-grid img {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hafriyat-img-grid img:first-child {
    grid-column: span 2;
    height: 240px;
}

/* ============================================
   NEDEN BİZ
   ============================================ */
.why-us { background: var(--light); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.why-icon i {
    font-size: 26px;
    color: var(--gold);
    transition: var(--transition);
}

.why-card:hover .why-icon i { color: var(--primary); }

.why-card h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    transform: translate(30%, 30%);
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
    transform: translate(-30%, -30%);
}

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

.page-banner h1 {
    font-size: clamp(28px, 4vw, 48px);
    color: white;
    margin-bottom: 12px;
}

.page-banner h1 span { color: var(--gold); }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ============================================
   KURUMSAL SAYFA
   ============================================ */
.corporate-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}

.corp-tab {
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.corp-tab:hover { color: var(--primary); }
.corp-tab.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

.corp-panel { display: none; }
.corp-panel.active { display: block; }

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

.corp-text h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.corp-text h3 span { color: var(--gold); }

.corp-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.corp-img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

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

.mv-card {
    background: var(--light);
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.mv-card .mv-icon {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-card .mv-icon i {
    font-size: 24px;
    color: var(--primary);
}

.mv-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* Sertifikalar */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.cert-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.cert-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.cert-card-body {
    padding: 14px 16px;
    text-align: center;
}

.cert-card-body span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   ÜRÜNLER SAYFASI
   ============================================ */
.products-page { background: var(--white); }

.cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.cat-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid var(--border);
    background: white;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.product-item-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-item-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-item-body {
    padding: 20px;
}

.product-item-body h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-item-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   UYGULAMALAR SAYFASI
   ============================================ */
.applications-page { background: var(--white); }

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.gallery-overlay span {
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom { transform: translate(-50%, -50%) scale(1); }

/* ============================================
   HAFRİYAT VE NAKLİYE SAYFASI
   ============================================ */
.hafriyat-page { background: white; }

.hafriyat-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.hafriyat-services-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */
.contact-page { background: white; }

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

.contact-info { }

.contact-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 18px;
    color: var(--gold);
}

.contact-info-text h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-info-text a:hover { color: var(--gold); }

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--primary);
    background: white;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Alert messages */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--primary-dark); }

.footer-top { padding: 70px 0 40px; }

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-col h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201,168,76,0.3);
}

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

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a i {
    font-size: 10px;
    color: var(--gold);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

.contact-list i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.contact-list a {
    color: rgba(255,255,255,0.6);
}

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

.working-hours {
    margin-bottom: 24px;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.working-hours li span:first-child { color: rgba(255,255,255,0.8); }

.btn-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.btn-footer-contact:hover {
    background: var(--gold-light);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP & SCROLL TOP
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
}

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

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover { background: var(--gold); color: var(--primary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-grid { gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
    .corp-content { gap: 30px; }
}

@media (max-width: 768px) {
    section { padding: 55px 0; }
    .topbar-left, .topbar-right { gap: 12px; font-size: 12px; }

    .mobile-toggle { display: flex; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .main-nav.open { max-height: 600px; overflow-y: auto; }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
    }

    .main-nav > ul > li > a {
        padding: 12px 20px;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 4px solid var(--gold);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.open .dropdown { max-height: 300px; }

    .dropdown li a { padding: 10px 30px; border-radius: 0; }

    .hero-slider { height: 65vh; }
    .slide-content { padding: 0 24px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-content { padding-left: 0; }
    .about-img-badge { right: 0; bottom: -15px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

    .hafriyat-inner { grid-template-columns: 1fr; }
    .hafriyat-img-grid { display: none; }

    .footer-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .corp-content { grid-template-columns: 1fr; }
    .mission-vision-grid { grid-template-columns: 1fr; }

    .about-features { grid-template-columns: 1fr; }
    .hafriyat-services { grid-template-columns: 1fr; }

    .contact-form { padding: 24px; }
    .page-banner { padding: 45px 0; }
}

@media (max-width: 480px) {
    .topbar { display: none; }
    .stat-number { font-size: 36px; }
    .products-grid { grid-template-columns: 1fr; }
    .apps-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .hafriyat-services-full { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   KURUMSAL SAYFA - YENİ LAYOUT
   ============================================ */
.corporate-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

.corporate-sidebar { position: sticky; top: 90px; }

.corp-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: white;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    box-shadow: var(--shadow);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.corp-sidebar-link i:first-child { color: var(--gold); font-size: 15px; width: 18px; }

.corp-arrow { margin-left: auto; font-size: 11px; color: #ccc; }

.corp-sidebar-link:hover,
.corp-sidebar-link.active {
    border-left-color: var(--gold);
    background: var(--primary);
    color: white;
    padding-left: 26px;
}

.corp-sidebar-link.active i:first-child,
.corp-sidebar-link:hover i:first-child { color: var(--gold); }

.corp-sidebar-link.active .corp-arrow,
.corp-sidebar-link:hover .corp-arrow { color: var(--gold); }

/* Kurumsal İçerik */
.corporate-content { min-width: 0; }

.corp-content-inner h2 {
    font-size: 32px;
    color: var(--primary);
    margin: 10px 0 20px;
}

.corp-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.corp-text-grid p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 14px;
}

.corp-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.corp-stats-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.corp-stat {
    background: var(--light);
    border-left: 4px solid var(--gold);
    padding: 14px 18px;
    border-radius: 8px;
    flex: 1;
    min-width: 90px;
}

.corp-stat span {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.corp-stat small { font-size: 12px; color: #666; font-weight: 600; }

.corp-feature-list { margin-top: 20px; display: grid; gap: 10px; }

.corp-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.corp-feature i { color: var(--gold); font-size: 16px; }

.corp-vision-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    margin-top: 20px;
}

.corp-vision-box > i { font-size: 28px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.corp-vision-box h4 { font-size: 15px; color: var(--primary); margin-bottom: 6px; }
.corp-vision-box p { font-size: 14px; color: var(--gray); margin: 0; }

.corp-quality-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.corp-quality-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.corp-quality-card i {
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .corporate-layout { grid-template-columns: 1fr; }
    .corporate-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
    .corp-sidebar-link { flex: 1; min-width: 140px; margin-bottom: 0; }
    .corp-text-grid { grid-template-columns: 1fr; }
    .corp-img { aspect-ratio: 16/9; }
}

/* Ürün ana header */
.prod-main-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}

.prod-main-header h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.prod-main-header p { font-size: 14px; color: var(--gray); }

.prod-count {
    background: rgba(201,168,76,0.12);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.3);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   ÜRÜNLER SAYFA LAYOUT (Sidebar + Main)
   ============================================ */
.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar */
.products-sidebar { position: sticky; top: 90px; }

.sidebar-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 15px;
    color: white;
    background: var(--primary);
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h3 i { color: var(--gold); }

.sidebar-card ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.sidebar-card ul li a:hover,
.sidebar-card ul li.active a {
    color: var(--gold);
    background: rgba(201,168,76,0.06);
    padding-left: 24px;
}

.sidebar-card ul li.active a {
    font-weight: 700;
    border-left: 3px solid var(--gold);
}

.sidebar-card ul li a i { color: var(--gold); font-size: 12px; width: 14px; flex-shrink: 0; }

.cat-count {
    margin-left: auto;
    background: var(--light);
    color: var(--gray);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.sidebar-contact-box {
    background: linear-gradient(135deg, var(--primary), #2a2a4a);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    color: white;
}

.sidebar-contact-box i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.sidebar-contact-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-contact-box p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    line-height: 1.6;
}

.sidebar-contact-box a {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.btn-contact-sidebar {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold) !important;
    color: var(--primary) !important;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.btn-contact-sidebar:hover { background: var(--gold-light) !important; }

/* Kategori Kartları Grid */
.cat-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.cat-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.cat-card-img-wrap {
    height: 200px;
    overflow: hidden;
    background: var(--light);
}

.cat-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-img-wrap img { transform: scale(1.06); }

.cat-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    color: #ccc;
    font-size: 40px;
}

.cat-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cat-card-body h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

.cat-card-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.cat-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Ürün bilgi butonu */
.prod-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.prod-inquiry-btn:hover {
    background: var(--gold);
    color: var(--primary);
}

.product-item.highlighted {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
}

/* Boş durum */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.4;
}

.empty-state p { font-size: 15px; margin-bottom: 16px; }

/* Responsive products layout */
@media (max-width: 900px) {
    .products-layout { grid-template-columns: 1fr; }
    .products-sidebar { position: static; }
}

/* Mobile alt menü (has-sub) */
@media (max-width: 768px) {
    .sub-dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border-top: none !important;
        border-left: 3px solid var(--gold) !important;
        border-radius: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease !important;
    }
    .has-sub.open .sub-dropdown { max-height: 400px; }
    .sub-dropdown li a { padding-left: 40px !important; }
    .sub-arrow { display: none; }
    .cat-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .cat-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
