/* ==========================================
   BACA ŞAPKALARI FİYAT LİSTESİ 2026
   Profesyonel Animasyonlu CSS
   ========================================== */

:root {
    --primary: #1a3c2f;       /* Koyu yeşil */
    --primary-dark: #0f2a1f;
    --secondary: #c9a96e;     /* Bakır/bronze */
    --secondary-light: #e0c896;
    --accent: #25D366;        /* WhatsApp yeşili */
    --dark: #1e1e1e;
    --dark-alt: #2a2a2a;
    --light: #faf8f3;         /* Krem zemin */
    --light-alt: #f0ece3;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.18);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.8); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes borderGlow {
    0%, 100% { border-color: var(--secondary); box-shadow: 0 0 5px var(--secondary); }
    50% { border-color: var(--primary); box-shadow: 0 0 20px var(--secondary); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}
.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--secondary); font-size: 14px; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-bar a:hover { color: var(--secondary); }
.whatsapp-top {
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    animation: pulse 2s infinite;
}
.whatsapp-top:hover { background: #128C7E; color: var(--white) !important; }

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    padding: 5px 0;
}
.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    transition: var(--transition);
}
.logo:hover .logo-img { transform: rotate(5deg) scale(1.1); border-color: var(--primary); }
.logo-text h1 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1.2;
}
.logo-text span {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.nav-desktop { display: flex; gap: 5px; align-items: center; }
.nav-desktop a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-desktop a:hover { color: var(--primary); }
.nav-desktop a:hover::after { width: 80%; }
.nav-desktop a.active { color: var(--primary); font-weight: 600; }
.nav-desktop a.active::after { width: 80%; }

.btn-nav {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-weight: 600 !important;
    margin-left: 10px;
    transition: var(--transition);
}
.btn-nav:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-nav::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--light-alt);
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--primary); padding-left: 10px; }
.mobile-menu .btn-nav {
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
}
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    transform: scale(1.1);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,60,47,0.9) 0%, rgba(26,60,47,0.6) 50%, rgba(0,0,0,0.4) 100%);
}
.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: block;
    text-align: left;
}
.hero-content { 
    animation: fadeInLeft 1s ease; 
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero h1 .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(201,169,110,0.3);
    border-radius: 4px;
    z-index: -1;
}
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
    justify-content: flex-start;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-primary:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-gold {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}
.btn-gold:hover {
    background: #b08d4b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.4);
}



/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

/* ==========================================
   TRUST BADGES
   ========================================== */
.trust-section {
    background: var(--white);
    padding: 50px 0;
    position: relative;
}
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
.trust-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}
.trust-item:hover { transform: translateY(-5px); }
.trust-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}
.trust-item:hover i { color: var(--secondary); transform: scale(1.1); }
.trust-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}
.trust-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease both;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}
.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.products-section {
    padding: 80px 0;
    background: var(--light);
}
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,60,47,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover .product-image::after { opacity: 1; }
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}
.product-content { padding: 25px; }
.product-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.product-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.product-features span {
    background: var(--light-alt);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}
.btn-card {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.btn-card:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ==========================================
   SPECIAL CARD - ÖZEL BACALAR
   ========================================== */
.special-card {
    border: 2px solid var(--secondary);
    position: relative;
    overflow: visible;
}
.special-card::after {
    content: 'ÖZEL ÜRETİM';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(201,169,110,0.3);
}
.special-card .product-image { height: 250px; }
.special-highlight {
    background: linear-gradient(135deg, var(--light-alt), var(--white));
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary);
}
.special-highlight p {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    margin: 0;
}

/* ==========================================
   PRICE FACTORS
   ========================================== */
