/* style.css - iSecret Main Homepage Styles (Crisp Clean Light Edition) */

/* --------------------------------------------------
   1. Design Tokens & Global Defaults
-------------------------------------------------- */
:root {
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Crisp Light Color Palette */
  --bg-dark: #ffffff;
  --bg-slate: #ffffff;
  --bg-card: #ffffff;
  --border-light: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(168, 85, 247, 0.3);
  
  --text-primary: #0f172a;
  --text-muted: #475569;
  --text-dark: #0f172a;
  
  /* Accent Colors */
  --accent-purple: #a855f7;
  --accent-indigo: #6366f1;
  --accent-green: #10b981;
  --accent-gold: #ca8a04;
  --accent-coral: #ef4444;
  --accent-cyan: #06b6d4;
  
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* --------------------------------------------------
   2. Typography & Core Elements
-------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --------------------------------------------------
   3. Main Header Navigation
-------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-i-wrap {
  position: relative;
  display: inline-block;
  color: var(--accent-purple);
}

.logo-i-dot {
  position: absolute;
  top: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.45em;
  height: 0.45em;
  display: block;
  line-height: 0;
  animation: logoDotPulse 1.8s infinite ease-in-out;
}

.logo-i-dot svg {
  width: 100%;
  height: 100%;
  fill: var(--accent-purple);
  filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.6));
}

@keyframes logoDotPulse {
  0% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.85;
  }
}

.desktop-nav .nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.desktop-nav .nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.desktop-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-indigo));
  transition: width 0.3s ease;
}

.desktop-nav .nav-links a:hover {
  color: var(--text-primary);
}

.desktop-nav .nav-links a:hover::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-support {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.btn-support:hover {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-indigo) 100%);
  border-color: var(--accent-purple);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25);
  transform: translateY(-2px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* --------------------------------------------------
   4. Mobile Navigation Drawer
-------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  z-index: 999;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow);
}

.mobile-drawer.active {
  height: auto;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.btn-mobile-support {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  display: block;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

/* --------------------------------------------------
   5. Hero Section with Scrolling Marquees
-------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 95vh;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, transparent 75%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 75%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-badge-main {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-purple);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  font-weight: 900;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 10px;
}

.btn-hero-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-indigo) 100%);
  color: white;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 14px;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmerSweep 4s infinite ease-in-out;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35), 0 0 15px rgba(99, 102, 241, 0.25);
}

.hero-marquee-container {
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.sector-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 270px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  border-color: var(--accent-purple);
}

/* --------------------------------------------------
   6. "Neden Biz?" (Why Us) & Interactive Business Flow
-------------------------------------------------- */
.why-us-section {
  padding: 100px 0;
  position: relative;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.08);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(168, 85, 247, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-purple);
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.why-card:nth-child(2) .why-card-icon {
  background: rgba(16, 185, 129, 0.06);
  color: var(--accent-green);
  border-color: rgba(16, 185, 129, 0.1);
}

.why-card:nth-child(3) .why-card-icon {
  background: rgba(99, 102, 241, 0.06);
  color: var(--accent-indigo);
  border-color: rgba(99, 102, 241, 0.1);
}

.why-card:nth-child(4) .why-card-icon {
  background: rgba(6, 182, 212, 0.06);
  color: var(--accent-cyan);
  border-color: rgba(6, 182, 212, 0.1);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}

.why-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* API Developer Console - Premium Light Code Editor */
.api-console-wrapper {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 420px;
  transition: border-color 0.3s;
}

/* --------------------------------------------------
   7. Showroom Section (Active & Upcoming Panels)
-------------------------------------------------- */
.showroom-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.panels-showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.showroom-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showroom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(15, 23, 42, 0.005) 0%, transparent 60%);
  pointer-events: none;
  transition: background 0.3s;
}

.showroom-card:hover .card-glow {
  background: radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb-val), 0.04) 0%, transparent 70%);
}

.card-siparis { --accent-rgb-val: 168, 85, 247; }
.card-gelinlik { --accent-rgb-val: 16, 185, 129; }


.showroom-card.card-siparis:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.08);
}

.showroom-card.card-gelinlik:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.06);
}



.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--text-primary);
}

.card-badge-upcoming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  color: var(--accent-coral);
}

.card-icon {
  font-size: 2.2rem;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 800;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.card-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 18px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-card-explore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.card-siparis .btn-card-explore {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

.card-gelinlik .btn-card-explore {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}



.btn-card-explore:hover {
  transform: translateY(-2px);
}

.card-siparis .btn-card-explore:hover { box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35); }
.card-gelinlik .btn-card-explore:hover { box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3); }


