@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #000000;
    --bg-dark-secondary: #111111;
    --bg-light: #F5F5F7;
    --bg-white: #FFFFFF;
    
    --brand-primary: #FF6B00; /* Apple/Stripe vibrant orange */
    --brand-gradient: linear-gradient(135deg, #FF6B00 0%, #FF9500 100%);
    --brand-blue: #0A84FF;
    
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --text-white: #F5F5F7;
    --text-white-muted: #A1A1A6;
    
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.12);
    
    --shadow-float: 0 20px 40px -10px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.3);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 999px;
    
    --ease-apple: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s var(--ease-apple);
    --transition-slow: 0.6s var(--ease-apple);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------------- HEADER ---------------- */
.nav-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px 0;
    transition: var(--transition-slow);
}

.nav-container.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px !important;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--brand-primary);
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-login {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.btn-primary {
    background: var(--brand-gradient);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

/* ---------------- HERO (Stripe/Apple Mix) ---------------- */
.hero {
    position: relative;
    padding: 180px 24px 100px;
    text-align: center;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-bg-mesh {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(10, 132, 255, 0.05) 0%, transparent 30%);
    z-index: -1;
    animation: rotateMesh 20s linear infinite;
}

@keyframes rotateMesh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-apple) forwards 0.2s;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: #34C759;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(52, 199, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0); }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.05;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-apple) forwards 0.4s;
}

.hero h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-apple) forwards 0.6s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-apple) forwards 0.8s;
}

.btn-hero {
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.btn-hero.primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-hero.secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-hero.secondary:hover {
    border-color: var(--text-muted);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------- BENTO GRID (Apple Style Services) ---------------- */
.bento-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-header {
    text-align: center;
    margin-bottom: 64px;
}

.bento-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-float);
    border-color: rgba(255, 107, 0, 0.2);
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brand-primary);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.bento-card:hover .bento-icon {
    background: var(--brand-primary);
    color: white;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.bento-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-arrow {
    position: absolute;
    bottom: 40px;
    right: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}

.bento-card:hover .bento-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---------------- SPLIT FEATURE SECTION ---------------- */
.split-feature {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-feature.reverse {
    direction: rtl;
}

.split-feature.reverse > * {
    direction: ltr;
}

.split-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.split-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item i {
    color: #34C759;
    font-size: 20px;
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: var(--transition-slow);
}

.split-feature:hover .split-image img {
    transform: scale(1);
}

/* ---------------- DARK STATS / CITIES ---------------- */
.dark-section {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dark-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.dark-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.dark-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 48px;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.city-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.city-tag:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    transform: translateY(-4px);
}

/* ---------------- TESTIMONIALS (Marquee) ---------------- */
.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.testi-header {
    text-align: center;
    margin-bottom: 64px;
}

.testi-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.marquee {
    display: flex;
    gap: 24px;
    width: fit-content;
    animation: scrollMarquee 40s linear infinite;
    padding: 0 24px 40px;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testi-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 400px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.testi-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-float);
    transform: translateY(-4px);
}

.stars {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testi-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    font-weight: 700;
    color: var(--text-main);
}

/* ---------------- FOOTER ---------------- */
.footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 80px 24px 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 24px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; }
    .split-feature { grid-template-columns: 1fr; gap: 40px; }
    .split-feature.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .hero { padding-top: 140px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-hero { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Float Buttons */
.float-wrapper { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 16px; z-index: 999; }
.f-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; box-shadow: 0 10px 20px rgba(0,0,0,0.15); transition: var(--transition-fast); }
.f-btn:hover { transform: scale(1.1); color: white; }
.f-wa { background: #25D366; }
.f-call { background: var(--brand-primary); }

/* ---------------- BREADCRUMBS & TITLES ---------------- */
.breads { padding: 16px 0; font-size: 14px; color: var(--text-muted); }
.breads a { color: var(--text-main); font-weight: 500; }
.listeBaslik { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 24px; }
.markaSelect h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; }
.kategorisubdiv p {
    font-size: 1.2rem;
    font-weight: 600;
}
.kategorisubdiv h2 {
    font-size: 2rem;
    font-weight: 800;
}
.alertnew2 {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}
.alert-2-success { border-left: 4px solid #34C759; }
.alert-2-danger { border-left: 4px solid #FF3B30; }

/* ---------------- FORMS ---------------- */
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
.custom-range {
    width: 100%;
    accent-color: var(--brand-primary);
}
.range-count {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 16px;
}
.radio-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.card-block {
    background: var(--bg-white); border: 1px solid var(--border-light);
    border-radius: var(--radius-md); padding: 16px; cursor: pointer;
    transition: var(--transition-fast); width: calc(50% - 8px);
    text-align: center;
}
@media (min-width: 768px) {
    .card-block { width: calc(25% - 12px); }
}
.card-block:hover {
    border-color: var(--brand-primary); box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.card-block.active {
    border-color: var(--brand-primary);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 0 0 2px var(--brand-primary);
}
.pic img { height: 80px; object-fit: contain; margin: 0 auto 16px; }
.progress { background: var(--bg-light); border-radius: var(--radius-full); overflow: hidden; }
.progress-bar { background: var(--brand-gradient); transition: width 0.3s ease; }
.btn-info { background: var(--bg-white); border: 1px solid var(--border-light); color: var(--text-main); }
.btn-success { background: var(--brand-gradient); border: none; color: white; }
</style>
/* ---------------- COMPLETE GRID SYSTEM ---------------- */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }

@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Utilities Extended */
.mt-1 { margin-top: 8px; }
.mt-3 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }
.pb-2 { padding-bottom: 16px; }
.p-0 { padding: 0 !important; }
.m-0 { margin: 0 !important; }
.w-100 { width: 100% !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }

/* ---------------- GLOBAL OLD HEADER OVERRIDE ---------------- */
.headerTop { display: none !important; }

.header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border-bottom: 1px solid var(--border-light) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    padding: 16px 0 !important;
}

.header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.header-logo-search-bar {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
}

.headerMenu ul {
    display: flex !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.headerMenu ul li a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    opacity: 0.8 !important;
    transition: var(--transition-fast) !important;
    text-decoration: none !important;
}

.headerMenu ul li a:hover {
    opacity: 1 !important;
    color: var(--brand-primary) !important;
}

.altMenuToggle + .altMenu {
    display: none !important;
}

.headerMenu ul li:hover .altMenu {
    display: block !important;
    position: absolute !important;
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-float) !important;
    border-radius: var(--radius-md) !important;
    padding: 16px !important;
    z-index: 1000 !important;
    min-width: 400px !important;
}

