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

/* Tasarım Sistemi Değişkenleri */
:root {
  --bg-main: #070a13;
  --bg-surface: #0f1626;
  --bg-glass: rgba(15, 22, 38, 0.65);
  --bg-input: rgba(7, 10, 19, 0.6);
  --border-glass: rgba(255, 255, 255, 0.07);
  --accent-cyan: #00f2fe;
  --accent-purple: #9b51e0;
  --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #9b51e0 100%);
  --accent-gradient-hover: linear-gradient(135deg, #00d9e4 0%, #3b94e6 50%, #8940cc 100%);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-neon: 0 0 20px rgba(0, 242, 254, 0.15);
  --shadow-purple: 0 0 20px rgba(155, 81, 224, 0.15);
  --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius-lg: 16px;
  --radius-md: 10px;
  --glow-1: rgba(0, 242, 254, 0.08);
  --glow-2: rgba(155, 81, 224, 0.08);
}

/* Açık Renk Tema Değişkenleri */
body.light-mode {
  --bg-main: #f0f4f8; /* Softer light blue-grey to reduce glare */
  --bg-surface: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-input: #e2e8f0;
  --border-glass: rgba(0, 0, 0, 0.06);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --glow-1: rgba(0, 180, 216, 0.15);
  --glow-2: rgba(247, 37, 133, 0.1);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* Genel Sınıflar ve Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Grid & Layout */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
  text-shadow: var(--shadow-neon);
}

.btn-nav {
  background: var(--accent-gradient);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
  background: var(--accent-gradient-hover);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Background Gradients */
.bg-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--glow-1) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: floatGlow1 8s ease-in-out infinite alternate;
}

.bg-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--glow-2) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: floatGlow2 10s ease-in-out infinite alternate;
}

.bg-glow-3 {
  position: absolute;
  top: 45%;
  right: -10%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, var(--glow-2) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: floatGlow2 12s ease-in-out infinite alternate;
}

.bg-glow-4 {
  position: absolute;
  top: 75%;
  left: -10%;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, var(--glow-1) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  pointer-events: none;
  animation: floatGlow1 14s ease-in-out infinite alternate;
}

@keyframes floatGlow1 {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(4vw, 5vh) scale(1.1); }
  100% { transform: translate(-2vw, -8vh) scale(0.9); }
}

@keyframes floatGlow2 {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(-5vw, -6vh) scale(1.15); }
  100% { transform: translate(3vw, 4vh) scale(0.95); }
}

/* Hero Section */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: var(--shadow-neon);
}

body.light-mode .hero-tag {
  background: rgba(0, 180, 216, 0.1);
  border-color: rgba(0, 180, 216, 0.25);
  color: #0077b6;
}

body.light-mode .hero-tag span {
  background-color: #0077b6;
  box-shadow: 0 0 8px rgba(0, 119, 182, 0.4);
}


.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-neon);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
  background: var(--accent-gradient-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--accent-purple);
  background: rgba(155, 81, 224, 0.05);
  transform: translateY(-3px);
}

/* Floating Box Visual (Hero Right Side) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.box-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
}

.box-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(155, 81, 224, 0.2) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.floating-box {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}

.inner-box {
  width: 140px;
  height: 140px;
  background: var(--accent-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-neon), var(--shadow-purple);
  transform: rotate(15deg);
  animation: spinSlow 20s linear infinite;
}

.inner-box svg {
  width: 60px;
  height: 60px;
  fill: #fff;
  transform: rotate(-15deg);
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

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

/* Section Common Header */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.18);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 242, 254, 0.05);
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: var(--shadow-neon);
}

body.light-mode .section-tag {
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.22);
  color: #0077b6;
  box-shadow: 0 2px 10px rgba(0, 119, 182, 0.03);
}

body.light-mode .section-tag::before {
  background-color: #0077b6;
  box-shadow: 0 0 8px rgba(0, 119, 182, 0.4);
}


