
:root {
  --bg-dark: #0b1020;
  --bg-mid: #121a33;
  --primary: #3B82F6;   /* Better blue from logo */
  --primary-dark: #1E40AF;
  --primary-light: #60A5FA;
  --secondary: #8b5cf6; /* Purple glow */
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --shadow-blue: rgba(59, 130, 246, 0.5);
  --glow-blue: rgba(59, 130, 246, 0.3);
}

/* ---------------------- */
/* General Reset & Body   */
/* ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a2550, #0b1020 60%);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* ---------------------- */
/* Navbar - TRANSPARENT FLOATING STYLE */
/* ---------------------- */
.navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: rgba(11, 16, 32, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  padding: 5px 10px;
}

.navbar.scrolled {
  background: rgba(11, 16, 32, 0.85);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.3);
  top: 10px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--glow-blue));
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 20px var(--primary));
}

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

.nav-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px var(--shadow-blue);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.nav-cta::before {
  content: '📞';
  font-size: 1rem;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px var(--shadow-blue);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* Hamburger Menu - IMPROVED FLOATING STYLE */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 15px var(--shadow-blue);
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

.hamburger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px var(--shadow-blue);
}

.hamburger span {
  width: 20px;
  height: 2.5px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------------------- */
/* Page Hero - IMPROVED   */
/* ---------------------- */
.page-hero {
  text-align: center;
  padding: 130px 20px 60px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.2));
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, var(--glow-blue), transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.page-hero h1 {
  color: var(--primary-light);
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px var(--glow-blue);
  animation: fadeInUp 0.8s ease;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-main);
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

/* ---------------------- */
/* Sections - IMPROVED    */
/* ---------------------- */
section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Content wrapper for text with background card */
section > p,
section > ul,
section > ol,
.content-text {
  background: rgba(30, 41, 59, 0.4);
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 3px solid rgba(59, 130, 246, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  line-height: 1.8;
}

section > ul,
section > ol {
  padding-left: 50px;
}

h2 {
  color: var(--primary-light);
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

/* Service / Coach Cards - IMPROVED WITH ICONS */
.service-card,
.card,
.step,
.faq-item {
  background: linear-gradient(135deg, rgba(17, 18, 34, 0.8), rgba(26, 42, 80, 0.4));
  padding: 30px;
  margin-bottom: 25px;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Icon container for cards */
.service-card .card-icon,
.card .card-icon,
.step .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px var(--shadow-blue);
  transition: all 0.3s ease;
}

.service-card:hover .card-icon,
.card:hover .card-icon,
.step:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 25px var(--shadow-blue);
}

.card-icon svg,
.card-icon i {
  font-size: 28px;
  color: white;
}

/* Number badge for steps */
.step .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px var(--shadow-blue);
}

.service-card::before,
.card::before,
.step::before,
.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--glow-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before,
.card:hover::before,
.step:hover::before,
.faq-item:hover::before {
  opacity: 0.1;
}

.service-card:hover,
.card:hover,
.step:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-left-width: 6px;
  box-shadow: 0 10px 30px var(--shadow-blue);
  background: linear-gradient(135deg, rgba(26, 42, 80, 0.6), rgba(17, 18, 34, 0.9));
}

.service-card h3,
.card h3,
.step h3 {
  color: var(--primary-light);
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.service-card p,
.card p,
.step p,
.faq-item p {
  position: relative;
  z-index: 1;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Buttons - IMPROVED */
.btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 6px 25px var(--shadow-blue);
  border: 2px solid transparent;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--shadow-blue);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px var(--shadow-blue);
  border-color: transparent;
}

/* Forms - IMPROVED */
form {
  max-width: 650px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(17, 18, 34, 0.8), rgba(26, 42, 80, 0.4));
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-light);
  font-size: 0.95rem;
}

form input,
form select,
form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  background-color: rgba(26, 26, 46, 0.8);
  color: var(--text-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(26, 26, 46, 1);
  box-shadow: 0 0 20px var(--glow-blue);
}