.marka-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}


/* ---------------- PRODUCT DETAIL PAGE ---------------- */
.proDetay {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.teknikBilgiler .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.teknikDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
    height: 100%;
}

.teknikDiv:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    border-color: rgba(255, 107, 0, 0.2);
}

.teknikDiv img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.teknikDiv span {
    font-size: 13px;
    color: var(--text-muted);
}

.teknikDiv .data {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 700;
    margin-top: 4px;
}

.kombiFoto {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.kombiFoto img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.kombiFoto:hover img {
    transform: scale(1.05);
}

.detayHead {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-main);
}

.yildizlar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #FFB800;
    font-size: 14px;
}

.yildizlar .puan {
    color: var(--text-main);
    font-weight: 600;
}

.yildizlar a {
    color: var(--text-muted);
    text-decoration: underline;
}

.ortalamaFiyat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 16px;
    background: rgba(255, 107, 0, 0.05);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.ortalamaFiyat .ortalama {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}

.siniflar {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.radyator, .sicaksu {
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-light);
    flex: 1;
}

.radyator span, .sicaksu span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.radyator b, .sicaksu b {
    font-size: 24px;
    color: #34C759;
}

.icerikAlani {
    margin-top: 32px;
}

.icerikAlani table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.icerikAlani table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.icerikAlani table tr td:first-child {
    font-weight: 600;
    color: var(--text-muted);
    width: 40%;
}

.icerikAlani table tr td:last-child {
    font-weight: 700;
    color: var(--text-main);
}