.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.btn-service-action {
  width: 100%;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
  background: var(--accent-gradient);
  color: #fff !important;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
  margin-top: auto;
}

.btn-service-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.35);
  color: #fff !important;
}

.btn-service-action svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-smooth);
}

.btn-service-action:hover svg {
  transform: translateX(4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 242, 254, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent-cyan);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(155, 81, 224, 0.08);
  color: var(--accent-purple);
}

.service-card:nth-child(2) .service-icon svg {
  stroke: var(--accent-purple);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-cyan);
}

/* Feature Highlights */
.features-box {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  margin-top: 60px;
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.feature-item h4 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(155, 81, 224, 0.25);
}

.portfolio-img-container {
  height: 220px;
  background: linear-gradient(135deg, #161e31 0%, #0d1321 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Fake Browser Mockup content */
.mockup-window {
  width: 85%;
  height: 75%;
  background: #111827;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  height: 24px;
  background: #1f2937;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
}
.dot:nth-child(2) { background: #f59e0b; }
.dot:nth-child(3) { background: #10b981; }

.mockup-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: #374151;
}
.mockup-line.accent {
  background: var(--accent-gradient);
  width: 50%;
}

.mockup-hero {
  display: flex;
  gap: 10px;
}
.mockup-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-hero-right {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 6px;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-tag {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.portfolio-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-purple);
}

.portfolio-link:hover {
  color: var(--accent-cyan);
}

.portfolio-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.portfolio-link:hover svg {
  transform: translateX(4px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.pricing-card.popular {
  border-color: var(--accent-cyan);
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gradient);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 25px 0;
}

body.light-mode .pricing-divider {
  background: rgba(0, 0, 0, 0.08);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-title);
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features li.unavailable {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-features li.unavailable svg {
  stroke: var(--text-muted);
}

.btn-pricing {
  width: 100%;
  padding: 15px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
  background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
  border: none;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-card.popular .btn-pricing {
  background: var(--accent-gradient);
  color: #070a13; /* Dark text on shiny gradient */
  border: none;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.35);
}

.pricing-card.popular .btn-pricing:hover {
  background: var(--accent-gradient-hover);
  box-shadow: 0 6px 25px rgba(0, 242, 254, 0.55);
  transform: translateY(-3px);
  color: #070a13;
}

body.light-mode .pricing-card.popular .btn-pricing {
  color: #ffffff; /* White text on light mode gradient */
}

.pricing-card.today-deal .btn-pricing {
  background: linear-gradient(135deg, #ffe259 0%, #ffa751 100%);
  color: #070a13;
  border: none;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 167, 81, 0.35);
}

.pricing-card.today-deal .btn-pricing:hover {
  background: linear-gradient(135deg, #fff07c 0%, #ffb76b 100%);
  box-shadow: 0 6px 25px rgba(255, 167, 81, 0.55);
  transform: translateY(-3px);
  color: #070a13;
}

.pricing-card:not(.popular):not(.today-deal) .btn-pricing:hover {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.5);
  transform: translateY(-3px);
  color: #ffffff !important;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(155, 81, 224, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-purple);
}

.contact-item h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-neon);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-neon);
}

.btn-submit:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
}

/* Footer */
.footer {
  background: #04060d;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .features-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-main);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: 0.4s ease;
    align-items: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu.active ~ .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-menu.active ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-menu.active ~ .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  width: 40px;
  height: 40px;
}

.theme-toggle-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-neon);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Light Mode Overrides for Contact Form and Footer */
body.light-mode .form-control {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.15);
  color: #0f172a;
}

body.light-mode .form-control:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px rgba(155, 81, 224, 0.1);
}

body.light-mode .form-label {
  color: var(--text-secondary);
}

body.light-mode .contact-icon {
  background: rgba(155, 81, 224, 0.12);
}

body.light-mode .hero-tag {
  background: rgba(0, 180, 216, 0.16);
  border-color: rgba(3, 105, 161, 0.28);
  color: #0369a1;
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.12);
}