form input::placeholder,
form textarea::placeholder {
  color: #888;
}

form button {
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
}

/* Footer - IMPROVED WITH SOCIAL ICONS */
.footer {
  background: linear-gradient(135deg, rgba(11, 16, 32, 0.95), rgba(17, 18, 34, 0.98));
  padding: 50px 20px 30px;
  text-align: center;
  color: var(--text-soft);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
}

.footer-contact a {
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

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

.footer-contact svg {
  width: 20px;
  height: 20px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 20px;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: white;
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 8px 25px var(--shadow-blue);
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0;
}

.footer a {
  color: var(--primary-light);
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.footer a:hover::after {
  width: 100%;
}

.footer a:hover {
  color: white;
  text-shadow: 0 0 10px var(--glow-blue);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Floating Social Buttons - IMPROVED */
.social-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.whatsapp-float,
.instagram-float {
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.instagram-float {
  background: linear-gradient(45deg, #405de6, #833ab4, #fd1d1d);
  color: white;
}

.whatsapp-float:hover,
.instagram-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
}

/* ---------------------- */
/* Hero Section - IMPROVED*/
/* ---------------------- */
.hero {
  background: linear-gradient(135deg, #0b1020, #1a2550);
  position: relative;
  overflow: hidden;
  padding: 140px 20px 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
  opacity: 0.15;
  animation: rotate 20s linear infinite;
}

#hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-main);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  color: var(--primary-light);
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 40px var(--glow-blue);
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  min-width: 200px;
}

/* Pricing Section - IMPROVED */
.pricing-section {
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.95), rgba(17, 18, 34, 0.95));
  color: var(--text-main);
  text-align: center;
  padding: 80px 20px;
}

.pricing-section h2 {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 15px;
  text-shadow: 0 0 30px var(--glow-blue);
}

.pricing-section p {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: var(--text-soft);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-cards .card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(17, 18, 34, 0.95));
  border-radius: 20px;
  padding: 40px 35px;
  width: 320px;
  box-shadow: 0 10px 40px var(--shadow-blue);
  text-align: left;
  transition: all 0.4s ease;
  border: 2px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.pricing-cards .card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--glow-blue), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-cards .card:hover::before {
  opacity: 0.1;
}

.pricing-cards .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px var(--shadow-blue);
  border-color: var(--primary);
}

.pricing-cards .card h3 {
  color: var(--primary-light);
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.pricing-cards .card .price {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

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

.pricing-cards .card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.pricing-cards .card ul li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.pricing-cards .card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-cards .card .btn-primary {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.pricing-note {
  margin-top: 30px;
  font-size: 1rem;
  color: var(--primary-light);
  font-style: italic;
}

.floating-btn {
  position: fixed;
  right: 20px;
  padding: 14px 24px;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  z-index: 999;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px var(--shadow-blue);
  animation: float 3s ease-in-out infinite;
}

.instagram-btn { bottom: 90px; }
.whatsapp-btn { bottom: 25px; }

.floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 40px var(--shadow-blue);
}

/* =============================================
   DEMO AUTOMATION SECTION STYLES
   ============================================= */

/* Demo Automation Section */
.demo-automation-section {
  text-align: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.demo-subtext {
  max-width: 700px;
  margin: 0 auto 50px;
}

.demo-subtext p {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.8;
  background: rgba(30, 41, 59, 0.4);
  padding: 20px 30px;
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  backdrop-filter: blur(5px);
}

/* Demo Image Container - Instagram Style */
.demo-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  max-width: 500px;
}

/* Phone Mockup Container */
.phone-mockup {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  padding: 20px;
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px var(--shadow-blue),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 100%;
  transition: all 0.4s ease;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.phone-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 60px var(--shadow-blue);
}

.phone-mockup:hover::before {
  opacity: 0.3;
}

/* Demo Automation Image */
.demo-automation-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Demo Caption */
.demo-caption {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-style: italic;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* Demo CTA Wrapper */
.demo-cta-wrapper {
  margin-top: 40px;
}

.demo-cta-btn {
  padding: 18px 40px !important;
  font-size: 1.1rem !important;
  display: inline-block !important;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* =============================================
   3-STEP FLOW SECTION
   ============================================= */

.three-step-flow {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.6), rgba(17, 18, 34, 0.4));
  margin: 60px 0;
}

.flow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.flow-step {
  background: linear-gradient(135deg, rgba(26, 42, 80, 0.6), rgba(17, 18, 34, 0.9));
  padding: 40px 30px;
  border-radius: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.flow-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, var(--glow-blue), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.flow-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-blue);
  border-color: var(--primary);
}

.flow-step:hover::before {
  opacity: 0.2;
}

.flow-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.flow-step:hover .flow-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 30px var(--primary));
}