.kisaAciklama {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand-primary);
    margin: 24px 0;
}

.kisaAciklama .listeBaslik {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* ---------------- COMMENTS (YORUMLAR) ---------------- */
.yorumlar {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-light);
}

.yorumBoxnew {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.yorumBoxnew .lokasyon {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.yorumBoxnew h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yorumBoxnew .cevaplandi {
    color: #34C759;
    font-size: 14px;
}

.yorumBoxnew p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-main);
    margin-top: 12px;
}

.cevaplar {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-light);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.cevaplar h4 {
    font-size: 14px;
    color: var(--brand-primary);
    margin-bottom: 4px;
}

.cevaplar p {
    font-size: 14px;
    margin-top: 0;
}

/* ---------------- HESAPLAMA FORMU (hesaplaniyor) ---------------- */
.hesaplama {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border-light);
    margin-top: 48px;
}

.hesaplama img {
    width: 64px;
    margin: 0 auto 16px;
}

.hesaplama h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.formClass {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-md);
}

.iconLabel {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.iconLabel img {
    width: 40px;
    margin: 0;
}

.iconLabel span {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

/* Compare Button */
.selectProduct {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 24px;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.selectProduct:hover {
    border-color: var(--brand-primary);
    background: rgba(255, 107, 0, 0.05);
}

.addButtonCircular {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.compareText { font-weight: bold; font-size: 14px; margin-right: 12px; }

/* ---------------- KOMBİ KARŞILAŞTIRMA (VS) SAYFASI ---------------- */
.kar-ikon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.urun-container {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    transition: var(--transition-fast);
}

.urun-container:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.urun-img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 12px;
}

.urun-modeli {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

/* ---------------- MOBILE RESPONSIVENESS (EXTENDED) ---------------- */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    .header-logo-search-bar {
        width: 100%;
        justify-content: space-between;
    }
    .headerMenu { display: none; } /* Hide old header menu on mobile, or style toggle */
    
    .teknikBilgiler .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .detayHead {
        font-size: 1.5rem;
    }
    
    .ortalamaFiyat {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ---------------- PREMIUM PRODUCTS SECTION (HOME) ---------------- */

.premium-products-section {

    padding: 100px 0;

    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);

    position: relative;

    overflow: hidden;

}



.premium-products-section::before {

    content: '';

    position: absolute;

    top: -100px;

    left: -100px;

    width: 400px;

    height: 400px;

    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, rgba(255,255,255,0) 70%);

    z-index: 0;

    border-radius: 50%;

}



.premium-products-section .container {

    position: relative;

    z-index: 1;

}



.badge-premium {

    display: inline-block;

    padding: 8px 16px;

    background: rgba(255, 107, 0, 0.08);

    color: var(--brand-primary);

    border-radius: var(--radius-full);

    font-weight: 700;

    font-size: 14px;

    margin-bottom: 24px;

    border: 1px solid rgba(255, 107, 0, 0.15);

    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.05);

}



.premium-products-section .section-header h2 {

    font-size: clamp(2.5rem, 4vw, 3.5rem);

    font-weight: 900;

    letter-spacing: -0.04em;

    margin-bottom: 20px;

    color: var(--text-main);

}



.gradient-text {

    background: var(--brand-gradient);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



.premium-products-section .section-header p {

    font-size: 1.2rem;

    color: var(--text-muted);

    max-width: 650px;

    margin: 0 auto;

    line-height: 1.6;

}



/* Home Kombi Cards Enhancement */

#homeProductList {

    margin-top: 50px;

}



.kombiListesi {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
}

.kombiListesi:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    background: var(--bg-white);
}

.kombiListesi:hover img {
    transform: scale(1.05);
}



/* ---------------- HERO FLOATING IMAGES ---------------- */

.hero {

    position: relative;

    overflow: visible; /* Changed from hidden to allow images to overflow nicely if needed */

}



.hero-float-container {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: clamp(150px, 15vw, 250px);

    z-index: 10;

    pointer-events: none; /* So it doesn't block clicks */

}



.left-float {

    left: 5%;

    animation: floatLeft 6s ease-in-out infinite;

}



.right-float {

    right: 5%;

    animation: floatRight 7s ease-in-out infinite reverse;

}



.hero-float-img {

    width: 100%;

    height: auto;

    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));

    border-radius: var(--radius-md);

}