body.light-mode .hero-tag span {
  background-color: #0369a1;
  box-shadow: 0 0 12px rgba(3, 105, 161, 0.45);
}

body.light-mode .reference-card-detail h3,
body.light-mode .reference-card-detail h4,
body.light-mode .reference-card-detail span[style*="color:#fff"],
body.light-mode .reference-card-detail span[style*="color: #fff"] {
  color: var(--text-primary) !important;
}

body.light-mode .reference-card-detail [style*="rgba(255,255,255,0.02)"] {
  background: rgba(15, 23, 42, 0.03) !important;
  border-color: rgba(15, 23, 42, 0.06) !important;
}

body.light-mode .footer {
  background: #f1f5f9;
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.06);
}

/* Cart Animation Overlay & Stage (Transparent page-layer) */
.cart-animation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 99999;
  overflow: hidden;
  pointer-events: none;
}

.flying-cart-particle {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px var(--accent-purple), 0 0 40px var(--accent-cyan);
  z-index: 100000;
  animation: flyToCart 0.9s cubic-bezier(0.25, 1, 0.50, 1) forwards;
  pointer-events: none;
}

.flying-cart-particle svg {
  width: 20px;
  height: 20px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes flyToCart {
  0% {
    transform: translate(var(--start-x), var(--start-y)) scale(0.4);
    opacity: 0;
  }
  20% {
    transform: translate(var(--start-x), var(--start-y)) scale(1.2);
    opacity: 1;
  }
  90% {
    transform: translate(var(--end-x), var(--end-y)) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) scale(0.1);
    opacity: 0;
  }
}

/* Floating Shopping Cart Container Bottom Right */
.cart-floating-container {
  position: fixed;
  bottom: 170px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-floating-btn {
  background-color: var(--bg-surface);
  border: 2px solid var(--accent-purple);
  color: var(--text-primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-purple);
  transition: var(--transition-smooth);
}

.cart-floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent-purple);
}

.cart-floating-btn.bounce {
  animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); box-shadow: 0 0 35px var(--accent-cyan); }
}

/* Tooltip Above Cart */
.cart-tooltip {
  position: absolute;
  bottom: 75px;
  right: -10px;
  background: var(--accent-gradient);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: var(--shadow-neon);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.cart-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* Warehouse / Depot Garage gate */
.warehouse-depot {
  position: absolute;
  bottom: -2px;
  width: 50px;
  height: 15px;
  background: #0f1626;
  border: 1px solid var(--accent-cyan);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  display: flex;
  overflow: hidden;
}

.depot-door {
  width: 100%;
  height: 100%;
  background: var(--accent-cyan);
  opacity: 0.8;
  transition: height 0.3s ease;
}

.warehouse-depot.open .depot-door {
  height: 0%;
}

/* Portfolio Filter Buttons */
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.portfolio-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Premium Order Wizard Styling - Sporty Light Theme */
.g-modal-overlay {
  backdrop-filter: blur(15px) !important;
  background: rgba(15, 23, 42, 0.35) !important;
}

.g-modal-card {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15), 0 0 1px rgba(15, 23, 42, 0.2) !important;
  color: #0f172a !important;
  border-radius: 24px !important;
}

/* Wizard Header */
.g-modal-card > div:first-child {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.95)) !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

/* Step Indicator Area */
.g-modal-card > div:nth-child(2) {
  background: #f8fafc !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 18px 28px !important;
}

.wiz-step-circle {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-size: 0.85rem !important;
  border: 2px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #64748b !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Active Step Circle: Sporty Blue Gradient */
.wiz-step-item.active .wiz-step-circle {
  border-color: transparent !important;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3) !important;
}

.wiz-step-item.active .wiz-step-label {
  color: #3b82f6 !important;
  font-weight: 700 !important;
}

.wiz-step-item.completed .wiz-step-circle {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
}

.wiz-step-item.completed .wiz-step-label {
  color: #10b981 !important;
}