.flow-step h3 {
  color: var(--primary-light);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.flow-step p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Flow Arrow */
.flow-arrow {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}

/* =============================================
   RESPONSIVE STYLES FOR DEMO SECTIONS
   ============================================= */

@media (max-width: 992px) {
  .demo-automation-section {
    padding: 60px 15px;
  }

  .phone-mockup {
    padding: 15px;
  }

  .demo-image-container {
    max-width: 400px;
  }

  .three-step-flow {
    padding: 60px 15px;
  }

  .flow-container {
    gap: 20px;
  }

  .flow-step {
    width: 100%;
    max-width: 350px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    font-size: 2rem;
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .demo-subtext p {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .demo-image-container {
    max-width: 100%;
  }

  .phone-mockup {
    padding: 12px;
    border-radius: 20px;
  }

  .demo-cta-btn {
    width: 100%;
    padding: 16px 30px !important;
    font-size: 1rem !important;
  }

  .flow-icon {
    font-size: 3rem;
  }

  .flow-step h3 {
    font-size: 1.2rem;
  }

  .flow-step p {
    font-size: 0.95rem;
  }
}

/* ---------------------- */
/* ANIMATIONS             */
/* ---------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px var(--glow-blue);
  }
  to {
    text-shadow: 0 0 40px var(--primary), 0 0 60px var(--primary);
  }
}

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ---------------------- */
/* Responsive - IMPROVED  */
/* ---------------------- */
@media (max-width: 992px) {
  .navbar {
    width: 98%;
    top: 10px;
    padding: 8px 15px;
  }

.nav-menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(11, 16, 32, 0.98), rgba(17, 18, 34, 0.95));
    position: fixed;
    top: 80px;
    right: 20px;
    width: 160px;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 9999;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .nav-menu.show {
    display: flex;
    animation: slideInRight 0.3s ease;
  }

.nav-menu a {
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(-5px);
  }

  .nav-cta {
    margin-top: 10px;
    padding: 12px 20px !important;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }

  .page-hero {
    padding-top: 110px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .pricing-cards .card {
    width: 100%;
    max-width: 400px;
  }

  .footer-socials {
    gap: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .social-float {
    right: 15px;
    bottom: 15px;
  }

  section {
    padding: 40px 15px;
  }

  h2 {
    font-size: 1.8rem;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Additional Background Canvas - Automation Themed */
#automation-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* Ensure canvas is behind all content */
body {
  position: relative;
}

section, .hero, .page-hero {
  position: relative;
  z-index: 1;
}

/* Loading Animation */
.loading-spinner {
  border: 3px solid rgba(59, 130, 246, 0.3);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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




.audit-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.audit-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.audit-benefits {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(128, 0, 255, 0.3);
    transform: translateX(5px);
}

.check-icon {
    color: #8000ff;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.audit-cta {
    margin-top: 50px;
}

.cta-disclaimer {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}









/* =============================================
   THANK YOU PAGE STYLES
   Matching with existing design system
   ============================================= */

/* Thank You Container */
.thankyou-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease;
}

/* Background Glow Effect */
.thankyou-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-blue), transparent 70%);
  opacity: 0.3;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

/* Success Icon/Emoji Container */
.thankyou-container::after {
  content: '✅';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  filter: drop-shadow(0 0 30px var(--primary));
  animation: bounceIn 0.8s ease;
  z-index: -1;
}

/* Main Heading */
.thankyou-container h1 {
  color: var(--primary-light);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 0 40px var(--glow-blue);
  animation: glow 2s ease-in-out infinite alternate;
  background: linear-gradient(135deg, var(--primary-light), #60A5FA, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

/* Paragraph Text */
.thankyou-container p {
  color: var(--text-main);
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 25px 30px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.thankyou-container p br {
  line-height: 2;
}

/* Home Button */
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 25px var(--shadow-blue);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s ease 0.4s both;
}

/* Button Glow Effect */
.home-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.home-btn:hover::before {
  width: 300px;
  height: 300px;
}

.home-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px var(--shadow-blue);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.home-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Add icon before text */
.home-btn::after {
  content: '🏠';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.home-btn:hover::after {
  transform: translateX(5px);
}

/* Additional Info Card (Optional) */
.next-steps {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(17, 18, 34, 0.8), rgba(26, 42, 80, 0.4));
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease 0.6s both;
}

.next-steps h3 {
  color: var(--primary-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.next-steps li {
  color: var(--text-soft);
  padding: 12px 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.next-steps li:last-child {
  border-bottom: none;
}

.next-steps li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}


/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.3);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
  70% {
    transform: translateX(-50%) scale(0.9);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px var(--glow-blue);
  }
  to {
    text-shadow: 0 0 40px var(--primary), 0 0 60px var(--primary);
  }
}

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

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 768px) {
  .thankyou-container h1 {
    font-size: 2.5rem;
  }

  .thankyou-container p {
    font-size: 1.1rem;
    padding: 20px;
  }

  .thankyou-container::after {
    font-size: 70px;
    top: 15%;
  }

  .home-btn {
    padding: 14px 30px;
    font-size: 1rem;
    width: 90%;
  }

  .next-steps {
    padding: 20px;
    margin-top: 30px;
  }

  .next-steps h3 {
    font-size: 1.3rem;
  }

  .next-steps li {
    font-size: 0.95rem;
  }


@media (max-width: 480px) {
  .thankyou-container h1 {
    font-size: 2rem;
  }

  .thankyou-container p {
    font-size: 1rem;
    padding: 15px;
  }

  .thankyou-container::before {
    width: 400px;
    height: 400px;
  }
}





/* =============================================
   SIMPLE BOOKING FORM STYLES
   Add this to the END of your style.css
   ============================================= */

/* Booking Section */
.booking-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.booking-container {
  background: linear-gradient(135deg, rgba(17, 18, 34, 0.8), rgba(26, 42, 80, 0.4));
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: var(--primary-light);
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-soft);
  font-size: 1rem;
}

/* Booking Form */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 16, 32, 0.6);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  background: rgba(11, 16, 32, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.7;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-main);
}

/* Error Messages */
.error-message {
  display: none;
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 500;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--shadow-blue);
  margin-top: 30px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-blue);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Alternative Contact */
.alternative-contact {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.alternative-contact p {
  color: var(--text-soft);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.whatsapp-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #2ee876, #25d366);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-container {
    padding: 30px 20px;
  }

  .form-header h2 {
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .submit-btn {
    padding: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 40px 15px;
  }

  .form-header h2 {
    font-size: 1.4rem;
  }

  .form-header p {
    font-size: 0.9rem;
  }
}





/* =============================================
   BOOKING FORM STYLES (Updated)
   Add this to the END of your style.css
   ============================================= */

/* Booking Section */
.booking-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.booking-container {
  background: linear-gradient(135deg, rgba(17, 18, 34, 0.8), rgba(26, 42, 80, 0.4));
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  color: var(--primary-light);
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-soft);
  font-size: 1rem;
}

/* Booking Form */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 16, 32, 0.6);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  background: rgba(11, 16, 32, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.7;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2360A5FA' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-main);
  padding: 10px;
}

/* Date Input Styling */
.form-group input[type="date"] {
  cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(5) hue-rotate(175deg);
  cursor: pointer;
}

/* Error Messages */
.error-message {
  display: none;
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 500;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--shadow-blue);
  margin-top: 30px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-blue);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Alternative Contact */