.btn-card-explore svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-card-explore:hover svg {
  transform: translateX(4px);
}

/* Upcoming panels grid style updates */
.upcoming-card {
  background: #ffffff !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.upcoming-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(168, 85, 247, 0.25) !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04) !important;
}

/* --------------------------------------------------
   8. System Updates Timeline Section
-------------------------------------------------- */
.updates-section {
  padding: 100px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.updates-timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 10px 0;
}

.updates-timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-purple) 0%, var(--accent-indigo) 50%, var(--accent-green) 100%);
  border-radius: 99px;
  opacity: 0.15;
}

.updates-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.updates-loading {
  text-align: center;
  padding: 50px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.update-item {
  position: relative;
  display: flex;
  width: 100%;
}

.update-dot {
  position: absolute;
  left: 20px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--accent-purple);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.05);
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.update-item:hover .update-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(168, 85, 247, 0.15);
  background: var(--accent-purple);
}

.update-item.type-improvement .update-dot {
  border-color: var(--accent-indigo);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.05);
}

.update-item.type-improvement:hover .update-dot {
  background: var(--accent-indigo);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.15);
}

.update-item.type-fix .update-dot {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.05);
}

.update-item.type-fix:hover .update-dot {
  background: var(--accent-green);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15);
}

.update-content-card {
  flex: 1;
  margin-left: 65px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.update-item:hover .update-content-card {
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.04);
}

.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.update-version-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.update-version {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.update-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.update-badge.badge-new {
  background: rgba(168, 85, 247, 0.05);
  color: var(--accent-purple);
  border: 1px solid rgba(168, 85, 247, 0.1);
}

.update-badge.badge-improvement {
  background: rgba(99, 102, 241, 0.05);
  color: var(--accent-indigo);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.update-badge.badge-fix {
  background: rgba(16, 185, 129, 0.05);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.update-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.update-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.update-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.update-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.update-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
}

/* --------------------------------------------------
   9. Contact Us (Bize Ulaşın) Section Styles
-------------------------------------------------- */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.contact-badge {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--accent-green);
  align-self: flex-start;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 900;
}

.contact-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.c-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-icon {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--accent-purple);
}

.c-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.c-text p, .c-text a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.c-text a:hover {
  color: var(--accent-green);
}

/* Contact Form Styling */
.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
}

.secure-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-primary);
}

.form-group input, .form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s ease;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.08);
  background: #ffffff;
}

/* Captcha wrapper */
.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  padding: 12px 20px;
  border-radius: 12px;
}

.captcha-question {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
}

.captcha-wrapper input {
  width: 90px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text-primary);
  outline: none;
  font-weight: 800;
  text-align: center;
  font-size: 0.95rem;
}

.captcha-wrapper input:focus {
  border-color: var(--accent-purple);
}

/* Submit button */
.btn-submit-contact {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-indigo) 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
  transition: all 0.3s ease;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

/* --------------------------------------------------
   10. Premium Footer Section
-------------------------------------------------- */
.main-footer {
  background: #f8fafc;
  color: var(--text-muted);
  padding: 80px 24px 40px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-indigo), var(--accent-green));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.brand-logo-i {
  position: relative;
  display: inline-block;
  color: var(--accent-purple);
}

.brand-logo-dot {
  position: absolute;
  top: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.45em;
  height: 0.45em;
  display: block;
  line-height: 0;
  animation: logoDotPulse 1.8s infinite ease-in-out;
}

.brand-logo-dot svg {
  width: 100%;
  height: 100%;
  fill: var(--accent-purple);
  filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.6));
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-purple);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent-purple);
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

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

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-purple);
}

/* --------------------------------------------------
   11. Media Queries
-------------------------------------------------- */
@media (max-width: 992px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .panels-showroom-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .header-ctas .btn-support {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-section {
    padding: 120px 0 60px 0;
  }
  .updates-timeline-wrapper::before {
    left: 21px;
  }
  .update-dot {
    left: 10px;
  }
  .update-content-card {
    margin-left: 35px;
    padding: 16px 20px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .why-us-cards {
    grid-template-columns: 1fr;
  }
}

/* Status dots animations */
@keyframes blink-badge-status {
  0% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.35; transform: scale(0.9); }
}

.blink-dot-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
  animation: blink-badge-status 1.8s infinite ease-in-out;
}

.blink-dot-red {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
  animation: blink-badge-status 1.8s infinite ease-in-out;
}