/* Package Cards Step 1 */
.wiz-pkg-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.wiz-pkg-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6 !important; /* Sporty Blue */
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.12) !important;
}

.wiz-pkg-card.active {
  border-color: #3b82f6 !important;
  background: rgba(59, 130, 246, 0.03) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.06) !important;
}

.wiz-pkg-card.active .wiz-pkg-check {
  border-color: #3b82f6 !important;
  background: #3b82f6 !important;
}

.wiz-pkg-card.active .wiz-pkg-check::after {
  content: '✓';
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75rem;
}

/* Form inputs & select fields inside wizard */
.g-modal-card input[type="text"],
.g-modal-card input[type="password"],
.g-modal-card select,
.g-modal-card textarea {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 0.9rem !important;
  transition: all 0.25s ease !important;
}

.g-modal-card input[type="text"]:focus,
.g-modal-card input[type="password"]:focus,
.g-modal-card select:focus,
.g-modal-card textarea:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15) !important;
  outline: none !important;
}

/* Form labels inside wizard */
.g-modal-card .form-label {
  color: #334155 !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  display: block;
}

/* Custom Scrollbar inside Wizard */
.wiz-body-scroll::-webkit-scrollbar {
  width: 6px;
}
.wiz-body-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.wiz-body-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.wiz-body-scroll::-webkit-scrollbar-thumb:hover {
  background: #3b82f6;
}

/* Toggle Switch */
.wiz-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.wiz-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.wiz-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wiz-toggle-slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.wiz-toggle-switch input:checked + .wiz-toggle-slider {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
  border-color: transparent !important;
}

.wiz-toggle-switch input:checked + .wiz-toggle-slider::before {
  transform: translateX(20px);
}

/* --- Premium Device Simulator --- */
.simulator-container {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .simulator-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Controls Panel */
.sim-controls-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.sim-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.sim-selectors-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.sim-select-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-select-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sim-select-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.sim-select-btn.active span {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Info Card */
.sim-info-card {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 24px;
  animation: fadeIn 0.4s ease-out;
}

.sim-info-title {
  font-size: 1.4rem;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 10px;
}

.sim-info-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lighthouse scores styling */
.sim-lighthouse-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.lh-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lh-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #10b981; /* Default high score */
  background: rgba(16, 185, 129, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2), inset 0 0 5px rgba(16, 185, 129, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.lh-circle.high {
  border-color: #10b981;
  color: #10b981;
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2), inset 0 0 5px rgba(16, 185, 129, 0.1);
}

.lh-circle.avg {
  border-color: #f59e0b;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2), inset 0 0 5px rgba(245, 158, 11, 0.1);
}

.lh-circle.low {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2), inset 0 0 5px rgba(239, 68, 68, 0.1);
}

.lh-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}

/* Live Link button */
.sim-live-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sim-live-btn:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.35);
  transform: translateY(-2px);
}

/* Mockup Display Wrapper */
.sim-display-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

/* View Mode Selector */
.sim-mode-selector {
  display: flex;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 5px;
}

.sim-mode-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sim-mode-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-cyan);
}

/* Simulated screen styles */
.sim-screen-container {
  width: 100%;
  max-width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  perspective: 1000px;
  position: relative;
}

/* Shimmer Loader for Simulator */
.sim-shimmer-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0d1321;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.sim-shimmer-loader.loading {
  opacity: 1;
  pointer-events: auto;
}

.sim-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(0, 242, 254, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: simSpin 0.8s infinite linear;
}

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

.sim-shimmer-bar {
  width: 130px;
  height: 8px;
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
  animation: shimmerAnim 1.4s infinite linear;
  border-radius: 4px;
}

