/* -------------------------------------------------------------------
 * PLUS YAZILIM & BİLİŞİM - Modern, Minimalist & %100 Mobil Uyumlu Stiller
 * ------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Color Palette */
  --primary: #0284c7;             /* Vibrant Sky Blue */
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;
  --primary-glow: rgba(2, 132, 199, 0.18);
  
  --accent: #0ea5e9;              /* Cyan/Blue Accent */
  --accent-teal: #0d9488;         /* Health & Trust Teal */
  --accent-indigo: #4f46e5;       /* Tech Indigo */
  
  --dark: #090e17;                /* Ultra Deep Slate */
  --dark-surface: #0f172a;        /* Card & Surface Dark */
  --dark-elevated: #1e293b;       /* Elevated dark element */
  --dark-border: rgba(255, 255, 255, 0.09);

  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --light-border: #e2e8f0;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.1), 0 0 1px 1px rgba(15, 23, 42, 0.02);
  --shadow-glow: 0 0 40px rgba(2, 132, 199, 0.15);
  
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  color: var(--dark-surface);
  letter-spacing: -0.02em;
  word-break: break-word;
}

.text-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-teal {
  color: var(--accent-teal) !important;
}

.text-indigo {
  color: var(--accent-indigo) !important;
}

.bg-teal {
  background-color: var(--accent-teal) !important;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag.dark {
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

/* ===================================================================
   NAVIGATION BAR (DESKTOP & MOBILE)
   =================================================================== */
header.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1040;
  width: 100%;
}

.navbar-custom {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  padding: 0.75rem 0;
  transition: var(--transition);
  z-index: 1030;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark-surface) !important;
  letter-spacing: -0.03em;
}