.hero-float-glow {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 120%;

    height: 120%;

    background: radial-gradient(circle, rgba(255,107,0,0.4) 0%, rgba(255,255,255,0) 70%);

    z-index: -1;

    opacity: 0.6;

    animation: pulseGlow 4s ease-in-out infinite alternate;

}



@keyframes floatLeft {

    0% { transform: translateY(-50%) translateX(0) rotate(-5deg); }

    50% { transform: translateY(-55%) translateX(10px) rotate(-2deg); }

    100% { transform: translateY(-50%) translateX(0) rotate(-5deg); }

}



@keyframes floatRight {

    0% { transform: translateY(-50%) translateX(0) rotate(5deg); }

    50% { transform: translateY(-45%) translateX(-10px) rotate(2deg); }

    100% { transform: translateY(-50%) translateX(0) rotate(5deg); }

}



@keyframes pulseGlow {

    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }

    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }

}



/* Hide floating images on smaller screens to keep it clean */

@media (max-width: 1200px) {

    .hero-float-container {

        display: none;

    }

}
/* ---------------- NEW KOMBİ CARD ARCHITECTURE ---------------- */
.kombiListesi {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kombiListesi:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 50px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    background: var(--bg-white);
}

.kombiListesi:hover img {
    transform: scale(1.05);
}

.kombi-split {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    margin-bottom: 0;
}

.kombi-img-col {
    flex: 0 0 calc(35% - 10px);
    max-width: calc(35% - 10px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.kombi-img-col img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.kombi-info-col {
    flex: 0 0 calc(65% - 10px);
    max-width: calc(65% - 10px);
    display: flex;
    flex-direction: column;
}

.kombi-info-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 8px;
    min-height: 40px;
}

.kombi-info-col .yildizlar {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFB800;
    font-size: 13px;
    margin-bottom: 12px;
}

.kombi-info-col .yildizlar .puan {
    color: var(--text-main);
    font-weight: 600;
}

.kombi-info-col .yildizlar .puanlama {
    color: var(--text-muted);
    margin-left: 4px;
}

.kombi-info-col .kapasite {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.kombi-info-col .kapasite b {
    color: var(--text-main);
}

.kombi-info-col .fiyat {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 12px 0;
}

.kombi-info-col .fiyat small {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.kombi-info-col .row.tablo {
    display: flex;
    justify-content: space-between;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    margin-top: auto;
}

.kombi-info-col .row.tablo .col-4 {
    flex: 1;
    padding: 0 4px;
}

.kombi-info-col .row.tablo span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.kombi-info-col .row.tablo p {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 4px;
    margin-bottom: 0;
}

.kombi-footer {
    margin-top: 20px;
    width: 100%;
}

.kombi-footer .butonlar {
    display: flex;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
}

.kombi-footer .butonlar .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    font-size: 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
    min-width: fit-content;
}

.kombi-footer .butonlar .btn i {
    margin-right: 6px;
    font-size: 14px;
}

.kombi-footer .butonlar .btn-primaryx {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.kombi-footer .butonlar .btn-primaryx:hover {
    border-color: var(--text-muted);
}

.kombi-footer .butonlar .btn-success {
    background: var(--brand-gradient);
    color: white !important;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.kombi-footer .butonlar .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
}

.kombi-footer .butonlar .btn-info {
    background: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.kombi-footer .butonlar .btn-info:hover {
    border-color: var(--text-muted);
}

@media (max-width: 576px) {
    .kombiListesi {
        padding: 16px;
    }
    .kombi-split {
        flex-direction: column;
        gap: 12px;
    }
    .kombi-img-col, .kombi-info-col {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }
    .kombi-img-col {
        margin-bottom: 8px;
    }
    .kombi-footer {
        margin-top: 12px;
    }
    .kombi-footer .butonlar {
        flex-direction: row;
    }
}
