/* ============================================================
   AVISRENT — GLASSMORPHISM + 3D FX LAYER  v1.0
   Bu dosya mevcut style.css üzerine eklenir, içerik bozulmaz.
   ============================================================ */

:root{
  --glass-bg: rgba(18, 18, 28, 0.45);
  --glass-bg-strong: rgba(22, 22, 34, 0.62);
  --glass-border: rgba(255,255,255,0.10);
  --glass-border-strong: rgba(255,255,255,0.18);
  --glass-blur: 18px;
  --glass-blur-strong: 28px;
  --neon-red: #ff2a3c;
  --neon-purple: #8b5cf6;
  --neon-cyan: #22d3ee;
  --neon-gold: #facc15;
  --glass-shadow: 0 10px 40px -10px rgba(0,0,0,.6),
                  0 0 0 1px rgba(255,255,255,.04) inset,
                  0 1px 0 0 rgba(255,255,255,.08) inset;
  --glass-shadow-lg: 0 30px 80px -20px rgba(0,0,0,.75),
                     0 0 0 1px rgba(255,255,255,.06) inset,
                     0 1px 0 0 rgba(255,255,255,.12) inset;
}

/* ---------- Sayfa zemini: canlı mesh gradient + grain ---------- */
html{ background:#05050a; }
body{
  position: relative;
  background-color: #05050a;
  background-image:
    radial-gradient(1200px 800px at 10% -10%, rgba(216,30,5,.22), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(139,92,246,.18), transparent 55%),
    radial-gradient(800px 700px at 50% 120%, rgba(34,211,238,.10), transparent 60%),
    linear-gradient(180deg, #05050a 0%, #07070d 60%, #050509 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}
body::before{
  content:"";
  position: fixed; inset:0;
  pointer-events:none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity:.5;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Three.js canvas hedefi */
#glass-fx-canvas{
  position: fixed; inset:0;
  width:100vw; height:100vh;
  z-index: 0;
  pointer-events:none;
  opacity:.85;
}

/* Animasyonlu yüzen orb'lar (CSS) */
.glass-orb{
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity:.55;
  pointer-events:none;
  z-index: 0;
  will-change: transform;
}
.glass-orb.o1{ background: radial-gradient(circle, #ff2a3c 0%, transparent 60%); top:-160px; left:-160px; animation: orbA 22s ease-in-out infinite; }
.glass-orb.o2{ background: radial-gradient(circle, #8b5cf6 0%, transparent 60%); top:30%; right:-180px; animation: orbB 28s ease-in-out infinite; }
.glass-orb.o3{ background: radial-gradient(circle, #22d3ee 0%, transparent 60%); bottom:-200px; left:30%; animation: orbC 32s ease-in-out infinite; }
@keyframes orbA { 0%,100%{ transform: translate3d(0,0,0) scale(1) } 50%{ transform: translate3d(120px, 80px,0) scale(1.15) } }
@keyframes orbB { 0%,100%{ transform: translate3d(0,0,0) scale(1) } 50%{ transform: translate3d(-160px, 60px,0) scale(1.1) } }
@keyframes orbC { 0%,100%{ transform: translate3d(0,0,0) scale(1) } 50%{ transform: translate3d(80px,-120px,0) scale(1.18) } }

/* Tüm içerik canvas/orb üzerinde kalsın */
.top-banner, .header, .header-simple, .mobile-menu, main, section, footer,
.hero-compact, .av-vehicles, .pricing-calc-section,
.av-card, .stats-section, .features-section, .faq-section,
.av-floating-actions, .smart-chatbot, .lucky-wheel-fab,
.main-container, .campaign-card, .callout-box, .contact-container, .policy-section, .faq-section {
  position: relative;
  z-index: 1;
}

/* ---------- ÜST BAR ---------- */
.top-banner{
  background: linear-gradient(90deg, rgba(216,30,5,.85), rgba(139,92,246,.75)) !important;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.12);
  letter-spacing:.2px;
}

/* ---------- HEADER (glass) ---------- */
.header{
  background: rgba(8,8,14,.55) !important;
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  border-bottom: 1px solid var(--glass-border) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.header .logo-text{
  background: linear-gradient(120deg,#fff 0%, #ffb3b8 40%, #ff2a3c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 24px rgba(216,30,5,.35);
  letter-spacing:.5px;
}
.header .nav a{
  position: relative;
  transition: color .25s ease;
}
.header .nav a::after{
  content:""; position:absolute; left:50%; right:50%; bottom:-6px; height:2px;
  background: linear-gradient(90deg, #ff2a3c, #8b5cf6);
  border-radius: 2px; transition: left .3s ease, right .3s ease, opacity .3s ease;
  opacity:.0;
}
.header .nav a:hover::after, .header .nav a.active::after{ left:10%; right:10%; opacity:1; }
.header .nav a:hover{ color:#fff; }

/* Mobile menu glass */
.mobile-menu{
  background: rgba(10,10,16,.78) !important;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border:1px solid var(--glass-border) !important;
  border-radius: 16px !important;
}

.hero-compact{
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  padding: 120px 24px 80px !important;
  position: relative;
  overflow: hidden;
}
.hero-compact::before{
  content: "" !important;
  position: absolute !important;
  top: -20% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(218, 30, 5, 0.25) 0%, transparent 70%) !important;
  z-index: -1 !important;
  pointer-events: none !important;
  animation: none !important;
}
.hero-compact h1{
  background: linear-gradient(120deg, #ffffff 0%, #ffd2d6 40%, #ff2a3c 70%, #8b5cf6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 25px rgba(216,30,5,.65) !important;
  letter-spacing: -1.5px !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  font-family: 'Montserrat', sans-serif !important;
  max-width: 800px;
  margin: 0 auto 20px !important;
  line-height: 1.15 !important;
}

/* Hero butonlar — glass + neon */
.hbtn{
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border:1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.08) !important;
  color:#fff !important;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .25s;
}
.hbtn:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px -10px rgba(216,30,5,.45), 0 0 0 1px rgba(255,255,255,.18) inset;
  background: rgba(255,255,255,.14) !important;
}
.hbtn-call{ background: linear-gradient(135deg, rgba(216,30,5,.85), rgba(255,80,80,.65)) !important; border-color: rgba(255,90,90,.6) !important; }
.hbtn-wa{ background: linear-gradient(135deg, rgba(37,211,102,.85), rgba(20,140,90,.65)) !important; border-color: rgba(37,211,102,.6) !important; }

/* ---------- BUTONLAR ---------- */
.btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before{
  content:""; position:absolute; inset:-1px; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 50%);
  opacity:.5; pointer-events:none; z-index:-1;
}
.btn-primary{
  background: linear-gradient(135deg, #ff2a3c 0%, #b71c1c 100%) !important;
  box-shadow: 0 10px 30px -10px rgba(255,42,60,.55), 0 0 0 1px rgba(255,255,255,.1) inset !important;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px rgba(255,42,60,.7), 0 0 0 1px rgba(255,255,255,.18) inset !important;
}
.btn-whatsapp{
  box-shadow: 0 10px 30px -10px rgba(37,211,102,.55), 0 0 0 1px rgba(255,255,255,.1) inset !important;
}

/* Ripple aktivasyonu */
.btn[data-ripple]{ overflow: hidden; }
.btn .ripple{
  position:absolute; border-radius:50%;
  transform: scale(0); opacity:.55;
  background: radial-gradient(circle, rgba(255,255,255,.55), rgba(255,255,255,0) 70%);
  animation: rippleAnim .65s ease-out forwards;
  pointer-events:none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity:0; } }

/* ---------- SECTION TITLES ---------- */
.av-vehicles-header p,
.av-cm-eyebrow,
.section-eyebrow{
  background: linear-gradient(90deg, #ff2a3c, #8b5cf6, #22d3ee);
  -webkit-background-clip: text; background-clip: text; color: transparent !important;
  letter-spacing: 3px; font-weight: 700;
}
.av-vehicles-header h2,
section h2{
  background: linear-gradient(180deg, #ffffff 0%, #c9ccd6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 6px 30px rgba(255,255,255,.06);
}

/* ---------- ARAÇ KARTLARI — 3D GLASS ---------- */
.av-vehicles{
  background: transparent !important;
}
.av-card{
  background: var(--glass-bg) !important;
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px !important;
  box-shadow: var(--glass-shadow) !important;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .3s;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.av-card::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(600px 200px at var(--mx, 50%) var(--my, 0%),
      rgba(255,255,255,.10), transparent 50%);
  opacity:0; transition: opacity .35s;
  pointer-events:none;
  border-radius: inherit;
  z-index: 1;
}
.av-card:hover::before{ opacity:1; }
.av-card:hover{
  border-color: var(--glass-border-strong) !important;
  box-shadow: var(--glass-shadow-lg), 0 30px 60px -15px rgba(255,42,60,.25) !important;
}
.av-card > *{ position:relative; z-index: 2; }

.av-card-img{
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.av-card-img::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events:none;
}
.av-card-img img{
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.av-card:hover .av-card-img img{ transform: scale(1.08) rotate(-.3deg); }

/* Badges glow pulse */
.av-badge-glowing{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.18);
  animation: badgePulse 2.4s ease-in-out infinite;
}
.av-badge-danger{ background: linear-gradient(135deg, #ff2a3c, #b71c1c) !important; }
.av-badge-gold{ background: linear-gradient(135deg, #facc15, #b45309) !important; color:#1a1a1a !important; }
.av-badge-blue{ background: linear-gradient(135deg, #22d3ee, #2563eb) !important; }
@keyframes badgePulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(255,42,60,.0), 0 6px 20px rgba(0,0,0,.4); }
  50%{ box-shadow: 0 0 0 6px rgba(255,42,60,.0), 0 6px 30px rgba(255,42,60,.45); }
}

/* Price rows */
.av-card-prices {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 8px;
    margin-top: 12px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.av-price-row {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.av-price-row span:first-child {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 600;
}
.av-price-row span:last-child {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff !important;
}
.av-price-row.highlight {
    background: linear-gradient(135deg, rgba(216, 30, 5, 0.12), rgba(139, 92, 246, 0.12)) !important;
    border: 1px solid rgba(216, 30, 5, 0.25) !important;
}
.av-price-row.highlight span:first-child {
    color: #ff9d94 !important;
}
.av-price-row.highlight span:last-child {
    color: #ff3b4e !important;
    text-shadow: 0 0 10px rgba(216, 30, 5, 0.4);
    font-size: 1.05rem !important;
}
.av-btn-satinal{
  background: linear-gradient(90deg, #D81E05, #ff523b) !important;
  box-shadow: 0 4px 15px rgba(216, 30, 5, 0.25) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 12px 0 !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  transition: all 0.2s !important;
  box-sizing: border-box !important;
}
.av-btn-satinal:hover{
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(216, 30, 5, 0.4) !important;
  opacity: 0.95 !important;
}
.av-btn-teklif{
  background: rgba(255,255,255,.05) !important;
  border:1px solid rgba(255,255,255,.15) !important;
  backdrop-filter: blur(8px);
  transition: background .25s, transform .25s;
}
.av-btn-teklif:hover{ background: rgba(255,255,255,.12) !important; transform: translateY(-2px); }

/* ---------- HESAPLAYICI / FORM PANEL ---------- */
.pricing-calc-container,
.calc-summary-panel,
.contact-form, .contact-info,
.feature-card, .stat-card, .faq-item{
  background: var(--glass-bg-strong) !important;
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px !important;
  box-shadow: var(--glass-shadow) !important;
}
.calc-input, input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], select, textarea{
  background: rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  color:#fff !important;
  border-radius: 12px !important;
  backdrop-filter: blur(6px);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.calc-input:focus, input:focus, select:focus, textarea:focus{
  border-color: rgba(255,42,60,.55) !important;
  box-shadow: 0 0 0 4px rgba(255,42,60,.15) !important;
  background: rgba(255,255,255,.06) !important;
  outline: none !important;
}
.calc-action-btn{
  background: linear-gradient(135deg, #ff2a3c 0%, #8b5cf6 100%) !important;
  box-shadow: 0 14px 40px -10px rgba(139,92,246,.55) !important;
  transition: transform .25s, box-shadow .25s;
}
.calc-action-btn:hover{ transform: translateY(-2px); box-shadow: 0 22px 60px -10px rgba(139,92,246,.7) !important; }

/* ---------- KAMPANYA / DİĞER KARTLAR ---------- */
.campaign-card, .why-card, .feature-item, .info-card, .price-card, .accordion-item, .why-us-card, .vehicle-card{
  background: var(--glass-bg) !important;
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border: 1px solid var(--glass-border) !important;
  border-radius: 18px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .25s;
}
.campaign-card:hover, .why-card:hover, .feature-item:hover, .price-card:hover, .why-us-card:hover, .vehicle-card:hover{
  transform: translateY(-6px);
  border-color: var(--glass-border-strong) !important;
  box-shadow: var(--glass-shadow-lg) !important;
}

/* ---------- FOOTER / İLETİŞİM ---------- */
footer, .site-footer{
  background: rgba(5,5,10,.6) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
}

/* ---------- SCROLL REVEAL ---------- */
[data-fx="reveal"]{
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-fx="reveal"].is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------- CUSTOM CURSOR DISABLED ---------- */
/* Using standard browser cursor as requested */

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 10px; height:10px; }
::-webkit-scrollbar-track { background: #0a0a12; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff2a3c, #8b5cf6);
  border-radius: 8px; border:2px solid #0a0a12;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #ff5a6a, #a78bfa); }

/* ---------- SELECTION ---------- */
::selection{ background: rgba(255,42,60,.5); color:#fff; }

/* ---------- FLOATING ACTIONS (whatsapp / chatbot) ---------- */
.av-floating-actions a, .smart-chatbot-toggle, .lucky-wheel-fab{
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.15) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.45) !important;
  transition: transform .3s ease, box-shadow .3s ease;
}
.av-floating-actions a:hover, .smart-chatbot-toggle:hover, .lucky-wheel-fab:hover{
  transform: translateY(-3px) scale(1.06);
}

/* ---------- SECTION & HEADER OVERRIDES ---------- */
.why-us-section,
.testimonials-section,
.pricing-calc-section,
.vehicles-section,
.faq-section,
.contact-info-section {
  background: transparent !important;
}

.testimonial-carousel-wrapper {
  overflow: visible !important;
}

.page-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 60px 24px 20px !important;
  margin-bottom: 30px !important;
  box-shadow: none !important;
}

/* ---------- CTA SECTION GLASSMORPHISM ---------- */
.cta-section {
  background: linear-gradient(135deg, rgba(216, 30, 5, 0.25) 0%, rgba(139, 92, 246, 0.15) 100%) !important;
  backdrop-filter: blur(var(--glass-blur)) saturate(160%) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%) !important;
  border-top: 1px solid var(--glass-border) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}

/* ---------- FOOTER CONTACT INFO FIX ---------- */
ul.contact-info {
  background: var(--glass-bg-strong) !important;
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 16px !important;
  box-shadow: var(--glass-shadow) !important;
  padding: 24px 20px !important;
  margin: 10px 0 0 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.contact-info li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.contact-info li svg {
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

/* ---------- GLASS POPUP MODAL ---------- */
.glass-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.glass-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.glass-popup-card {
  background: var(--glass-bg-strong) !important;
  backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(160%);
  border: 1px solid var(--glass-border) !important;
  border-radius: 28px !important;
  padding: 40px 32px !important;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: var(--glass-shadow-lg) !important;
  position: relative;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.glass-popup-overlay.active .glass-popup-card {
  transform: scale(1) translateY(0);
}
.glass-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.glass-popup-close:hover {
  color: #fff;
}
.glass-popup-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(255,42,60,0.4));
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.glass-popup-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #ffb3b8 40%, #ff2a3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass-popup-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.glass-popup-btn {
  width: 100%;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- SECTION TITLES & HEADINGS ---------- */
.section-title,
.av-vehicles-header h2 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  letter-spacing: -1px !important;
  background: linear-gradient(135deg, #ffffff 10%, #ffd2d6 50%, #ff2a3c 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  filter: drop-shadow(0 4px 15px rgba(216, 30, 5, 0.45)) !important;
  margin-bottom: 40px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  position: relative !important;
  padding-bottom: 15px !important;
}

.section-title::after,
.av-vehicles-header h2::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #ff2a3c, #8b5cf6) !important;
  border-radius: 2px !important;
  box-shadow: 0 0 10px rgba(216, 30, 5, 0.6) !important;
}

@media (max-width: 768px) {
  .section-title,
  .av-vehicles-header h2 {
    font-size: 2rem !important;
    margin-bottom: 30px !important;
  }
}

/* ---------- TILT 3D ---------- */
[data-tilt]{
  transform-style: preserve-3d;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}

/* ---------- MOTION PREF ---------- */
@media (prefers-reduced-motion: reduce){
  .hero-compact::before, .glass-orb { animation: none !important; }
  [data-fx="reveal"]{ opacity:1 !important; transform:none !important; }
  #glass-fx-canvas{ display:none; }
}

/* ---------- MOBİL OPTİMİZASYONLARI ---------- */
@media (max-width: 768px){
  .glass-orb{ width: 320px; height:320px; filter: blur(60px); opacity:.45; }
  :root{ --glass-blur: 12px; --glass-blur-strong: 18px; }
  body{ cursor: auto; }
  .glass-cursor{ display:none !important; }
}

/* ---------- VEHICLE CARD BUTTONS & PRICE BOXES (UNIFIED WITH HOMEPAGE) ---------- */
.rent-now-btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: 15px !important;
  margin-bottom: 12px !important;
}

.rent-now-btn,
.vehicles-section .btn-primary,
.vehicles-section .vehicle-footer .btn-primary {
  background: linear-gradient(90deg, #D81E05, #ff523b) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(216, 30, 5, 0.25) !important;
  transition: all 0.2s !important;
  box-sizing: border-box !important;
  border: none !important;
  font-family: 'Montserrat', sans-serif !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.rent-now-btn:hover,
.vehicles-section .btn-primary:hover,
.vehicles-section .vehicle-footer .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(216, 30, 5, 0.4) !important;
  opacity: 0.95 !important;
}

.whatsapp-btn,
.vehicles-section .btn-outline,
.vehicles-section .vehicle-footer .btn-outline {
  background: linear-gradient(90deg, #FF6B00, #FF8C00) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  border-radius: 10px !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2) !important;
  transition: all 0.2s !important;
  padding: 10px 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
}

.whatsapp-btn:hover,
.vehicles-section .btn-outline:hover,
.vehicles-section .vehicle-footer .btn-outline:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35) !important;
  opacity: 0.95 !important;
}

.call-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  border-radius: 10px !important;
  transition: all 0.2s !important;
  padding: 10px 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
}

.call-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* Unified Premium Glassmorphic Price boxes */
.vehicle-prices {
  display: flex !important;
  justify-content: space-between !important;
  gap: 8px !important;
  padding: 8px !important;
  margin-top: 14px !important;
  margin-bottom: 14px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.price-box {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  padding: 4px !important;
  text-align: center !important;
}

.price-box.online {
  background: rgba(216, 30, 5, 0.08) !important;
  border: 1px solid rgba(216, 30, 5, 0.25) !important;
  border-radius: 8px !important;
}

.price-box.online .price-value {
  color: #ff3b4e !important;
  text-shadow: 0 0 10px rgba(216, 30, 5, 0.4) !important;
}

.price-label {
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
}

.price-value {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.vehicle-deposit {
  border: none !important;
  text-align: center !important;
  font-size: 0.82rem !important;
  color: var(--neutral-medium) !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
}

/* Hemen Kirala button text color overrides to match the homepage white color scheme exactly */
.rent-now-btn,
.vehicles-section .btn-primary,
.vehicles-section .vehicle-footer .btn-primary,
.vehicle-card .btn-primary,
.vehicle-card .rent-now-btn,
a.rent-now-btn,
a.btn-primary,
.av-btn-satinal,
a.av-btn-satinal {
  color: #ffffff !important;
}