.alternative-contact {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.alternative-contact p {
  color: var(--text-soft);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.whatsapp-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #2ee876, #25d366);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-container {
    padding: 30px 20px;
  }

  .form-header h2 {
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .form-group select {
    background-position: right 12px center;
    padding-right: 36px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 40px 15px;
  }

  .form-header h2 {
    font-size: 1.4rem;
  }

  .form-header p {
    font-size: 0.9rem;
  }
}









/* ===== HAMBURGER MENU FIX - MOBILE ===== */
@media (max-width: 992px) {
  .nav-menu {
    width: 200px !important;
    right: 10px !important;
    top: 75px !important;
    padding: 10px !important;
  }

  .nav-menu a {
    font-size: 0.85rem !important;
    padding: 8px 10px !important;
  }

  .nav-cta {
    font-size: 0.8rem !important;
    padding: 8px 12px !important;
    margin-top: 5px !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    width: 180px !important;
    right: 8px !important;
    top: 70px !important;
  }

  .nav-menu a {
    font-size: 0.8rem !important;
    padding: 7px 8px !important;
  }

  .nav-cta {
    font-size: 0.75rem !important;
    padding: 7px 10px !important;
  }
}
/* ===== END HAMBURGER MENU FIX ===== */





/* =============================================
   ADDITIONS: Smaller brand + smaller social + draggable
   ============================================= */

/* Navbar brand chhota */
.nav-brand {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem) !important;
  white-space: nowrap;
}

