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

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
  /* Colors */
  --bg-dark: #07040f;
  --bg-card: rgba(13, 9, 29, 0.45);
  --bg-card-hover: rgba(22, 14, 46, 0.65);
  --border-glow: rgba(139, 92, 246, 0.15);
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-active: rgba(217, 70, 239, 0.25);
  
  --primary-neon: #8b5cf6;       /* Neon Violet */
  --secondary-neon: #d946ef;     /* Pink-Magenta */
  --accent-neon: #ec4899;        /* Hot Pink */
  --lavender-glow: #e9d5ff;      /* Soft Lavender Highlight */
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Gradients */
  --gradient-neon: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  --gradient-text: linear-gradient(135deg, #ffffff 30%, var(--lavender-glow) 70%, var(--secondary-neon) 100%);
  --gradient-bg-glow: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, rgba(7, 4, 15, 0) 70%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Blur */
  --shadow-neon-glow: 0 0 20px rgba(139, 92, 246, 0.25);
  --shadow-neon-glow-strong: 0 0 35px rgba(217, 70, 239, 0.4);
  --blur-glass: blur(16px) saturate(180%);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
}

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

/* Cosmic Ambient Background Glows */
body::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 45%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.06) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.bottom-glow {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 70, 239, 0.5);
}

/* Typography Selection */
::selection {
  background: rgba(217, 70, 239, 0.3);
  color: #fff;
}

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

ul {
  list-style: none;
}

/* ==========================================
   GLASSMORPHISM & PREMIUM UTILITIES
   ========================================== */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition-smooth);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: var(--gradient-card);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-active);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px 0 rgba(139, 92, 246, 0.12),
              0 0 25px 0 rgba(217, 70, 239, 0.05);
}

/* Sleek Glowing Divider Line */
.glow-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--border-glass-active), transparent);
  margin: 1.5rem 0;
}

/* Neon Text Gradient */
.text-glow-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

/* ==========================================
   BUTTON STYLES
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-neon);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-neon-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon-glow-strong);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--blur-glass);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* ==========================================
   STICKY GLASS NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(7, 4, 15, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-neon);
  border-radius: 10px;
  box-shadow: var(--shadow-neon-glow);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
}

.logo-subtext {
  font-size: 0.75rem;
  color: var(--secondary-neon);
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Nav Toggle */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 8% 60px 8%;
  overflow: hidden;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lavender-glow);
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.05);
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary-neon);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 4, 15, 0) 40%, rgba(7, 4, 15, 0.6) 100%),
              linear-gradient(to right, rgba(139, 92, 246, 0.1), rgba(217, 70, 239, 0.1));
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoom-slow 20s infinite alternate;
}

/* Abstract Glowing Shapes */
.hero-glow-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-glow-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid var(--secondary-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-neon);
}

.hero-glow-card-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-glow-card-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
.section {
  padding: 100px 8%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 5;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-neon);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about {
  z-index: 3;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 440px;
}

.about-img-box {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 4, 15, 0.4), transparent);
  z-index: 2;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-glow-border {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--border-glass-active);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(2px);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-item {
  display: flex;
  gap: 1rem;
}

.about-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-neon);
}

.about-item-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

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

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-neon);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background: var(--gradient-neon);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-neon-glow);
  transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-neon);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-link {
  color: var(--secondary-neon);
  opacity: 1;
}

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

.service-card-link svg {
  transition: var(--transition-fast);
}

/* ==========================================
   WHY CHOOSE US & COUNTERS
   ========================================== */
.why-choose-us {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.why-card {
  padding: 2.25rem;
  border-radius: 20px;
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(217, 70, 239, 0.08);
  border: 1px solid rgba(217, 70, 239, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-neon);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-card-icon {
  background: var(--gradient-neon);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-neon-glow-strong);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Counters Row */
.counters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

/* ==========================================
   CLIENT REVIEWS
   ========================================== */
.testimonials {
  position: relative;
}

.testimonials-slider-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 10px;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
}

.testimonial-stars {
  color: #fbbf24; /* Amber Gold Stars */
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.testimonial-quote {
  font-size: 1.35rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.2px;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-neon);
  margin-top: 0.25rem;
}

/* Testimonial Navs */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.testimonial-nav:hover {
  background: var(--gradient-neon);
  border-color: transparent;
  box-shadow: var(--shadow-neon-glow);
}

.testimonial-nav.prev {
  left: -70px;
}

.testimonial-nav.next {
  right: -70px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-dot.active {
  background: var(--secondary-neon);
  width: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-neon);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-text p, .contact-text a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-text a:hover {
  color: var(--primary-neon);
}

.contact-buttons-row {
  display: flex;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition-smooth);
}

.contact-btn-call {
  background: var(--gradient-neon);
  box-shadow: var(--shadow-neon-glow);
}

.contact-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon-glow-strong);
}

.contact-btn-wa {
  background: #25d366; /* WhatsApp Green */
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.25);
}

.contact-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.45);
}

/* Contact Form */
.contact-form-container {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-left: 0.25rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background: rgba(139, 92, 246, 0.04);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

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

/* Form Submit Button */
.btn-submit {
  border: none;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* Map Wrapper */
.map-container {
  grid-column: 1 / -1;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
  position: relative;
}

/* Style Google Map to dark cosmic theme */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.5) brightness(0.9);
}

/* Custom Alert Toast */
.toast {
  position: fixed;
  bottom: -100px;
  right: 30px;
  padding: 1rem 2rem;
  border-radius: 12px;
  background: rgba(13, 9, 29, 0.9);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-glass-active);
  color: #fff;
  box-shadow: 0 10px 35px rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2000;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateY(-130px);
  opacity: 1;
}

.toast-icon {
  color: #25d366;
  font-size: 1.25rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(180deg, rgba(7, 4, 15, 0.9) 0%, #04020a 100%);
  border-top: 1px solid var(--border-glass);
  padding: 80px 8% 30px 8%;
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  box-shadow: 0 0 40px 10px rgba(139, 92, 246, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer-social-icon:hover {
  background: var(--gradient-neon);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon-glow);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-neon);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-links a:hover {
  color: var(--primary-neon);
  transform: translateX(5px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--primary-neon);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

/* ==========================================
   ANIMATIONS & SCROLL REVEALS
   ========================================== */
@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.4); }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 8px rgba(217, 70, 239, 0); }
  100% { transform: scale(0.9); opacity: 0.8; box-shadow: 0 0 0 0 rgba(217, 70, 239, 0); }
}

@keyframes zoom-slow {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.12); }
}

/* Framer Motion Entry Effect Mockups */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================
   MEDIA QUERIES (MOBILE RESPONSIVENESS)
   ========================================== */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    height: 400px;
    order: -1;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    height: 380px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .counters-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 5%;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(7, 4, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-glass);
    overflow-y: auto;
  }
  .nav-links.open {
    left: 0;
  }
  .menu-btn {
    display: flex;
  }
  .nav-cta {
    display: none; /* Hide top buttons on mobile, integrated in nav list if needed */
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .btn {
    width: 100%;
  }
  
  .section {
    padding: 70px 5%;
  }
  .section-title {
    font-size: 2rem;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .testimonial-quote {
    font-size: 1.1rem;
  }
  .testimonial-nav {
    display: none; /* Hide arrows on mobile, rely on dots/swipe */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