@keyframes shimmerAnim {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Desktop Laptop Macbook Frame */
.sim-laptop-frame {
  background: #0f172a;
  border: 8px solid #27272a;
  border-top: 24px solid #27272a; /* Thicker top bezel for realistic camera/header look */
  border-bottom: 4px solid #27272a;
  border-radius: 12px 12px 0 0;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-laptop-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 20%, transparent 20%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

/* Macbook Bottom keyboard base shelf */
.sim-laptop-base {
  width: 108%;
  margin-left: -4%;
  height: 8px;
  background: #3f3f46;
  border-radius: 0 0 120px 120px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  border-bottom: 3px solid #18181b;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 4px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 8px 8px;
}

/* Phone Frame (iPhone Style) */
.sim-phone-frame {
  width: 100%;
  max-width: 375px; /* Increased from 320px */
  height: 760px; /* Increased from 640px */
  margin: 0 auto;
  border: 11px solid #1e1e24; /* Sleeker border */
  border-radius: 40px;
  background: #000;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 2px #3f3f46; /* metallic outer edge */
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-phone-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 20%, transparent 20%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

/* Dynamic Island */
.sim-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  z-index: 100;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.05);
}

/* Simulated Iframe Screen */
.sim-iframe-screen {
  width: 100%;
  height: 620px; /* Increased height */
  border: none;
  background: #0f172a;
  display: block;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sim-phone-frame .sim-iframe-screen {
  height: 100%;
}

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

@media (max-width: 480px) {
  .sim-lighthouse-scores {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .sim-select-btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
  }
  .sim-controls-panel {
    padding: 15px !important;
  }
}

/* Order Wizard Modal Mobile Styles */
@media (max-width: 768px) {
  #order-modal {
    padding: 0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  #order-modal .g-modal-card {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Hide desktop step indicator */
  #order-modal div[style*="display:flex; padding:14px 28px"] {
    display: none !important;
  }
  
  /* Show mobile progress bar wrapper */
  #order-modal .wiz-mobile-progress-wrap {
    display: flex !important;
  }
  
  /* Step 1 package grid - stack to 1 column on mobile */
  #wiz-step-1 > div[style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .wiz-pkg-card {
    padding: 12px 14px !important;
  }
  .wiz-pkg-card div[style*="font-size:1.3rem"] {
    font-size: 1.15rem !important;
  }
  
  /* Step 2 customizations grid - stack to 1 column on mobile */
  #wiz-custom-list {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  
  /* Step 3 forms grid - stack to 1 column */
  #wiz-step-3 form > div[style*="grid-template-columns"],
  #wiz-step-3 div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  #wiz-step-3 .form-control {
    height: 44px !important; /* Touch target optimization */
    font-size: 0.85rem !important;
  }
  #wiz-step-3 textarea.form-control {
    height: auto !important;
  }
  
  /* Body scroll padding and height calculation to leave space for header/footer */
  .wiz-body-scroll {
    padding: 16px 16px 80px 16px !important; /* Leave room for sticky footer */
    flex: 1 !important;
    max-height: none !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Header adjustments */
  #order-modal div[style*="padding:22px 28px 18px"] {
    padding: 16px 20px 14px !important;
    flex-shrink: 0 !important;
  }
  #order-modal h3 {
    font-size: 1.15rem !important;
  }
  
  /* Sticky/Fixed Footer at the bottom of viewport */
  #order-modal div[style*="padding:16px 28px"] {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    border-top: 1px solid var(--border-glass) !important;
    background: #090f19 !important; /* Solid dark theme background for mobile footer */
    z-index: 100 !important;
    flex-shrink: 0 !important;
  }
}