.factors-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}
.factors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-alt), transparent);
}
.factors-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.factor-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.factor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    transform: scaleY(0);
    transition: transform 0.4s;
}
.factor-card:hover::before { transform: scaleY(1); }
.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.factor-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.factor-card:hover .factor-icon {
    background: linear-gradient(135deg, var(--secondary), #b08d4b);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}
.factor-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.factor-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.factor-highlight {
    background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(201,169,110,0.05));
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 15px;
}
.factor-highlight p {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}
.factor-highlight strong { color: var(--secondary); }

/* ==========================================
   CTA BOX
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(201,169,110,0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}
.cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-box .btn {
    padding: 16px 40px;
    font-size: 17px;
}
.cta-box .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    margin-left: 15px;
}

/* ==========================================
   DOCUMENTS / TRUST AREA
   ========================================== */
.docs-section {
    padding: 80px 0;
    background: var(--light);
}
.docs-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.doc-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.doc-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.doc-item i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
    transition: var(--transition);
}
.doc-item:hover i { transform: scale(1.2) rotate(5deg); }
.doc-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}
.doc-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================
   REFERANS / STATS
   ========================================== */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}
.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--light-alt);
}
.stat-item:last-child::after { display: none; }
.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-section {
    padding: 80px 0;
    background: var(--light);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-hover); }
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-question i {
    transition: transform 0.3s;
    color: var(--secondary);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}
.faq-answer p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ==========================================
   TEKLİF FORM
   ========================================== */
.form-section {
    padding: 80px 0;
    background: var(--white);
}
.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group {
    margin-bottom: 5px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-alt);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.file-upload {
    border: 2px dashed var(--light-alt);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.file-upload:hover { border-color: var(--secondary); background: var(--light); }
.file-upload i { font-size: 32px; color: var(--secondary); margin-bottom: 10px; }
.file-upload p { font-size: 14px; color: var(--text-light); }
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}
.btn-submit:hover {
    background: linear-gradient(135deg, var(--secondary), #b08d4b);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary);
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-brand .logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--secondary);
}
.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 12px;
}
.footer-contact i { color: var(--secondary); width: 20px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
    background: var(--light-alt);
    padding: 15px 0;
}
.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 13px;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--secondary); font-weight: 600; }
.breadcrumb i { margin: 0 8px; color: var(--text-light); font-size: 10px; }

/* ==========================================
   PAGE CONTENT
   ========================================== */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}
.page-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}
.page-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}
.page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 35px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--secondary);
}
.page-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}
.page-content ul {
    margin: 15px 0 25px 25px;
    color: var(--text-light);
}
.page-content ul li { margin-bottom: 10px; line-height: 1.7; }
.page-content ul li::marker { color: var(--secondary); }
.page-content img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 25px 0;
    box-shadow: var(--shadow);
}
.info-box {
    background: linear-gradient(135deg, var(--light-alt), var(--white));
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 25px;
    margin: 25px 0;
}
.info-box p { margin: 0; font-weight: 500; color: var(--text); }

/* ==========================================
   ADMIN PANEL
   ========================================== */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.admin-login-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.admin-login-box h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}
.admin-login-box p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}
.admin-nav {
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.admin-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-nav a { color: var(--white); text-decoration: none; font-weight: 600; }
.admin-nav a:hover { color: var(--secondary); }
.admin-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.admin-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-alt);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.admin-table th {
    background: var(--light-alt);
    padding: 12px 15px;
    text-align: left;
    font-weight: 700;
    color: var(--primary);
}
.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-alt);
    color: var(--text);
}
.admin-table tr:hover td { background: var(--light); }

/* ==========================================
   ALERT / SUCCESS
   ========================================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .factors-grid { grid-template-columns: repeat(2, 1fr); }
    .docs-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 32px; }
    .hero p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .factors-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid .stat-item::after { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-grid { grid-template-columns: 1fr; }
    .top-bar-left { display: none; }
    .cta-box h2 { font-size: 28px; }
    .section-header h2 { font-size: 28px; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 24px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 15px; }
    .btn { padding: 12px 20px; font-size: 14px; }
    .trust-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .top-bar { font-size: 11px; }
    .logo-text h1 { font-size: 15px; }
}
