/* ==========================================================================
   WP STORE - Modern, Premium CSS Design System
   Website: wpstore.com.tr
   Phone: 0532 332 3665
   Address: Hürriyet Mah. Beyzade Sitesi B Blok Onikişubat / Kahramanmaraş
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #07090f;
  --bg-surface: #0c111d;
  --bg-card: rgba(16, 23, 39, 0.75);
  --bg-card-hover: rgba(24, 34, 58, 0.9);
  --bg-glass: rgba(12, 17, 29, 0.8);
  --bg-input: rgba(15, 23, 42, 0.85);
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #00d2ff 0%, #3b82f6 50%, #6366f1 100%);
  --grad-wp: linear-gradient(135deg, #0073aa 0%, #00a0d2 100%);
  --grad-accent: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --grad-border: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 210, 255, 0.35), rgba(255, 255, 255, 0.04));
  
  /* Accent Colors */
  --cyan: #00d2ff;
  --blue: #3b82f6;
  --wp-blue: #0073aa;
  --indigo: #6366f1;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
  
  /* Text */
  --text-white: #ffffff;
  --text-main: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 210, 255, 0.15);
  
  /* Layout & Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1340px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmospheric Glow Orbs */
.bg-glow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: floatOrb 22s infinite alternate ease-in-out;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #00d2ff, #2563eb);
  top: -150px;
  left: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #6366f1, #0073aa);
  top: 40%;
  right: -150px;
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #10b981, #00d2ff);
  bottom: 5%;
  left: 20%;
  opacity: 0.16;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}

.badge-pill .dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0, 210, 255, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.btn-phone {
  background: rgba(0, 210, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 210, 255, 0.3);
}