/* Customization Option Cards Styling */
.wiz-custom-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: all 0.25s ease;
  position: relative;
  box-sizing: border-box;
}
.wiz-custom-card.in-package {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.08) !important;
}
body.light-mode .wiz-custom-card.in-package {
  background: #f0fdf4 !important;
}
.wiz-custom-card.unavailable {
  opacity: 0.6;
  background: #f8fafc;
}
.wiz-custom-icon {
  font-size: 1.4rem;
  min-width: 32px;
  text-align: center;
}
.wiz-custom-info {
  flex: 1;
  min-width: 0;
}
.wiz-custom-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  word-break: break-word;
}
.wiz-custom-card.unavailable .wiz-custom-title {
  color: #94a3b8;
}
.wiz-custom-desc {
  font-size: 0.7rem;
  color: #94a3b8;
}
.wiz-custom-price {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 2px;
}
.wiz-custom-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
}
.wiz-custom-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .wiz-custom-card {
    flex-wrap: wrap !important;
    padding: 12px !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }
  .wiz-custom-icon {
    font-size: 1.2rem !important;
    min-width: 24px !important;
    margin-top: 2px !important;
  }
  .wiz-custom-info {
    width: calc(100% - 75px) !important;
    flex: none !important;
  }
  .wiz-custom-actions {
    width: 100% !important;
    margin-top: 4px !important;
    padding-left: 32px !important;
    flex-wrap: wrap !important;
    box-sizing: border-box !important;
  }
  .wiz-custom-toggle-wrap {
    margin-left: auto !important;
  }
}

/* Güne Özel Fırsat Kampanyası Pricing Card Highlights */
.pricing-card.today-deal {
  border: 2px solid #ffa751 !important;
  box-shadow: 0 0 25px rgba(255, 167, 81, 0.25) !important;
  transform: scale(1.02);
  animation: pulseGold 3s infinite ease-in-out;
}
@keyframes pulseGold {
  0% { box-shadow: 0 0 15px rgba(255, 167, 81, 0.2); }
  50% { box-shadow: 0 0 30px rgba(255, 167, 81, 0.45); }
  100% { box-shadow: 0 0 15px rgba(255, 167, 81, 0.2); }
}

@media (max-width: 768px) {
  #shopping-cart-box {
    right: 15px !important;
    left: 15px !important;
    width: auto !important;
    bottom: 95px !important;
    max-width: calc(100vw - 30px) !important;
    z-index: 999999 !important;
  }
}

/* --- Pricing Package Comparison Feature Styles --- */
.pricing-card.compare-selected {
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25) !important;
  transform: translateY(-5px);
}

.btn-compare-toggle {
  background: rgba(155, 81, 224, 0.1) !important;
  border: 1px solid rgba(155, 81, 224, 0.25) !important;
  color: #c084fc !important;
}

.btn-compare-toggle:hover {
  background: rgba(155, 81, 224, 0.18) !important;
  border-color: rgba(155, 81, 224, 0.5) !important;
  color: #e9d5ff !important;
}

.btn-compare-toggle.selected {
  background: var(--accent-purple) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(155, 81, 224, 0.3) !important;
}

.compare-modal-title {
  color: #ffffff;
}

/* Compare Modal Slide animation */
@keyframes modalSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Compare Table Styling */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  color: #fff;
  text-align: left;
}

.compare-table th, .compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table th {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

.compare-table td.feature-name-col {
  font-weight: 600;
  color: var(--text-secondary);
  width: 30%;
}

.compare-table td.package-col {
  text-align: center;
  width: 23%;
}

.compare-table th.package-header {
  text-align: center;
  font-size: 1.15rem;
  color: var(--accent-cyan);
}

.compare-table th.package-header.popular {
  color: #a78bfa; /* Lighter violet for high readability on dark background */
  background: rgba(155, 81, 224, 0.03);
}

.compare-table th.package-header.today-deal {
  color: #ffa751;
  background: rgba(255, 167, 81, 0.03);
}

.compare-feature-check {
  color: #10b981;
  font-size: 1.25rem;
  font-weight: bold;
}

.compare-feature-cross {
  color: #ef4444;
  font-size: 1.25rem;
  font-weight: bold;
}

/* Light mode overrides for comparison */
body.light-mode .btn-compare-toggle {
  background: #f1e7ff !important;
  border-color: rgba(161, 85, 255, 0.2) !important;
  color: #7c3aed !important;
}

body.light-mode .btn-compare-toggle:hover {
  background: #e9dbff !important;
  color: #6d28d9 !important;
}

body.light-mode .btn-compare-toggle.selected {
  background: #7c3aed !important;
  color: #fff !important;
  border-color: #7c3aed !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25) !important;
}

body.light-mode #compare-floating-bar {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: var(--accent-purple) !important;
  box-shadow: 0 10px 40px rgba(155, 81, 224, 0.15) !important;
}

