/* ============================================================
   SURBİMS - Vibroblok İlham Alınmış Tasarım Sistemi
   Turuncu Tema | Temiz & Kurumsal
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary:      #e07b10;
    --primary-dark: #c0660c;
    --primary-light:#f5a444;
    --dark:         #1a1a1a;
    --dark2:        #2c2c2c;
    --gray:         #555;
    --light-gray:   #f4f5f7;
    --white:        #ffffff;
    --border:       #e0e0e0;
    --radius:       10px;
    --radius-lg:    18px;
    --shadow:       0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
    --transition:   all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Accessibility ---------- */
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--primary); color: #fff;
    padding: 8px 16px; z-index: 9999;
    transition: top .3s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--dark);
    color: #bbb;
    padding: 9px 0;
    font-size: 13.5px;
}
.top-bar a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}
.top-bar a:hover { color: var(--primary); }
.top-bar .top-contact i { color: var(--primary); margin-right: 6px; }
.top-bar .top-slogan { color: #aaa; font-size: 12.5px; }

@media (max-width: 768px) {
    .top-bar .top-slogan { display: none; }
    .top-bar { padding: 7px 0; font-size: 12.5px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--white) !important;
    padding: 0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
    transition: var(--transition);
    overflow: visible !important;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 15px;
    overflow: visible;
}

.navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.navbar-brand-wrap img.brand-icon { height: 52px; }
.navbar-brand-wrap img.brand-logo { height: 44px; }
.brand-tagline {
    border-left: 2px solid var(--primary);
    padding-left: 14px;
    font-size: 25px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    white-space: nowrap;
}

.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 6px 10px;
    background: none;
    cursor: pointer;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e07b10' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch; list-style: none; gap: 0; padding: 0; margin: 0; overflow: visible; }
.nav-item { position: relative; display: flex; align-items: center; }

.nav-link {
    display: block;
    padding: 24px 14px !important;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark) !important;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 3px; background: var(--primary);
    transition: all .3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}
.nav-link:hover::after, .nav-link.active::after {
    left: 0; right: 0;
}

/* Dropdown */
/* Dropdown — custom classes to avoid Bootstrap conflicts */
.dropdown-toggle::after { display: none !important; }

.nav-item.has-submenu { position: relative; }

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    min-width: 220px;
    background: var(--white);
    border: none;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    list-style: none;
    padding: 8px 0;
    z-index: 9999;
    animation: dropDown .2s ease;
}
.nav-item.has-submenu:hover > .submenu { display: block; }

@keyframes dropDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.submenu-item {
    display: block;
    padding: 10px 18px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.submenu-item:hover {
    background: var(--light-gray);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 22px;
}
.submenu-divider { border-top: 1px solid var(--border); margin: 4px 0; }

/* Mobile Nav */
@media (max-width: 991px) {
    .navbar { overflow: visible !important; }
    .navbar-inner { flex-wrap: wrap; height: auto; min-height: 72px; position: relative; }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        border-top: 2px solid var(--primary);
        padding: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
    }
    .navbar-nav { flex-direction: column !important; align-items: flex-start !important; gap: 0; flex-wrap: wrap; }
    .nav-item { width: 100%; display: block; }
    .nav-link { padding: 12px 15px !important; border-bottom: 1px solid var(--border); width: 100%; display: block; }
    .nav-link::after { display: none; }
    .dropdown-menu, .submenu {
        position: static !important;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--primary);
        padding-left: 12px;
        background: var(--light-gray);
        animation: none;
        margin-top: 0;
        border-radius: 0;
        display: block;
        width: 100%;
    }
    .submenu-item { padding: 10px 15px; }
    .brand-tagline { display: none; }
}