/* Social floating buttons chhote */
.social-float,
.floating-social,
.social-buttons,
.float-btn {
  transform: scale(0.78);
  transform-origin: bottom right;
}

/* Draggable social container */
#draggable-social {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition: box-shadow 0.2s;
}

#draggable-social:active {
  cursor: grabbing;
}

#draggable-social .social-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#draggable-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}

#draggable-social a:hover {
  transform: scale(1.1);
}






/* ===== TESTIMONIAL PROOF SECTION ===== */
.testimonial-proof-section {
  padding: 60px 20px;
}

.testimonial-proof-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-heading {
  color: var(--primary-light);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
}

.testimonial-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(17, 18, 34, 0.8), rgba(26, 42, 80, 0.4));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-left: 4px solid var(--primary);
  border-radius: 16px;
  padding: 35px 30px 28px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-align: left;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-blue);
  border-left-width: 6px;
}

.quote-icon {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--primary);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 18px;
  display: block;
}

.testimonial-quote {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.testimonial-author {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.whatsapp-proof-label {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.whatsapp-screenshot-wrapper {
  display: flex;
  justify-content: center;
}

.wa-phone-frame {
  width: 260px;
  border-radius: 30px;
  overflow: hidden;
  border: 3px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-blue);
  transition: all 0.4s ease;
}

.wa-phone-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--shadow-blue);
}

.wa-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .testimonial-heading {
    font-size: 1.7rem;
  }
  .testimonial-card {
    padding: 25px 20px 20px;
  }
  .testimonial-quote {
    font-size: 1rem;
  }
  .wa-phone-frame {
    width: 220px;
  }
}
/* ===== END TESTIMONIAL PROOF SECTION ===== */











* {
  -webkit-tap-highlight-color: transparent;
}* {
  -webkit-tap-highlight-color: transparent;
}

button, a, input, textarea, div {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  -webkit-tap-highlight-color: transparent;
}