body.light-mode #compare-floating-bar span {
  color: #0f172a !important;
}

body.light-mode #compare-floating-bar #compare-count {
  background: var(--accent-purple) !important;
  color: #fff !important;
}

body.light-mode #compare-modal {
  background: rgba(240, 244, 248, 0.95) !important;
}

body.light-mode .compare-modal-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .compare-modal-title {
  color: #0f172a !important;
}

body.light-mode .compare-table {
  color: #334155 !important;
}

body.light-mode .compare-table th, body.light-mode .compare-table td {
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .compare-table th {
  background: rgba(0, 0, 0, 0.02) !important;
  color: #1e293b !important;
}

body.light-mode .compare-table td.feature-name-col {
  color: #475569 !important;
}

body.light-mode .compare-table th.package-header {
  color: #0284c7 !important; /* Darker blue/sky for light mode readability */
}

body.light-mode .compare-table th.package-header.popular {
  color: #6d28d9 !important; /* Darker purple for light mode readability */
}

body.light-mode .compare-table th.package-header.today-deal {
  color: #b45309 !important; /* Darker orange/amber for light mode readability */
}

body.light-mode #compare-modal button[onclick="closeCompareModal()"] {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #0f172a !important;
}

/* Comparison Table Modern Solid Buttons */
.compare-table .btn-pricing {
  background: var(--accent-gradient) !important;
  color: #070a13 !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25) !important;
}

.compare-table .btn-pricing:hover {
  background: var(--accent-gradient-hover) !important;
  color: #070a13 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.45) !important;
}

/* Light mode overrides for table buttons */
body.light-mode .compare-table .btn-pricing {
  color: #ffffff !important;
}

body.light-mode .compare-table .btn-pricing:hover {
  color: #ffffff !important;
}












/* Segment Tabs Styles */
.segment-tabs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 30px auto 45px auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  width: fit-content;
  max-width: 100%;
  backdrop-filter: blur(10px);
  z-index: 10;
  position: relative;
}

.segment-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.segment-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.segment-btn.active {
  background: var(--accent-gradient);
  color: #070a13;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

/* Card Filtering Animations */
.pricing-card.filtered-out {
  display: none !important;
}

.pricing-card.fade-in-card {
  animation: cardFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Light mode overrides for segment tabs */
body.light-mode .segment-tabs-container {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .segment-btn {
  color: #475569;
}

body.light-mode .segment-btn:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.03);
}

body.light-mode .segment-btn.active {
  background: var(--accent-gradient);
  color: #070a13;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

.pricing-cat-desc-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.15);
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  animation: fadeIn 0.4s ease;
}

.pricing-cat-desc-box span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: var(--shadow-neon);
  flex-shrink: 0;
}

body.light-mode .pricing-cat-desc-box {
  background: rgba(0, 119, 182, 0.05);
  border-color: rgba(0, 119, 182, 0.15);
  color: #0f172a;
}

body.light-mode .pricing-cat-desc-box span.dot {
  background-color: #0077b6;
  box-shadow: 0 0 8px rgba(0, 119, 182, 0.4);
}

/* Mobile responsive styles for segment tabs and pricing grid */
@media (max-width: 768px) {
  .segment-tabs-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 16px;
    margin: 20px auto 30px auto;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
  }
  
  .segment-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }

  .segment-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .pricing-card {
    padding: 24px;
    max-width: 100%;
  }

  .pricing-card.popular {
    transform: none; /* Prevent scaling on mobile as it can break grid alignment */
  }
}