/* ============================================================
   PAGE HEADER (Breadcrumb Banner) — inner pages
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #2e2e2e 100%);
    padding: 54px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(224,123,16,.03) 30px, rgba(224,123,16,.03) 60px);
}
.page-header h1 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}
.page-header h1 span { color: var(--primary); }
.breadcrumb-nav { position: relative; }
.breadcrumb-nav a { color: #bbb; font-size: 14px; }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav span { color: #666; margin: 0 6px; font-size: 14px; }
.breadcrumb-nav .current { color: var(--primary); font-size: 14px; font-weight: 600; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { margin: 0; }

.section-alt { background: var(--light-gray); }

.section-pad { padding: 90px 0; }
@media (max-width: 768px) { .section-pad { padding: 60px 0; } }

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

.section-tag {
    display: inline-block;
    background: rgba(224,123,16,.12);
    color: var(--primary);
    border: 1px solid rgba(224,123,16,.25);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-title span { color: var(--primary); }

.section-subtitle {
    font-size: 1.05rem;
    color: #888;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.divider-orange {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    margin: 0 auto 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(224,123,16,.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224,123,16,.4);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-lg { padding: 15px 38px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-pill { border-radius: 50px !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
    position: absolute; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.4s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 14s ease-in-out forwards;
}
@keyframes kenBurns {
    0%   { transform: scale(1.07); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(160deg,
        rgba(10,10,10,.72) 0%,
        rgba(10,10,10,.58) 50%,
        rgba(224,123,16,.22) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px 50px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224,123,16,.18);
    border: 1px solid rgba(224,123,16,.4);
    backdrop-filter: blur(8px);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: #ffe6c0;
    animation: fadeInDown .8s ease both;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 22px;
    line-height: 1.15;
    letter-spacing: -.5px;
    text-shadow: 0 3px 30px rgba(0,0,0,.4);
    animation: fadeInUp .9s ease both;
}
.hero-title span {
    background: linear-gradient(135deg, var(--primary-light), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 38px;
    line-height: 1.7;
    opacity: .9;
    animation: fadeInUp .9s .2s ease both;
    max-width: 580px;
    margin-left: auto; margin-right: auto;
}

.hero-buttons {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
    animation: fadeInUp .9s .4s ease both;
}
.hero-btn {
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 700; font-size: 15px;
    text-decoration: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 9px;
}
.hero-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 28px rgba(224,123,16,.45);
}
.hero-btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(224,123,16,.55);
}
.hero-btn-secondary {
    background: rgba(255,255,255,.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,.55);
    backdrop-filter: blur(4px);
}
.hero-btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-scroll-down {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.55);
    font-size: 24px;
    z-index: 2;
    animation: bounce 1.8s infinite;
    cursor: pointer;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.stats-section {
    background: var(--primary);
    padding: 0;
}
.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
    .stats-inner { grid-template-columns: 1fr 1fr; }
}

.stat-box {
    text-align: center;
    padding: 42px 20px;
    border-right: 1px solid rgba(255,255,255,.2);
    position: relative;
}
.stat-box:last-child { border-right: none; }
.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.82);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section { background: var(--white); }

.feature-card {
    text-align: center;
    padding: 38px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}
.feature-icon {
    width: 72px; height: 72px;
    background: rgba(224,123,16,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}
.feature-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.feature-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-section { background: var(--light-gray); }

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
    border: 1px solid var(--border);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(224,123,16,.25);
}
.product-image {
    position: relative; height: 250px;
    overflow: hidden; background: #f0f0f0;
}
.product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.product-card:hover .product-image img { transform: scale(1.1); }

.product-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: 700; font-size: 11px;
    color: var(--white); letter-spacing: .8px;
    text-transform: uppercase; z-index: 2;
}
.badge-new        { background: var(--primary); }
.badge-popular    { background: #e74c3c; }
.badge-recommended{ background: #27ae60; }

.product-body {
    padding: 28px 26px;
    flex-grow: 1; display: flex; flex-direction: column;
}
.product-title {
    font-size: 1.2rem; font-weight: 800;
    margin-bottom: 10px; color: var(--dark);
}
.product-description {
    color: #888; line-height: 1.75;
    margin-bottom: 22px; flex-grow: 1;
    font-size: 14px;
}
.product-footer {
    display: flex; justify-content: flex-end;
    align-items: center; margin-top: auto;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { background: var(--light-gray); }

.video-container {
    max-width: 820px; margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    aspect-ratio: 16/9;
    border: 3px solid rgba(224,123,16,.2);
}
.video-container video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   WHY US / ABOUT STRIP
   ============================================================ */
