﻿/* =============================================
   HızlıMobilBozum — V2 LUXURY THEME
   Navy + Orange/Gold | Completely new look
   ============================================= */

:root {
  --bg: #0f0f23;
  --bg2: #13132b;
  --bg3: #1a1a3e;
  --surface: rgba(25, 25, 60, 0.6);
  --surface-solid: #16163a;
  --border: rgba(255,255,255,0.07);
  --border-active: rgba(255, 165, 0, 0.4);
  --text: #ffffff;
  --text2: #b8b8d4;
  --text3: #7a7a9e;
  --accent: #ff8c00;
  --accent2: #ffb347;
  --accent3: #ff6b00;
  --gradient: linear-gradient(135deg, #ff8c00, #ff5722, #ff8c00);
  --gradient-bg: linear-gradient(180deg, #0f0f23 0%, #1a1040 50%, #0f0f23 100%);
  --glow: 0 0 30px rgba(255, 140, 0, 0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
li { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; }

/* FLOATING SHAPES */
.floating-shapes { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: shapeFloat 20s ease-in-out infinite;
}
.shape-1 { width: 500px; height: 500px; top: -10%; right: -5%; background: var(--accent); animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; bottom: 20%; left: -10%; background: #7c3aed; animation-delay: -7s; }
.shape-3 { width: 300px; height: 300px; top: 50%; right: 30%; background: #06b6d4; animation-delay: -14s; }
@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* CONTAINER */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; border-radius: 50px; transition: all 0.3s ease;
  cursor: pointer; border: none; font-family: var(--font); white-space: nowrap;
  max-width: 100%;
}
.btn-glow {
  background: var(--gradient);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.875rem;
  box-shadow: var(--glow);
}
.btn-glow:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 40px rgba(255, 140, 0, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  padding: 12px 24px;
  font-size: 0.875rem;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-xl { padding: 16px 32px; font-size: 1rem; }
.btn-xxl { padding: 18px 32px; font-size: 1rem; }
@media (min-width: 640px) {
  .btn-xxl { padding: 20px 40px; font-size: 1.125rem; }
}
.btn svg { flex-shrink: 0; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient);
  border-radius: 10px;
  font-weight: 800; font-size: 0.75rem; color: #fff;
}
.logo-text { font-size: 1.1rem; font-weight: 700; }
.logo-text span { color: var(--accent); }

.nav { display: none; align-items: center; gap: 6px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav-link {
  padding: 8px 14px; font-size: 0.8125rem; font-weight: 500;
  color: var(--text2); border-radius: 8px; transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-close { display: none; position: absolute; top: 16px; right: 16px; font-size: 2rem; color: var(--text); }

.header-right { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: none; font-size: 0.8rem; font-weight: 600; color: var(--text2);
}
@media (min-width: 768px) { .header-phone { display: block; } }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 98;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
@media (max-width: 1023px) {
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    background: var(--bg2); border-left: 1px solid var(--border);
    padding: 64px 24px; z-index: 99; gap: 6px;
    animation: slideIn 0.3s ease;
  }
  .nav.open .nav-close { display: block; }
  .nav.open .nav-link { padding: 14px 16px; font-size: 1rem; }
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 140, 0, 0.06), transparent);
  pointer-events: none;
}
.hero-wrap { width: 100%; }
.hero-center { max-width: 720px; margin: 0 auto; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(255, 140, 0, 0.1); border: 1px solid rgba(255, 140, 0, 0.25);
  font-size: 0.8rem; font-weight: 500; color: var(--accent2);
  margin-bottom: 28px;
}
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem; color: var(--text2); max-width: 560px;
  margin: 0 auto 36px; line-height: 1.7;
}
.hero-sub strong { color: var(--text); }
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; padding: 0 8px; }
.hero-btns .btn { min-width: 0; }

/* METRICS */
.hero-metrics {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  max-width: 600px; margin: 0 auto;
}
@media (min-width: 640px) { .hero-metrics { grid-template-columns: repeat(4, 1fr); } }
.metric-card {
  padding: 20px 12px; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.metric-icon { color: var(--accent); margin-bottom: 8px; display: flex; justify-content: center; }
.metric-num { font-size: 1.375rem; font-weight: 800; font-family: var(--font-display); }
.metric-lbl { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* MARQUEE */
.marquee-bar {
  padding: 16px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); overflow: hidden;
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem; font-weight: 700; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.1em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 90px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg2); }
.sec-head { text-align: center; max-width: 560px; margin: 0 auto 50px; }
.sec-label {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  background: rgba(255, 140, 0, 0.1); border: 1px solid rgba(255, 140, 0, 0.2);
  font-size: 0.72rem; font-weight: 700; color: var(--accent2);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700; margin-bottom: 12px;
}
.sec-head p { font-size: 1rem; color: var(--text2); }
.center-cta { text-align: center; margin-top: 40px; }

/* PLATFORM CARDS */
.cards-grid { display: grid; gap: 14px; }
.cards-6 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .cards-6 { grid-template-columns: repeat(3, 1fr); } }

.platform-card {
  padding: 28px 20px; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.platform-card:hover { border-color: var(--border-active); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(255, 140, 0, 0.08); }
.platform-badge {
  width: 48px; height: 48px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-weight: 800; font-size: 0.75rem; color: #fff;
}
.platform-badge.tc { background: linear-gradient(135deg, #ffd000, #ffaa00); color: #1a1a00; }
.platform-badge.vf { background: linear-gradient(135deg, #e60000, #990000); }
.platform-badge.tt { background: linear-gradient(135deg, #0054a6, #003d7a); }
.platform-badge.rg { background: linear-gradient(135deg, #44d72c, #2d8c1f); }
.platform-badge.gp { background: linear-gradient(135deg, #4285f4, #2a5db0); }
.platform-badge.pc { background: linear-gradient(135deg, #ff6f00, #cc5900); }

.platform-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.platform-card p { font-size: 0.78rem; color: var(--text3); margin-bottom: 12px; }
.platform-rate {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: rgba(255, 140, 0, 0.1); color: var(--accent2);
  font-size: 0.72rem; font-weight: 700;
}
.platform-rate.hot { background: rgba(255, 140, 0, 0.2); border: 1px solid rgba(255, 140, 0, 0.3); }

/* OPERATORS GRID */
.operators-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .operators-grid { grid-template-columns: repeat(2, 1fr); } }
.operator-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(8px); transition: 0.3s;
}
.operator-card:hover { border-color: var(--border-active); }
.operator-header {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.operator-abbr {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-weight: 800; font-size: 0.72rem; color: #fff;
}
.op-turkcell { background: linear-gradient(135deg, #ffd000, #cc9900); color: #1a1a00; }
.op-vodafone { background: linear-gradient(135deg, #e60000, #990000); }
.op-turktelekom { background: linear-gradient(135deg, #0054a6, #003d7a); }
.op-razergold { background: linear-gradient(135deg, #44d72c, #2d8c1f); }
.op-googleplay { background: linear-gradient(135deg, #4285f4, #2a5db0); }
.op-paycell { background: linear-gradient(135deg, #ff6f00, #cc5900); }
.op-pokus { background: linear-gradient(135deg, #9c27b0, #6a1b7b); }
.operator-name { font-weight: 700; font-size: 0.9rem; }
.operator-rate {
  margin-left: auto; padding: 4px 12px; border-radius: 50px;
  background: rgba(255, 140, 0, 0.1); font-size: 0.72rem; font-weight: 700; color: var(--accent2);
}
.operator-prices { padding: 12px 20px; display: flex; flex-direction: column; gap: 4px; }
.operator-price {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px; border-radius: 8px; font-size: 0.8rem; transition: 0.2s;
}
.operator-price:hover { background: rgba(255,255,255,0.03); }
.operator-price.highlight { background: rgba(255, 140, 0, 0.08); border: 1px solid rgba(255, 140, 0, 0.15); font-weight: 600; }
.operator-price span:last-child { color: var(--accent2); font-weight: 600; }
.operator-cta { padding: 14px 20px; border-top: 1px solid var(--border); }

/* TIMELINE */
.timeline { max-width: 600px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), var(--border));
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 36px; align-items: flex-start; }
.timeline-num {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-solid); border: 2px solid var(--accent);
  border-radius: 50%; font-weight: 800; font-family: var(--font-display);
  font-size: 1rem; color: var(--accent); position: relative; z-index: 1;
}
.timeline-content { padding-top: 14px; }
.timeline-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-content p { font-size: 0.875rem; color: var(--text2); line-height: 1.7; }

/* TESTIMONIALS */
.testimonials-slider {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 640px) { .testimonials-slider { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-slider { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  padding: 24px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(8px); transition: 0.3s;
}
.review-card:hover { border-color: var(--border-active); }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.review-date { font-size: 0.7rem; color: var(--text3); }
.review-card > p { font-size: 0.85rem; color: var(--text2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff;
}
.review-author strong { display: block; font-size: 0.8rem; }
.review-author small { font-size: 0.7rem; color: var(--text3); }

/* FAQ */
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: 0.3s;
}
.faq-item:hover { border-color: var(--border-active); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; gap: 12px; transition: 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.05);
  font-size: 0.8rem; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 0.85rem; color: var(--text2); line-height: 1.7; }

/* CTA SECTION */
.section-cta { padding: 100px 0; position: relative; z-index: 1; overflow: hidden; }
.big-cta {
  text-align: center; padding: 60px 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .big-cta { padding: 60px 30px; } }
.big-cta::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent 70%);
  pointer-events: none;
}
.big-cta h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700; margin-bottom: 14px; position: relative;
}
.big-cta p { font-size: 1rem; color: var(--text2); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }

/* FOOTER */
.footer { padding: 60px 0 28px; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.85rem; color: var(--text2); margin-top: 12px; line-height: 1.7; }
.footer-contact { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.footer-contact span { font-size: 0.8rem; color: var(--text3); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; color: var(--text); }
.footer-col a { display: block; font-size: 0.82rem; color: var(--text2); margin-bottom: 8px; transition: 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.72rem; color: var(--text3); }

/* WA FLOAT */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; padding: 14px 18px; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s; animation: floatBounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); }
.wa-float-text { font-size: 0.8rem; font-weight: 600; display: none; }
@media (min-width: 768px) { .wa-float-text { display: block; } }
@keyframes floatBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero { min-height: auto; padding: 100px 0 50px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-metrics { gap: 10px; }
  .section { padding: 60px 0; }
  .timeline::before { left: 20px; }
  .timeline-num { width: 42px; height: 42px; font-size: 0.8rem; }
}