.btn-phone svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-phone:hover {
  background: rgba(0, 210, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Header & Topbar
   ========================================================================== */
.topbar {
  background: rgba(8, 12, 22, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.45rem 0;
  position: relative;
  z-index: 50;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-phone-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.topbar-phone-link:hover {
  color: var(--cyan);
}

.topbar-desktop-only {
  display: inline;
}

.topbar-mobile-only {
  display: none;
}

.topbar-sep {
  display: inline-block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.topbar .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseTopbarDot 2s infinite ease-in-out;
}

@keyframes pulseTopbarDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 950;
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(7, 9, 15, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  border-bottom-color: rgba(0, 210, 255, 0.2);
}

.header .container {
  max-width: 1420px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.6));
}

.brand-title-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  white-space: nowrap;
}

.brand-name .tld {
  color: var(--cyan);
  font-size: 1.1rem;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.45rem 0.2rem;
  white-space: nowrap;
  display: inline-block;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hide call button in desktop header */
.header-actions .btn-phone {
  display: none;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.55rem;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Mobile Navigation Drawer (Hidden on Desktop, active on mobile)
   ========================================================================== */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #0b101c;
  border-left: 1px solid var(--border-light);
  z-index: 10000;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-drawer-actions .btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 0.85rem 1.25rem !important;
  font-size: 0.95rem !important;
  border-radius: var(--radius-full) !important;
}

.mobile-drawer-actions .btn svg {
  width: 17px !important;
  height: 17px !important;
  flex-shrink: 0 !important;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 5rem 0 4.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.7rem);
  letter-spacing: -1.2px;
  line-height: 1.14;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-item svg {
  color: var(--emerald);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Showcase Card */
.hero-visual {
  position: relative;
}

.hero-card-container {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.hero-card-container::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.browser-url {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  padding: 0.2rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.browser-url svg {
  width: 12px;
  height: 12px;
  color: var(--emerald);
}

/* Floating Metrics Inside Hero Showcase */
.speed-meter {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.meter-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.meter-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.meter-score {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(#10b981 356deg, rgba(255, 255, 255, 0.1) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--emerald);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.meter-score::before {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
}

.meter-score span {
  position: relative;
  z-index: 1;
}

.service-preview-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 210, 255, 0.3);
  transform: translateY(-2px);
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 210, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.mini-icon svg {
  width: 18px;
  height: 18px;
}

.mini-details h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.mini-details span {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Floating Status Pills */
.float-pill {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 3;
}

.float-pill svg {
  width: 18px;
  height: 18px;
}

.pill-1 {
  top: -15px;
  right: 20px;
  color: var(--emerald);
  border-color: rgba(16, 185, 129, 0.3);
  animation: floatUpDown 5s infinite ease-in-out;
}

.pill-2 {
  bottom: -15px;
  left: -20px;
  color: var(--cyan);
  border-color: rgba(0, 210, 255, 0.3);
  animation: floatUpDown 6s infinite ease-in-out 1s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Stats Banner
   ========================================================================== */
.stats-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(12, 17, 29, 0.4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.stat-num span {
  color: var(--cyan);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  letter-spacing: -0.8px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Services Section (Tabbed & Categorized)
   ========================================================================== */
.service-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: var(--grad-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(0, 210, 255, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.35);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-blue {
  background: rgba(0, 210, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 210, 255, 0.25);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-purple {
  background: rgba(99, 102, 241, 0.12);
  color: var(--indigo);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--grad-primary);
  color: #ffffff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.3rem;
  letter-spacing: -0.3px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
}

.service-feature-list li svg {
  width: 15px;
  height: 15px;
  color: var(--emerald);
  flex-shrink: 0;
}

.service-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-action-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.service-action-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.service-action-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Interactive Quote / Price & Duration Estimator
   ========================================================================== */
.calculator-section {
  background: linear-gradient(180deg, transparent 0%, rgba(12, 17, 29, 0.7) 50%, transparent 100%);
  padding: 6rem 0;
}

.calc-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  position: relative;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 3rem;
}

.calc-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-group-title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc-group-title svg {
  color: var(--cyan);
  width: 20px;
  height: 20px;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.calc-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
}

.calc-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 210, 255, 0.3);
}

.calc-option.selected {
  background: rgba(0, 210, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.calc-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.calc-option.selected .calc-checkbox {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #07090f;
}

.calc-checkbox svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.calc-option.selected .calc-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.calc-opt-info h5 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.calc-opt-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Calculator Summary Box */
.calc-summary-box {
  background: rgba(7, 9, 15, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.calc-summary-box h3 {
  font-size: 1.35rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.selected-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 120px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.selected-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-main);
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.selected-item-row span:last-child {
  color: var(--cyan);
  font-weight: 600;
}

.calc-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.calc-meta-row strong {
  color: var(--emerald);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.calc-total-box {
  background: rgba(0, 210, 255, 0.06);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.calc-total-box span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-total-box h4 {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--cyan);
  letter-spacing: -0.5px;
}

/* ==========================================================================
   Why Us / Features Section
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h4 {
  font-size: 1.15rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   Process / How We Work Section
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(0, 210, 255, 0.35);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.process-step h4 {
  font-size: 1.2rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(0, 210, 255, 0.35);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.35rem;
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.contact-info-card h3 {
  font-size: 1.75rem;
  letter-spacing: -0.5px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 22px;
  height: 22px;
}

.contact-text-box {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-text-box h5 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-text-box p, .contact-text-box a {
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-text-box a:hover {
  color: var(--cyan);
}

.contact-card-actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.contact-form-container h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #040609;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.1rem;
  color: var(--text-white);
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Service Details Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 210, 255, 0.15);
  transform: scale(0.92);
  transition: var(--transition);
  position: relative;
  padding: 2.5rem;
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.modal-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(0, 210, 255, 0.12);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-icon-badge svg {
  width: 30px;
  height: 30px;
}

.modal-title {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.modal-category-tag {
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-section-title {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.75rem;
  color: var(--text-white);
}

.modal-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.modal-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
}

.modal-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   Floating Dual Action Buttons (Marmara Medikal Style)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-left-btn {
  position: absolute;
  left: 25px;
  bottom: 0;
  pointer-events: auto;
}

.floating-right-btn {
  position: absolute;
  right: 25px;
  bottom: 0;
  pointer-events: auto;
}

/* Genel Buton Hap (Pill) Şekli */
.floating-tel-btn,
.floating-wa-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  width: 185px;
  height: 52px;
  box-sizing: border-box;
  color: #ffffff !important;
  position: relative;
  overflow: visible;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  text-decoration: none !important;
}

.floating-tel-btn:hover,
.floating-wa-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Kırmızı Telefon Butonu */
.floating-tel-btn {
  justify-content: flex-end;
  padding: 8px 18px 8px 45px;
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Yeşil WhatsApp Butonu */
.floating-wa-btn {
  justify-content: flex-start;
  padding: 8px 45px 8px 18px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Yuvarlak Taşmalı İkonlar */
.floating-tel-icon,
.floating-wa-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.floating-tel-icon {
  left: -14px;
  background: linear-gradient(135deg, #ef4444 0%, #c62828 100%);
  border: 2px solid #ffffff;
}

.floating-wa-icon {
  right: -14px;
  background: linear-gradient(135deg, #25d366 0%, #0e7065 100%);
  border: 2px solid #ffffff;
}

.floating-tel-icon svg,
.floating-wa-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
  display: block;
}

/* Dalgalanma ve Nefes Efektleri (Ripple & Pulse) */
.floating-tel-icon::before,
.floating-wa-icon::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  top: 50%;
  left: 50%;
  margin-top: -39px;
  margin-left: -39px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: fl-nefes 2s ease-in-out infinite;
  opacity: 0.35;
  pointer-events: none;
}
.floating-tel-icon::before { border: 4px solid #ef4444; }
.floating-wa-icon::before { border: 4px solid #25d366; }

.floating-tel-icon::after,
.floating-wa-icon::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: fl-ripple 2s ease infinite;
  opacity: 0;
  pointer-events: none;
}
.floating-tel-icon::after { border: 3px solid #ef4444; }
.floating-wa-icon::after { border: 3px solid #25d366; }

@keyframes fl-ripple {
  0% { transform: scale(0.85); opacity: 0.55; }
  70% { opacity: 0.15; }
  100% { transform: scale(1.7); opacity: 0; }
}

@keyframes fl-nefes {
  0% { transform: scale(0.95); opacity: 0.2; }
  50% { transform: scale(1.08); opacity: 0.45; }
  100% { transform: scale(0.95); opacity: 0.2; }
}

/* Metin Alanları */
.floating-tel-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: right;
  align-items: flex-end;
  z-index: 2;
  gap: 1px;
}

.floating-wa-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  align-items: flex-start;
  z-index: 2;
  gap: 1px;
}

.floating-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.floating-subtitle {
  font-family: var(--font-body);
  font-size: 0.76rem;
  line-height: 1.25;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Bildirim Rozeti (Badge) */
.floating-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  animation: pulseDot 2s infinite;
}

/* Bilgi Baloncuğu (Tooltip / Speech Bubble) */
.floating-wa-tooltip {
  position: absolute;
  top: -46px;
  right: 50px;
  background: #ffffff;
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.floating-wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
}

.floating-wa-tooltip.goster {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Sayfanın Başına Çık Butonu (Scroll to Top) */
.scroll-to-top-btn {
  position: absolute;
  bottom: 70px;
  right: -2px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 16, 28, 0.92);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 210, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 15;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-to-top-btn:hover {
  background: var(--cyan);
  color: #030712;
  border-color: var(--cyan);
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.6), 0 0 20px rgba(0, 210, 255, 0.4);
  transform: translateY(-4px) scale(1.08);
}

.scroll-to-top-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.25s ease;
}

.scroll-to-top-btn:hover svg {
  transform: translateY(-2px);
}

.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  animation: toastIn 0.3s ease-out forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Semantic Multi-Page Grid & Responsive Layout Classes
   ========================================================================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.about-stat-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 210, 255, 0.3);
}

.about-stat-box .stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-stat-box .stat-lbl {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.features-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.district-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-hero-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.why-us-split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.studio-visual-banner {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

.studio-visual-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7,9,15,0.95) 0%, rgba(7,9,15,0.7) 70%, transparent 100%);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Architecture
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .district-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-us-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1140px) {
  .nav-menu, .header-actions .header-cta {
    display: none !important;
  }
  
  .mobile-toggle {
    display: inline-flex !important;
  }

  .mobile-nav-drawer {
    display: flex;
  }

  /* Show call icon button on mobile/tablet header next to menu */
  .header-actions .btn-phone {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    line-height: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    background: rgba(0, 210, 255, 0.08) !important;
    border: 1px solid rgba(0, 210, 255, 0.28) !important;
    color: var(--cyan) !important;
    font-size: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease;
  }

  .header-actions .btn-phone span,
  .header-actions .btn-phone .btn-phone-text {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
  }

  .header-actions .btn-phone svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 auto !important;
    display: block !important;
    color: var(--cyan) !important;
    transition: transform 0.2s ease;
    transform: none !important;
  }

  .header-actions .btn-phone:hover,
  .header-actions .btn-phone:active {
    background: var(--cyan) !important;
    color: #030712 !important;
    border-color: var(--cyan) !important;
    box-shadow: 0 0 16px rgba(0, 210, 255, 0.45) !important;
    transform: scale(1.05) !important;
  }

  .header-actions .btn-phone:hover svg,
  .header-actions .btn-phone:active svg {
    color: #030712 !important;
  }
}

@media (max-width: 768px) {
  /* Global Mobile Spacing & Rhythm (Eliminates giant empty voids) */
  .section {
    padding: 2.75rem 0 !important;
  }

  .hero {
    padding: 2.25rem 0 1.75rem !important;
  }

  .container {
    padding: 0 1rem;
  }

  .section-header {
    margin: 0 auto 2rem;
    gap: 0.65rem;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem) !important;
    letter-spacing: -0.4px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem) !important;
    letter-spacing: -0.6px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Ergonomic Thumb-Friendly Full-Width Mobile CTA Buttons */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    align-items: stretch;
    margin-top: 0.25rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
    padding-top: 1.25rem;
    margin-top: 0.5rem;
  }

  .hero-trust-row .trust-item:last-child {
    grid-column: span 2;
    justify-content: center;
  }

  .trust-item {
    font-size: 0.82rem;
  }

  /* Clean Card Padding on Mobile */
  .hero-card-container {
    padding: 1.25rem 1rem;
  }

  .contact-info-card,
  .contact-form-container {
    padding: 1.5rem 1.15rem !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-info-card {
    gap: 1.5rem !important;
  }

  .contact-info-card h3,
  .contact-form-container h3 {
    font-size: 1.35rem;
  }

  .contact-info-card p,
  .contact-form-container p {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  .contact-card-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.65rem !important;
  }

  .contact-card-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
  }

  .contact-detail-item {
    gap: 0.85rem;
  }

  .contact-text-box {
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .calc-summary-box {
    padding: 1.35rem 1.15rem;
    position: static;
  }

  .why-card {
    padding: 1.35rem 1.15rem;
    gap: 0.75rem;
  }

  .process-step {
    padding: 1.35rem 1.15rem;
  }

  .service-card {
    padding: 1.35rem 1.15rem;
  }

  .sector-card {
    padding: 1.35rem 1.15rem;
  }

  .blog-card {
    padding: 1.35rem 1.15rem;
  }

  .breadcrumbs {
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  /* All Grids Collapse Smoothly to Single Column on Mobile */
  .services-grid,
  .sectors-grid,
  .district-cards-grid,
  .features-deliverables-grid,
  .services-hero-banner,
  .why-us-split-grid,
  .about-story-grid,
  .why-us-grid,
  .process-grid,
  .contact-grid,
  .footer-grid,
  .calc-options-grid,
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .about-stat-box {
    padding: 1rem 0.75rem;
  }

  .about-stat-box .stat-val {
    font-size: 1.75rem;
  }

  .about-stat-box .stat-lbl {
    font-size: 0.78rem;
  }

  /* Studio Visual Banner Overlay on Mobile */
  .studio-visual-overlay {
    position: static;
    background: rgba(7, 9, 15, 0.95);
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .studio-visual-overlay .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .studio-visual-overlay h3 {
    font-size: 1.15rem !important;
  }

  /* Floating WhatsApp Button on Mobile: Compact, elegant, never covers text */
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    z-index: 99;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  /* Topbar Mobile: Sleek, single-line, zero wrapping */
  .topbar {
    padding: 0.35rem 0;
    font-size: 0.76rem;
    background: rgba(6, 10, 20, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .topbar .container {
    padding: 0 0.75rem;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .topbar-right {
    display: none;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: nowrap;
  }

  .topbar-item {
    font-size: 0.76rem;
    white-space: nowrap;
    gap: 0.35rem;
  }

  .topbar-desktop-only {
    display: none !important;
  }

  .topbar-mobile-only {
    display: inline !important;
  }

  .topbar-sep {
    display: none !important;
  }

  /* Universal fallback for pages with legacy topbar markup */
  .topbar-left .topbar-item:first-child:not(:has(.topbar-desktop-only)) {
    font-size: 0;
  }
  .topbar-left .topbar-item:first-child:not(:has(.topbar-desktop-only)) svg {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
  .topbar-left .topbar-item:first-child:not(:has(.topbar-desktop-only)) strong {
    font-size: 0.76rem;
    color: #ffffff;
    margin-left: 0 !important;
  }

  .topbar-left .topbar-item:nth-child(2):not(:has(.topbar-desktop-only)) {
    font-size: 0;
  }
  .topbar-left .topbar-item:nth-child(2):not(:has(.topbar-desktop-only)) .dot {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
  }
  .topbar-left .topbar-item:nth-child(2):not(:has(.topbar-desktop-only))::after {
    content: '7/24 Destek';
    font-size: 0.76rem;
    color: var(--emerald);
    font-weight: 600;
  }

  /* Header & Navbar Mobile */
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 950;
    background: rgba(7, 9, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar {
    padding: 0.55rem 0;
    gap: 0.75rem;
  }

  .brand-logo {
    gap: 0.65rem;
  }

  .brand-logo-img {
    height: 38px;
    width: auto;
    border-radius: 0;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.35));
  }

  .brand-name {
    font-size: 1.22rem;
    line-height: 1.15;
    letter-spacing: -0.3px;
  }

  .brand-name .tld {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
    opacity: 0.82;
    line-height: 1.1;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  /* Sleek Call Icon Button on Mobile Header */
  .header-actions .btn-phone {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    line-height: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    background: rgba(0, 210, 255, 0.08) !important;
    border: 1px solid rgba(0, 210, 255, 0.28) !important;
    color: var(--cyan) !important;
    font-size: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease;
  }

  .header-actions .btn-phone span,
  .header-actions .btn-phone .btn-phone-text {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
  }

  .header-actions .btn-phone svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    margin: 0 auto !important;
    display: block !important;
    color: var(--cyan) !important;
    transition: transform 0.2s ease;
    transform: none !important;
  }

  .header-actions .btn-phone:hover,
  .header-actions .btn-phone:active {
    background: var(--cyan) !important;
    color: #030712 !important;
    border-color: var(--cyan) !important;
    box-shadow: 0 0 16px rgba(0, 210, 255, 0.45) !important;
    transform: scale(1.05) !important;
  }

  .header-actions .btn-phone:hover svg,
  .header-actions .btn-phone:active svg {
    color: #030712 !important;
  }

  /* Hamburger Toggle Button */
  .mobile-toggle {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    line-height: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease;
  }

  .mobile-toggle svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .mobile-toggle:hover,
  .mobile-toggle:active {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(0, 210, 255, 0.4) !important;
    color: var(--cyan) !important;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.25rem 0 !important;
  }

  .hero {
    padding: 2rem 0 1.5rem !important;
  }

  .container {
    padding: 0 0.85rem;
  }

  .about-stats-grid {
    gap: 0.6rem;
  }

  .about-stat-box {
    padding: 0.85rem 0.5rem;
  }

  .about-stat-box .stat-val {
    font-size: 1.55rem;
  }

  /* Dual Floating Action Buttons Mobile Adjustments */
  .floating-actions-container {
    bottom: 15px;
  }

  .floating-left-btn {
    left: 12px;
  }

  .floating-right-btn {
    right: 12px;
  }

  .floating-tel-btn,
  .floating-wa-btn {
    width: 144px;
    height: 46px;
  }

  .floating-tel-btn {
    padding: 6px 10px 6px 36px;
  }

  .floating-wa-btn {
    padding: 6px 36px 6px 10px;
  }

  .floating-tel-icon,
  .floating-wa-icon {
    width: 52px;
    height: 52px;
  }

  .floating-tel-icon {
    left: -10px;
  }

  .floating-wa-icon {
    right: -10px;
  }

  .floating-tel-icon svg,
  .floating-wa-icon svg {
    width: 22px;
    height: 22px;
  }

  .floating-tel-icon::before,
  .floating-wa-icon::before {
    width: 66px;
    height: 66px;
    margin-top: -33px;
    margin-left: -33px;
  }

  .floating-tel-icon::after,
  .floating-wa-icon::after {
    width: 52px;
    height: 52px;
    margin-top: -26px;
    margin-left: -26px;
  }

  .floating-title {
    font-size: 0.78rem;
  }

  .floating-subtitle {
    font-size: 0.68rem;
  }

  .floating-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -2px;
    right: -2px;
  }

  .floating-wa-tooltip {
    top: -42px;
    right: 44px;
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .scroll-to-top-btn {
    bottom: 60px;
    right: -2px;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
  }

  .contact-info-card,
  .contact-form-container {
    padding: 1.25rem 0.95rem !important;
  }

  .contact-card-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.55rem !important;
  }

  .contact-card-actions .btn {
    padding: 0.8rem 1rem !important;
    font-size: 0.9rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-text-box h5 {
    font-size: 0.78rem;
  }

  .contact-text-box p,
  .contact-text-box a {
    font-size: 0.95rem;
  }

  .form-control {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .topbar {
    font-size: 0.72rem;
    padding: 0.3rem 0;
  }

  .topbar-left {
    gap: 0.45rem;
  }

  .topbar-item {
    font-size: 0.72rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-name .tld {
    font-size: 0.85rem;
  }

  .brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.2px;
  }

  .brand-logo-img {
    height: 34px;
  }

  .header-actions .btn-phone,
  .mobile-toggle {
    width: 35px !important;
    height: 35px !important;
  }

  .header-actions .btn-phone svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
  }

  .mobile-toggle svg {
    width: 18px !important;
    height: 18px !important;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .contact-info-card,
  .contact-form-container {
    padding: 1.15rem 0.8rem !important;
  }

  .contact-info-card h3,
  .contact-form-container h3 {
    font-size: 1.25rem !important;
  }

  .floating-left-btn {
    left: 8px;
  }

  .floating-right-btn {
    right: 8px;
  }

  .floating-tel-btn,
  .floating-wa-btn {
    width: 135px;
    height: 42px;
  }

  .floating-tel-btn {
    padding: 4px 6px 4px 32px;
  }

  .floating-wa-btn {
    padding: 4px 32px 4px 6px;
  }

  .floating-tel-icon,
  .floating-wa-icon {
    width: 46px;
    height: 46px;
  }

  .floating-tel-icon {
    left: -8px;
  }

  .floating-wa-icon {
    right: -8px;
  }

  .floating-tel-icon svg,
  .floating-wa-icon svg {
    width: 19px;
    height: 19px;
  }

  .floating-title {
    font-size: 0.74rem;
  }

  .floating-subtitle {
    font-size: 0.64rem;
  }

  .scroll-to-top-btn {
    bottom: 54px;
    right: -2px;
    width: 36px;
    height: 36px;
  }

  .scroll-to-top-btn svg {
    width: 16px;
    height: 16px;
  }

  .floating-wa-tooltip {
    right: 36px;
  }
}

/* ==========================================================================
   Blog, Reader & Multi-page Components
   ========================================================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.breadcrumbs span {
  color: var(--cyan);
}

/* Blog Search & Filter Bar */
.blog-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-search-box {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 440px;
  flex: 1;
}

.blog-search-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem 0.75rem 2.8rem;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}

.blog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

/* Blog Cards Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.35);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-read-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: var(--text-white);
  transition: var(--transition);
}

.blog-card:hover .blog-card-title {
  color: var(--cyan);
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.blog-date {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-date svg {
  width: 14px;
  height: 14px;
}

.blog-read-more {
  color: var(--cyan);
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Pagination */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.page-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover {
  color: var(--text-white);
  border-color: rgba(0, 210, 255, 0.4);
}

.page-btn.active {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.page-dots {
  color: var(--text-muted);
  padding: 0 0.5rem;
}

/* Article Reader Layout */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--grad-primary);
  width: 0%;
  z-index: 99999;
  transition: width 0.1s ease;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.article-main {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.article-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  margin: 1rem 0;
  letter-spacing: -0.5px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #e2e8f0;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: #fff;
  letter-spacing: -0.4px;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
  list-style: disc;
}

.article-body blockquote {
  background: rgba(0, 210, 255, 0.06);
  border-left: 4px solid var(--cyan);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
  font-size: 1.02rem;
}

.article-tags-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.art-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.sidebar-box h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.toc-list a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.4;
  display: block;
}

.toc-list a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.mini-related-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.mini-related-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 210, 255, 0.3);
}

/* Regional & Sector Cards */
.region-card, .sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.region-card:hover, .sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.35);
  box-shadow: var(--shadow-lg);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-main {
    padding: 1.5rem;
  }
}


/* Geo Chips for Regional Quick Filters in Blog */
.geo-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: inherit;
}

.geo-chip:hover, .geo-chip.active {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--cyan);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.2);
}

/* Blog and Sector Card Image Styles */
.blog-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-img-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-img-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 2;
}

/* Sector Card with Image */
.sector-img-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.sector-img-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: 0 15px 35px rgba(0, 210, 255, 0.15);
}

.sector-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.sector-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-img-card:hover .sector-img-wrap img {
  transform: scale(1.06);
}

/* ==========================================================================
   WP STORE - Admin Management Panel Styles
   ========================================================================== */
.admin-body {
  background-color: #060912;
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
}

.admin-layout {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.admin-sidebar {
  width: 270px;
  background: rgba(10, 15, 29, 0.98);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  z-index: 100;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-brand {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-nav {
  padding: 1.25rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}

.admin-nav-link svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: var(--transition);
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.admin-nav-link:hover svg {
  color: var(--cyan);
}

.admin-nav-link.active {
  background: rgba(0, 210, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 210, 255, 0.25);
}

.admin-nav-link.active svg {
  color: var(--cyan);
}

.admin-badge {
  margin-left: auto;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--rose);
  color: #fff;
}

.admin-footer-actions {
  padding: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #080c16;
}

.admin-topbar {
  padding: 1rem 2rem;
  background: rgba(10, 15, 29, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-content {
  padding: 2rem;
  flex: 1;
}

.admin-grid-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  transform: translateY(-3px);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.admin-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.admin-table-wrap {
  overflow-x: auto;
  width: 100%;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.admin-table th {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.status-new {
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.status-read {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.admin-input, .admin-textarea, .admin-select {
  width: 100%;
  background: rgba(10, 15, 29, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.admin-input:focus, .admin-textarea:focus, .admin-select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}

.admin-form-group {
  margin-bottom: 1.35rem;
}

.admin-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.admin-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.flash-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flash-success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.flash-danger {
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  color: #fb7185;
}

@media (max-width: 900px) {
  .admin-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .admin-topbar {
    padding: 0.85rem 1rem;
  }
  .admin-content {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   Portfolio Gallery & Showcase System
   ========================================================================== */
.portfolio-hero-section {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  position: relative;
}

.portfolio-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.portfolio-hero-desc {
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.portfolio-stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(16, 23, 39, 0.7);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
  justify-content: center;
}

.pstat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pstat-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.2;
}

.pstat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pstat-sep {
  width: 1px;
  height: 28px;
  background: var(--border-subtle);
}

/* Filter Tabs */
.portfolio-filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
}

.portfolio-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: rgba(16, 23, 39, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.portfolio-filter-btn:hover {
  color: #fff;
  border-color: rgba(0, 210, 255, 0.35);
  background: rgba(24, 34, 58, 0.85);
  transform: translateY(-1px);
}

.portfolio-filter-btn.active {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.25);
}

.portfolio-filter-btn .count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  color: inherit;
  min-width: 18px;
}

.portfolio-filter-btn.active .count-badge {
  background: var(--cyan);
  color: #030712;
  font-weight: 700;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

/* Portfolio Card */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(16px);
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.38);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 210, 255, 0.12);
}

.portfolio-card.pcard-featured {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12);
}

.portfolio-card.pcard-featured:hover {
  border-color: rgba(99, 102, 241, 0.75);
  box-shadow: 0 18px 40px -5px rgba(0, 0, 0, 0.65), 0 0 30px rgba(99, 102, 241, 0.25);
}

/* Mockup Header */
.pcard-mockup-header {
  background: rgba(7, 9, 15, 0.85);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pcard-browser-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pcard-browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.pcard-browser-url {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pcard-browser-url svg {
  width: 12px;
  height: 12px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* Card Body */
.pcard-body {
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pcard-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  gap: 0.5rem;
}

.pcard-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.badge-cyan {
  background: rgba(0, 210, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 210, 255, 0.25);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-purple {
  background: rgba(99, 102, 241, 0.1);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.badge-rose {
  background: rgba(244, 63, 94, 0.1);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-indigo {
  background: rgba(129, 140, 248, 0.1);
  color: #a5b4fc;
  border: 1px solid rgba(129, 140, 248, 0.25);
}

.pcard-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseTopbarDot 2s infinite ease-in-out;
}

.pcard-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.pcard-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
}

.pcard-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.pcard-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.45;
}

.pcard-features li svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.pcard-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.2rem 0.55rem;
}

.pcard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-subtle);
  gap: 0.75rem;
}

.pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}

.pcard-btn svg {
  width: 14px;
  height: 14px;
}

.pcard-sublink {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.pcard-sublink:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

/* Portfolio Bottom CTA Card */
.portfolio-cta-card {
  background: linear-gradient(135deg, rgba(16, 23, 39, 0.85) 0%, rgba(12, 17, 29, 0.95) 100%);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 210, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.portfolio-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--grad-primary);
}

/* Responsive Portfolio */
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .portfolio-hero-section {
    padding: 3.5rem 0 1.5rem;
  }

  .portfolio-stats-bar {
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .pstat-sep {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .portfolio-filter-container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .portfolio-filter-container::-webkit-scrollbar {
    display: none;
  }

  .portfolio-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .portfolio-cta-card {
    padding: 2.25rem 1.25rem;
  }
}

/* ==========================================================================
   WordPress Plugin Showcase & Documentation Page (nobetci-eczane-eklentisi)
   ========================================================================== */
.plugin-hero-section {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  position: relative;
}

.plugin-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.plugin-hero-desc {
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.plugin-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.plugin-btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  border-radius: var(--radius-full);
}

/* Feature Filters */
.plugin-filters-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.plugin-filter-label {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.plugin-filter-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.plugin-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 23, 39, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
}

.plugin-filter-btn:hover {
  border-color: var(--cyan);
  color: var(--text-primary);
  background: rgba(0, 240, 255, 0.06);
  transform: translateY(-1px);
}

.plugin-filter-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

/* Cards Grid */
.plugin-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.plugin-feature-card {
  background: rgba(16, 23, 39, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}

.plugin-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 240, 255, 0.1);
}

.pf-card-image-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.pf-bg-blue { background: radial-gradient(circle at center, #1e3a8a 0%, #0f172a 100%); }
.pf-bg-purple { background: radial-gradient(circle at center, #4c1d95 0%, #0f172a 100%); }
.pf-bg-amber { background: radial-gradient(circle at center, #78350f 0%, #0f172a 100%); }
.pf-bg-emerald { background: radial-gradient(circle at center, #064e3b 0%, #0f172a 100%); }
.pf-bg-indigo { background: radial-gradient(circle at center, #312e81 0%, #0f172a 100%); }
.pf-bg-rose { background: radial-gradient(circle at center, #831843 0%, #0f172a 100%); }

.pf-card-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.plugin-feature-card:hover .pf-card-image-wrap img {
  transform: scale(1.05);
}

.pf-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pf-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  align-self: flex-start;
  text-transform: uppercase;
}

.pf-badge-cyan { background: rgba(0, 240, 255, 0.12); color: var(--cyan); border: 1px solid rgba(0, 240, 255, 0.25); }
.pf-badge-purple { background: rgba(139, 92, 246, 0.12); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.25); }
.pf-badge-amber { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.pf-badge-emerald { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }
.pf-badge-indigo { background: rgba(99, 102, 241, 0.12); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.25); }
.pf-badge-rose { background: rgba(244, 63, 94, 0.12); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.25); }

.pf-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.pf-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.pf-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pf-card-tags span {
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* Steps Grid */
.plugin-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.plugin-step-card {
  background: rgba(16, 23, 39, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.3s ease;
}

.plugin-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.plugin-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.35);
}

.plugin-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.plugin-step-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Code Snippet Box */
.plugin-code-box {
  background: #070b14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.plugin-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(16, 23, 39, 0.8);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.plugin-code-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.copy-shortcode-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
}

.plugin-code-content {
  padding: 1.5rem 1.25rem;
  font-family: monospace;
  font-size: 1.25rem;
  color: var(--cyan);
}

/* Parameter Table */
.plugin-table-wrap {
  background: rgba(16, 23, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.table-responsive {
  overflow-x: auto;
}

.plugin-params-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.plugin-params-table th {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-subtle);
}

.plugin-params-table td {
  padding: 1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plugin-params-table td code {
  background: rgba(0, 240, 255, 0.08);
  color: var(--cyan);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.88rem;
}

/* Specs Box */
.plugin-specs-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  background: rgba(16, 23, 39, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(12px);
}

.pspecs-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.pspec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  gap: 1rem;
}

.pspec-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pspec-val {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 700;
  text-align: right;
}

/* Legal Section */
.legal-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.legal-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 23, 39, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.legal-tab-btn:hover {
  border-color: var(--cyan);
  color: var(--text-primary);
}

.legal-tab-btn.active {
  background: var(--cyan);
  color: #070b14;
  border-color: var(--cyan);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.legal-tab-content {
  display: none;
}

.legal-tab-content.active {
  display: block;
  animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.legal-doc-card {
  background: rgba(16, 23, 39, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  line-height: 1.7;
}

.legal-doc-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-doc-section {
  margin-bottom: 2rem;
}

.legal-doc-section h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-doc-section h4 {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-doc-section p {
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.legal-doc-section ul {
  padding-left: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.legal-doc-section li {
  margin-bottom: 0.4rem;
}

/* Responsive Plugin Page */
@media (max-width: 1024px) {
  .plugin-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plugin-specs-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .plugin-hero-section {
    padding: 3.5rem 0 1.5rem;
  }

  .plugin-cards-grid {
    grid-template-columns: 1fr;
  }

  .plugin-steps-grid {
    grid-template-columns: 1fr;
  }

  .plugin-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .plugin-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .legal-doc-card {
    padding: 1.5rem;
  }

  .pspec-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .pspec-val {
    text-align: left;
  }
}

/* ==========================================================================
   Web Design Themed 404 Error Page
   ========================================================================== */
.error-404-section {
  padding: 4.5rem 0 5rem;
  text-align: center;
  position: relative;
}

.error-404-visual-wrap {
  position: relative;
  max-width: 650px;
  margin: 1.5rem auto 2.5rem;
  padding: 2.5rem 1rem;
}

.giant-404-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(5.5rem, 16vw, 10.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #00f0ff 0%, #8b5cf6 50%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 45px rgba(0, 240, 255, 0.25));
  user-select: none;
}

.broken-wireframe-cube {
  width: clamp(70px, 12vw, 120px);
  height: clamp(70px, 12vw, 120px);
  background: rgba(16, 23, 39, 0.85);
  border: 2px dashed var(--cyan);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25), inset 0 0 20px rgba(139, 92, 246, 0.2);
  animation: pulseWireframe 3s ease-in-out infinite;
}

@keyframes pulseWireframe {
  0%, 100% { transform: scale(1) rotate(0deg); border-color: var(--cyan); }
  50% { transform: scale(1.05) rotate(4deg); border-color: var(--rose); box-shadow: 0 0 35px rgba(244, 63, 94, 0.35); }
}

.cube-inner svg {
  width: clamp(35px, 6vw, 55px);
  height: clamp(35px, 6vw, 55px);
  color: var(--cyan);
  opacity: 0.9;
}

/* Floating Code Tags */
.float-tag {
  position: absolute;
  font-family: monospace;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(16, 23, 39, 0.85);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  animation: floatTag 4s ease-in-out infinite alternate;
}

.tag-top-left { top: 0; left: 5%; color: var(--cyan); border-color: rgba(0, 240, 255, 0.3); animation-delay: 0s; }
.tag-top-right { top: 10%; right: 5%; color: var(--rose); border-color: rgba(244, 63, 94, 0.3); animation-delay: 1s; }
.tag-bottom-left { bottom: 5%; left: 8%; color: #a78bfa; border-color: rgba(139, 92, 246, 0.3); animation-delay: 2s; }
.tag-bottom-right { bottom: 0; right: 8%; color: var(--amber); border-color: rgba(245, 158, 11, 0.3); animation-delay: 1.5s; }

@keyframes floatTag {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.error-404-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.error-404-desc {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Developer Console Card */
.error-console-card {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  background: #070b14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(16, 23, 39, 0.85);
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.console-title {
  font-family: monospace;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.console-badge {
  font-family: monospace;
  font-size: 0.65rem;
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose);
  border: 1px solid rgba(244, 63, 94, 0.3);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
}

.console-body {
  padding: 1.25rem;
  font-family: monospace;
  font-size: 0.88rem;
  line-height: 1.6;
}

.console-body p {
  margin-bottom: 0.4rem;
}

.console-body p:last-child {
  margin-bottom: 0;
}

.c-dim { color: #64748b; }
.c-blue { color: var(--cyan); font-weight: 600; }
.c-amber { color: #fbbf24; }
.c-rose { color: var(--rose); font-weight: 600; }
.c-emerald { color: var(--emerald); font-weight: 600; }

.error-404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Quick Links Directory */
.error-quick-wrap {
  border-top: 1px solid var(--border-subtle);
  padding-top: 3.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.error-quick-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.error-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.error-quick-card {
  background: rgba(16, 23, 39, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.error-quick-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 240, 255, 0.1);
}

.eq-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eq-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.eq-content {
  flex-grow: 1;
}

.eq-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}

.error-quick-card:hover .eq-content h4 {
  color: var(--cyan);
}

.eq-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.eq-arrow {
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.error-quick-card:hover .eq-arrow {
  transform: translateX(4px);
  color: var(--cyan);
}

/* Responsive 404 */
@media (max-width: 768px) {
  .error-404-section {
    padding: 3.5rem 0 3.5rem;
  }

  .float-tag {
    display: none;
  }

  .error-quick-grid {
    grid-template-columns: 1fr;
  }

  .error-404-actions {
    flex-direction: column;
  }

  .error-404-actions .btn {
    width: 100%;
    justify-content: center;
  }
}