.about-section { background: var(--white); }

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--light-gray);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.about-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(224,123,16,.1);
}
.about-card-icon {
    min-width: 52px; height: 52px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--white);
}
.about-card h6 { font-weight: 700; color: var(--dark); margin-bottom: 6px; font-size: 15px; }
.about-card p  { font-size: 13.5px; color: #888; line-height: 1.6; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #222 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(224,123,16,.12) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-content { text-align: center; position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.3;
}
.cta-title span { color: var(--primary); }
.cta-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 38px;
    line-height: 1.7;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: #ccc;
    padding: 72px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-about {
    font-size: 13.5px; line-height: 1.75; color: #999; margin-bottom: 20px;
}
.footer-heading {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-link {
    display: block;
    color: #999;
    font-size: 14px;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-link:hover { color: var(--primary); padding-left: 6px; }
.footer-link i { width: 18px; color: var(--primary); margin-right: 6px; }

.footer-contact p {
    font-size: 14px; color: #999; margin-bottom: 10px;
    display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact p i { color: var(--primary); min-width: 18px; margin-top: 2px; }
.footer-contact a { color: #bbb; }
.footer-contact a:hover { color: var(--primary); }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    background: rgba(255,255,255,.07);
    color: #bbb;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.1);
}
.social-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,.35);
    padding: 18px 0;
    margin-top: 52px;
    text-align: center;
    font-size: 13px;
    color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--primary); }
.footer-bottom .sep { margin: 0 8px; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: var(--transition);
    color: var(--white);
    font-size: 26px;
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 36px rgba(37,211,102,.6);
    color: var(--white);
}