.brand-icon-box {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  flex-shrink: 0;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.navbar-toggler {
  padding: 6px 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #cbd5e1 !important;
  color: var(--dark-surface);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.navbar-toggler:hover {
  background: #f1f5f9;
  border-color: #94a3b8 !important;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.25);
}

.navbar-toggler i.bi-list {
  font-size: 1.75rem;
  line-height: 1;
  color: #0f172a;
  display: block;
}

.navbar-toggler-icon {
  width: 1.4em;
  height: 1.4em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  font-weight: 600;
  color: #334155 !important;
  font-size: 0.95rem;
  padding: 0.6rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  min-height: 44px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(2, 132, 199, 0.06);
}

.dropdown-menu {
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 260px;
  background: #ffffff;
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  min-height: 44px;
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.dropdown-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(2, 132, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* Mobile Navbar Expand Styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .navbar-nav {
    gap: 4px;
  }
  
  .dropdown-menu {
    border: 1px solid #e2e8f0;
    box-shadow: none;
    background: #f8fafc;
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 0.5rem;
  }
  
  .navbar-custom .btn-primary-modern {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* ===================================================================
   BUTTONS (TOUCH FRIENDLY)
   =================================================================== */
.btn-primary-modern {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff !important;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  text-decoration: none;
}

.btn-primary-modern:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-outline-modern {
  background: #ffffff;
  color: var(--dark-surface) !important;
  border: 1.5px solid var(--light-border);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  text-decoration: none;
}

.btn-outline-modern:hover {
  background: #f8fafc;
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===================================================================
   HERO SECTION (RESPONSIVE)
   =================================================================== */
.hero-section {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2.5rem, 5vw, 5rem) 0;
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.06) 0%, transparent 40%),
              #ffffff;
  border-bottom: 1px solid var(--light-border);
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 28px 28px;
  background-image: 
    linear-gradient(to right, rgba(226, 232, 240, 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.45) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  box-shadow: var(--shadow-sm);
}

.hero-pill i {
  color: var(--primary);
}

.hero-visual-card {
  position: relative;
  background: var(--dark-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.4);
  color: #fff;
  width: 100%;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background-color: #ef4444; }
.terminal-dot.yellow { background-color: #f59e0b; }
.terminal-dot.green { background-color: #10b981; }

.tech-tag-chip {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.72rem;
  font-family: monospace;
  color: #38bdf8;
}

/* ===================================================================
   STATS SECTION (RESPONSIVE 2X2 ON MOBILE)
   =================================================================== */
.stats-section {
  padding: 2.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--light-border);
}

.stat-item {
  padding: 0.75rem 0.5rem;
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-number {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: clamp(0.78rem, 1vw + 0.5rem, 0.9rem);
  font-weight: 600;
  color: var(--text-muted);
}

/* ===================================================================
   PRODUCT CARDS (PlusClinic & PlusLMS)
   =================================================================== */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.4);
}

.product-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border: 1.5px solid rgba(2, 132, 199, 0.3);
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-clinic {
  background: #ccfbf1;
  color: #0f766e;
}

.badge-lms {
  background: #e0e7ff;
  color: #4338ca;
}

.badge-dicom {
  background: #e0f2fe;
  color: #0284c7;
}

.product-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.icon-clinic {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.icon-lms {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.icon-dicom {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.25);
}

.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  flex-grow: 1;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: #334155;
}

.feature-check-list li i {
  color: #059669;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================================================
   SERVICES GRID (7 CORE OFFERINGS)
   =================================================================== */
.services-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background-color: var(--light-bg);
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: #ffffff;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--dark-surface);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.service-tag {
  font-size: 0.72rem;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* ===================================================================
   WHY US / VALUE PROPOSITIONS
   =================================================================== */
.why-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: var(--dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-section h2, .why-section h3, .why-section h4 {
  color: #ffffff;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(2, 132, 199, 0.4);
  transform: translateY(-4px);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
}

/* ===================================================================
   PROCESS / WORKFLOW
   =================================================================== */
.process-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: #ffffff;
  border-bottom: 1px solid var(--light-border);
}

.process-card {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  height: 100%;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.process-step-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 0.85rem;
}

/* ===================================================================
   CONTACT / PROPOSAL SECTION
   =================================================================== */
.contact-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: #ffffff;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.contact-info-card {
  background: linear-gradient(145deg, #090e17 0%, #0f172a 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3, .contact-info-card h4 {
  color: #ffffff;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #38bdf8;
  flex-shrink: 0;
}

/* Forms: 16px min size on mobile avoids iOS safari auto-zoom */
.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-border);
  font-family: var(--font-main);
  font-size: 1rem;
  min-height: 54px;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer-custom {
  background: var(--dark);
  color: #94a3b8;
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem 0;
  border-top: 1px solid var(--dark-border);
}

.footer-custom h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.75rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* Floating Action Button (WhatsApp / Support) */
.floating-whatsapp {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
  right: max(20px, env(safe-area-inset-right, 20px));
  width: 54px;
  height: 54px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1020;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
  left: max(20px, env(safe-area-inset-left, 20px));
  width: 44px;
  height: 44px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 1010;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* Mobile Specific Optimizations */
@media (max-width: 575.98px) {
  .hero-badge-list {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-pill {
    width: 100%;
    justify-content: flex-start;
  }
  
  .hero-section .btn-primary-modern,
  .hero-section .btn-outline-modern {
    width: 100%;
    justify-content: center;
  }
  
  .product-card .btn-primary-modern,
  .product-card .btn-outline-modern {
    width: 100%;
    justify-content: center;
  }
  
  .stat-item {
    border: 1px solid #f1f5f9;
    padding: 1rem 0.5rem;
  }
}

/* ===================================================================
   COOKIE CONSENT BANNER
   =================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.5);
  z-index: 1040;
  padding: 1.25rem 1.5rem;
  animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: var(--transition);
}

@keyframes slideUpCookie {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cookie-consent-text {
  flex-grow: 1;
}

.cookie-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.cookie-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.5;
}

.cookie-link {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #7dd3fc;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}

@media (max-width: 575.98px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 1.15rem;
  }

  .cookie-consent-container {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-consent-actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .cookie-consent-actions button {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------------------------------------------------
 * SIKÇA SORULAN SORULAR (FAQ) & SEO ACCORDION
 * ------------------------------------------------------------------- */
.faq-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-surface);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: #f0f9ff;
  border-bottom: 1px solid rgba(2, 132, 199, 0.1);
}

.faq-accordion .accordion-body {
  padding: 1.35rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Google reCAPTCHA Styling & Responsive Scaling */
.g-recaptcha-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  margin: 0.5rem 0;
}

.g-recaptcha-wrapper .g-recaptcha-widget {
  transform-origin: center center;
  -webkit-transform-origin: center center;
}

@media (max-width: 380px) {
  .g-recaptcha-wrapper .g-recaptcha-widget {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
  }
}

/* Captcha Warning Modal */
#captchaWarningModal {
  z-index: 1070 !important;
}

#captchaWarningModal .modal-content {
  border: 1px solid rgba(245, 158, 11, 0.25) !important;
}