/* --------------------------------------------------
   12. Floating Buttons
-------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 10px 16px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.sticky-footer-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sticky-footer-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shimmerSweep 3.5s infinite ease-in-out;
}

.sticky-footer-btn.btn-whatsapp::after {
  animation-delay: 1.7s;
}

@keyframes shimmerSweep {
  0% { left: -150%; }
  40% { left: 150%; }
  100% { left: 150%; }
}

.sticky-footer-btn.btn-call {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  animation: callGlowPulse 2.4s infinite ease-in-out;
}

.sticky-footer-btn.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  animation: waGlowPulse 2.4s infinite ease-in-out;
}

@keyframes callGlowPulse {
  0% { box-shadow: 0 0 4px rgba(15, 23, 42, 0.02); }
  50% { box-shadow: 0 0 10px rgba(15, 23, 42, 0.06); }
  100% { box-shadow: 0 0 4px rgba(15, 23, 42, 0.02); }
}

@keyframes waGlowPulse {
  0% { box-shadow: 0 0 6px rgba(37, 211, 102, 0.15); }
  50% { box-shadow: 0 0 14px rgba(37, 211, 102, 0.35); }
  100% { box-shadow: 0 0 6px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 767px) {
  .mobile-sticky-footer {
    display: grid;
  }
  body {
    padding-bottom: 64px !important;
  }
  .whatsapp-float {
    display: none !important;
  }
}

/* --------------------------------------------------
   13. Premium Ambient Light Blobs (Subtle Pastel)
-------------------------------------------------- */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  transition: all 0.6s ease;
}

.blob-purple {
  top: 5%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: var(--accent-purple);
  animation: floatBlob1 22s infinite ease-in-out alternate;
}

.blob-green {
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: var(--accent-green);
  animation: floatBlob2 26s infinite ease-in-out alternate;
}

.blob-indigo {
  top: 35%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: var(--accent-indigo);
  animation: floatBlob3 20s infinite ease-in-out alternate;
}

.blob-showroom-purple {
  top: 10%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: var(--accent-purple);
  animation: floatBlob1 28s infinite ease-in-out alternate;
}

.blob-showroom-green {
  bottom: 5%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: var(--accent-green);
  animation: floatBlob2 24s infinite ease-in-out alternate;
}

@keyframes floatBlob1 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatBlob2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-45px, 45px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1.15); }
}

@keyframes floatBlob3 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, -35px) scale(1.05); }
  66% { transform: translate(35px, 25px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

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

/* --------------------------------------------------
   14. Holographic Prism Visualization & HUD Elements
-------------------------------------------------- */
.ring-outer {
  border-radius: 50%;
  animation: rotateCW 20s linear infinite;
}

.ring-middle {
  animation: rotateCCW 12s linear infinite;
}

.pulse-path {
  stroke-dashoffset: 48;
  animation: strokePulse 3s linear infinite;
}

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

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

@keyframes corePulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2), inset 0 0 10px rgba(168, 85, 247, 0.05); 
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.35), inset 0 0 12px rgba(168, 85, 247, 0.1); 
  }
}

@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes strokePulse {
  to {
    stroke-dashoffset: 0;
  }
}

/* Responsive adjustments for brand nodes on smaller screens */
@media (max-width: 768px) {
  .brand-visualization-wrapper {
    min-height: 600px !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 40px 20px !important;
  }
  .brand-visualization-wrapper .tech-grid-bg,
  .brand-visualization-wrapper svg {
    display: none !important;
  }
  .concept-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none !important;
  }
  .concept-card {
    width: 260px !important;
    justify-content: flex-start !important;
  }
  .prism-container {
    order: -1 !important;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   Navigation Dropdowns
   ========================================================================== */
.desktop-nav .nav-links li {
  position: relative;
}

.desktop-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 8px 0;
  width: 220px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.desktop-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.desktop-nav .dropdown-menu li {
  width: 100%;
  list-style: none;
}

.desktop-nav .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.desktop-nav .dropdown-menu a::after {
  display: none !important;
}

.desktop-nav .dropdown-menu a:hover {
  background: rgba(168, 85, 247, 0.06);
  color: var(--accent-purple) !important;
}

.desktop-nav .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.desktop-nav .dropdown-trigger i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.desktop-nav .dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

/* Mobile Drawer Dropdown Styles */
.mobile-dropdown .mobile-link-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown .mobile-link-title::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.mobile-dropdown.active .mobile-link-title::after {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  margin-top: 8px;
  display: none;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid rgba(168, 85, 247, 0.15);
}

.mobile-dropdown.active .mobile-submenu {
  display: flex;
}

.mobile-sublink {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.mobile-link-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