.back-to-top {
    position: fixed; bottom: 96px; right: 28px;
    width: 46px; height: 46px;
    background: var(--primary);
    border: none; border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer; z-index: 998;
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(224,123,16,.4);
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(224,123,16,.5); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(15,15,15,.96);
    backdrop-filter: blur(8px);
    color: #ccc; padding: 16px 0;
    z-index: 9998;
    border-top: 2px solid var(--primary);
    transform: translateY(100%);
    transition: transform .4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 13.5px; margin: 0 0 0 0; color: #bbb; }
.cookie-bar a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   SPECIFIC INNER PAGE STYLES
   ============================================================ */

/* Info cards */
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.info-card:hover {
    border-color: rgba(224,123,16,.3);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.info-card-icon {
    width: 58px; height: 58px;
    border-radius: var(--radius);
    background: rgba(224,123,16,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary);
    margin-bottom: 18px;
}
.info-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.info-card p  { font-size: 14px; color: #888; line-height: 1.7; }

/* Size tables */
.size-table { width: 100%; border-collapse: collapse; }
.size-table th {
    background: var(--primary);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-size: 13.5px;
    font-weight: 700;
}
.size-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px; color: #444;
}
.size-table tr:nth-child(even) td { background: var(--light-gray); }
.size-table tr:hover td { background: rgba(224,123,16,.06); }

/* Contact form */
.form-group { margin-bottom: 20px; }
.form-label { font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--dark); }
.form-control {
    width: 100%; padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14.5px; color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224,123,16,.15);
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(224,123,16,.65);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
    font-size: 28px; color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Catalog cards */
.catalog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.catalog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.catalog-card i { font-size: 48px; color: var(--primary); margin-bottom: 16px; }
.catalog-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.catalog-card p  { font-size: 13.5px; color: #888; margin-bottom: 18px; }

/* FAQ Accordion */
.faq-item {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    background: var(--white);
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    user-select: none;
}
.faq-question:hover { background: rgba(224,123,16,.06); }
.faq-question.open { color: var(--primary); background: rgba(224,123,16,.06); }
.faq-question .faq-icon { font-size: 18px; transition: transform .3s ease; color: var(--primary); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    background: var(--light-gray);
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 16px 20px; font-size: 14.5px; color: #666; line-height: 1.75; }

/* Policy pages */
.policy-section { max-width: 860px; margin: 0 auto; }
.policy-section h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin: 34px 0 14px; }
.policy-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 24px 0 10px; }
.policy-section p  { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 12px; }
.policy-section ul { padding-left: 22px; margin-bottom: 12px; }
.policy-section li { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 5px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* AOS overrides */
[data-aos] { transition-property: opacity, transform !important; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
    .hero-section { min-height: 70vh; }
    .stats-inner  { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons  { flex-direction: column; align-items: center; gap: 10px; }
    .footer { padding: 50px 0 0; }
    .footer .col-md-4 { margin-bottom: 36px; }
    .footer-social { justify-content: flex-start; }
    .whatsapp-float { bottom: 20px; right: 18px; width: 52px; height: 52px; font-size: 22px; }
    .back-to-top { bottom: 82px; right: 18px; width: 42px; height: 42px; font-size: 16px; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-btn { width: 100%; max-width: 280px; justify-content: center; }
    .stat-number { font-size: 2rem; }
}

/* ===== Özel Video Oynatıcı ===== */
.cvp-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    cursor: pointer;
    user-select: none;
}

/* Merkez overlay – duraklatılınca göster */
.cvp-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.22);
    transition: opacity .25s;
    pointer-events: none;
}
.cvp-overlay.playing { opacity: 0; }

.cvp-bigplay {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 2.5px solid rgba(255,255,255,0.75);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
    pointer-events: all;
    padding-left: 4px; /* optik hizalama */
}
.cvp-bigplay:hover { background: rgba(224,123,16,0.82); transform: scale(1.08); }

/* Kontrol çubuğu */
.cvp-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 65%, transparent 100%);
    padding: 14px 16px 12px;
    opacity: 1;
    transition: opacity .3s;
}
.cvp-wrapper.hide-controls .cvp-controls { opacity: 0; }

/* İlerleme çubuğu */
.cvp-progress-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.cvp-time {
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    min-width: 36px;
}
.cvp-progress-track {
    position: relative;
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.28);
    border-radius: 4px;
    cursor: pointer;
    transition: height .15s;
}
.cvp-progress-track:hover { height: 6px; }
.cvp-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #e07b10, #f5a444);
    border-radius: 4px;
    pointer-events: none;
    width: 0%;
}
.cvp-seek {
    position: absolute;
    inset: -10px 0;
    width: 100%;
    height: 24px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    margin: 0;
    padding: 0;
}

/* Buton satırı */
.cvp-btns-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.cvp-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.92);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .18s, transform .15s;
}
.cvp-btn:hover { color: #fff; transform: scale(1.12); }
.cvp-btn:active { transform: scale(0.94); }

/* Hız butonu */
.cvp-speed {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: .4px;
    min-width: 30px;
    text-align: center;
}

/* Atla butonları */
.cvp-skip-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}
.cvp-skip-icon i { font-size: 1.25rem; }
.cvp-skip-num {
    position: absolute;
    font-size: 0.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    pointer-events: none;
}

/* Oynat/Duraklat – büyük daire */
.cvp-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary, #e07b10);
    color: #fff !important;
    font-size: 1.15rem;
    box-shadow: 0 3px 14px rgba(224,123,16,0.55);
    padding-left: 3px; /* optik hizalama */
}
.cvp-play-btn .fa-pause { padding-left: 0; }
.cvp-play-btn:hover { background: #c0660c !important; transform: scale(1.07) !important; }

/* Tam ekran butonu */
.cvp-fs { font-size: 1rem; }

@media (max-width: 480px) {
    .cvp-btns-row { gap: 14px; }
    .cvp-play-btn { width: 44px; height: 44px; font-size: 1rem; }
}
