/*
 * Genuine Auto Spares - Landing Page Stylesheet
 * Base Color: White (#ffffff)
 * Accent Color: Vibrant Blue (#003bff)
 * Custom Fonts: Plus Jakarta Sans & Space Grotesk
 */

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

:root {
  --base-white: #ffffff;
  --primary-blue: #003bff;
  --primary-blue-rgb: 0, 59, 255;
  --dark-slate: #0b0f19;
  --slate-gray: #475569;
  --light-gray: #f8fafc;
  --border-color: #e2e8f0;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-blue: 0 10px 25px -5px rgba(0, 59, 255, 0.4), 0 8px 10px -6px rgba(0, 59, 255, 0.4);
  --shadow-glow: 0 0 15px rgba(0, 59, 255, 0.6);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--base-white);
  color: var(--dark-slate);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  padding: 12px 24px;
}

/* Logo Animation Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-slate);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-text {
  white-space: nowrap;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-blue);
  color: var(--base-white);
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
  animation: logoPulse 2.5s infinite alternate ease-in-out;
  box-shadow: 0 0 10px rgba(0, 59, 255, 0.3);
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 55%
  );
  transform: rotate(45deg);
  animation: logoShine 3s infinite ease-in-out;
}

.logo-text span {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
  animation: logoTextFloat 3s infinite ease-in-out;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-slate);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: var(--transition-smooth);
}

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

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

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

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid var(--primary-blue);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-phone:hover {
  background-color: var(--primary-blue);
  color: var(--base-white);
  box-shadow: var(--shadow-glow);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--dark-slate);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 24px 80px;
  background: radial-gradient(circle at 90% 10%, rgba(0, 59, 255, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(0, 59, 255, 0.03) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 59, 255, 0.08);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 59, 255, 0.15);
}

.hero-badge i {
  animation: pulseGlow 1.5s infinite alternate;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--dark-slate);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--primary-blue);
  position: relative;
}

.keyword-rotator {
  height: 48px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.keyword-rotator-item {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-gray);
  position: absolute;
  top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  width: 100%;
}

.keyword-rotator-item.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--slate-gray);
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

/* Glowing & Continuously Animated Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--base-white);
  box-shadow: var(--shadow-blue);
  animation: btnGlowPulse 2s infinite ease-in-out;
}

/* Flash / Shine Hover Effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  z-index: -1;
}

.btn:hover::before {
  left: 150%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 59, 255, 0.5), 0 0 20px rgba(0, 59, 255, 0.4);
}

.btn-secondary {
  background-color: var(--base-white);
  color: var(--dark-slate);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--base-white);
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4), 0 8px 10px -6px rgba(37, 211, 102, 0.4);
  animation: btnWhatsappPulse 2s infinite ease-in-out;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.4);
}

/* Animated Button Icons */
.btn i, .btn-phone i, .btn-card-call i {
  display: inline-block;
  transition: var(--transition-smooth);
}

/* Continuously Animated Icons inside buttons */
/* 1. Phone Ringing animation */
.btn-phone i, .btn i.fa-phone, .btn-card-call i.fa-phone {
  animation: iconRing 2.2s infinite ease-in-out;
}

/* 2. Chevron/Arrow sliding animation */
.btn i.fa-chevron-right, .btn i.fa-angles-right {
  animation: iconSlide 1.2s infinite ease-in-out;
}

/* 3. Gear spinning animation */
.btn i.fa-gears {
  animation: iconSpin 4s infinite linear;
}

/* 4. Calendar checking & Success bouncing animation */
.btn i.fa-calendar-check, .btn i.fa-check-double {
  animation: iconBounce 2s infinite ease-in-out;
}

/* 5. WhatsApp wiggling animation */
.btn i.fa-whatsapp {
  animation: iconWhatsappWiggle 1.5s infinite ease-in-out;
}

.btn:hover i {
  transform: scale(1.15);
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual & Image Showcase */
.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-bg {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 90%;
  height: 90%;
  background-color: rgba(0, 59, 255, 0.03);
  border: 2px dashed rgba(0, 59, 255, 0.15);
  border-radius: 24px;
  z-index: -1;
  animation: rotateSlow 20s infinite linear;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--base-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-tag-text h4 {
  font-size: 0.9rem;
  color: var(--dark-slate);
}

.hero-tag-text p {
  font-size: 0.75rem;
  color: var(--slate-gray);
}

/* Services Categories Grid */
.section {
  padding: 100px 24px;
}

.bg-light {
  background-color: var(--light-gray);
}

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

.section-badge {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-slate);
  margin-bottom: 16px;
}

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

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--base-white);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 10px 25px rgba(0, 59, 255, 0.05);
  border-color: rgba(0, 59, 255, 0.15);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(0, 59, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.8rem;
  color: var(--primary-blue);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--primary-blue);
  color: var(--base-white);
  box-shadow: var(--shadow-glow);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--dark-slate);
}

.service-card p {
  color: var(--slate-gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

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

.service-list li i {
  color: var(--primary-blue);
  font-size: 0.8rem;
}

.btn-card-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid var(--primary-blue);
  background-color: transparent;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  white-space: nowrap;
  cursor: pointer;
}

.btn-card-call:hover {
  background-color: var(--primary-blue);
  color: var(--base-white);
  box-shadow: var(--shadow-glow);
}

.btn-card-call i {
  transition: var(--transition-smooth);
}

.btn-card-call:hover i {
  transform: scale(1.15);
}

/* Interactive Ambient Customizer Section */
.customizer {
  background-color: var(--dark-slate);
  color: var(--base-white);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.customizer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.customizer-text .section-badge {
  color: var(--primary-blue);
}

.customizer-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--base-white);
}

.customizer-text p {
  color: #94a3b8;
  margin-bottom: 30px;
}

.customizer-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.customizer-option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.customizer-option-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  font-weight: 700;
}

.color-picker {
  display: flex;
  gap: 16px;
}

.color-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.color-btn.active {
  border-color: var(--base-white);
  box-shadow: 0 0 15px currentColor;
}

.color-blue { background-color: #003bff; color: #003bff; }
.color-red { background-color: #ff0055; color: #ff0055; }
.color-purple { background-color: #a855f7; color: #a855f7; }
.color-cyan { background-color: #06b6d4; color: #06b6d4; }

.preview-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid #1e293b;
}

.preview-image-wrapper {
  position: relative;
  height: 400px;
}

.preview-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ambient glow overlay */
.ambient-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color;
  opacity: 0.65;
  transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ambient-glow-overlay.glow-blue { background-color: rgba(0, 59, 255, 0.85); }
.ambient-glow-overlay.glow-red { background-color: rgba(255, 0, 85, 0.85); }
.ambient-glow-overlay.glow-purple { background-color: rgba(168, 85, 247, 0.85); }
.ambient-glow-overlay.glow-cyan { background-color: rgba(6, 182, 212, 0.85); }

.ambient-glow-source {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  height: 6px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.8;
  transition: all 0.8s ease;
}

.ambient-glow-source.glow-blue { background-color: #003bff; box-shadow: 0 0 40px 10px #003bff; }
.ambient-glow-source.glow-red { background-color: #ff0055; box-shadow: 0 0 40px 10px #ff0055; }
.ambient-glow-source.glow-purple { background-color: #a855f7; box-shadow: 0 0 40px 10px #a855f7; }
.ambient-glow-source.glow-cyan { background-color: #06b6d4; box-shadow: 0 0 40px 10px #06b6d4; }

/* Testimonials / Social Proof Section */
.testimonials {
  padding: 100px 24px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--base-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 59, 255, 0.1);
}

.stars {
  color: #fbbf24;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-content {
  font-style: italic;
  color: var(--slate-gray);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-blue);
}

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

.user-info h4 {
  font-size: 1rem;
  color: var(--dark-slate);
}

.user-info p {
  font-size: 0.8rem;
  color: var(--primary-blue);
  font-weight: 700;
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.accordion-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-slate);
  transition: var(--transition-fast);
}

.accordion-header:hover h3 {
  color: var(--primary-blue);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-content p {
  padding-top: 16px;
  color: var(--slate-gray);
  font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Contact and Map Section */
.contact-section {
  padding: 100px 24px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(0, 59, 255, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark-slate);
}

.contact-text p, .contact-text a {
  font-size: 0.95rem;
  color: var(--slate-gray);
}

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

.booking-card {
  background-color: var(--base-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--primary-blue);
}

.booking-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.booking-card p {
  color: var(--slate-gray);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-slate);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 59, 255, 0.1);
}

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

/* Floating Elements & Pulsing Widget */
.floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--base-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.float-whatsapp {
  background-color: #25d366;
  animation: whatsappPulse 2s infinite;
}

.float-call {
  background-color: var(--primary-blue);
  animation: callPulse 2s infinite 0.5s;
}

/* Footer Section */
footer {
  background-color: var(--dark-slate);
  color: var(--base-white);
  padding: 80px 24px 30px;
  border-top: 1px solid #1e293b;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--base-white);
  margin-bottom: 24px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #1e293b;
  color: var(--base-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-blue);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 4px;
}

.seo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-tag {
  background-color: #1e293b;
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  border: 1px solid #334155;
  transition: var(--transition-fast);
}

.seo-tag:hover {
  background-color: var(--primary-blue);
  color: var(--base-white);
  border-color: var(--primary-blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #64748b;
  font-size: 0.85rem;
}

/* Animations Definitions */

@keyframes logoPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 59, 255, 0.3);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 59, 255, 0.6);
  }
}

@keyframes logoShine {
  0% {
    left: -150%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

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

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes btnGlowPulse {
  0% {
    box-shadow: 0 5px 15px rgba(0, 59, 255, 0.3), 0 0 0 0px rgba(0, 59, 255, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 59, 255, 0.4), 0 0 0 10px rgba(0, 59, 255, 0);
  }
  100% {
    box-shadow: 0 5px 15px rgba(0, 59, 255, 0.3), 0 0 0 0px rgba(0, 59, 255, 0);
  }
}

@keyframes iconWiggle {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(6px);
  }
}

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

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

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 59, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 59, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(0, 59, 255, 0);
  }
}

@keyframes iconRing {
  0%, 80%, 100% { transform: rotate(0deg); }
  5%, 15%, 25%, 35% { transform: rotate(-10deg); }
  10%, 20%, 30%, 40% { transform: rotate(10deg); }
  45% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  55% { transform: rotate(0deg); }
}

@keyframes iconSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

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

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.1); }
}

@keyframes iconWhatsappWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.05); }
  75% { transform: rotate(10deg) scale(1.05); }
}

@keyframes btnWhatsappPulse {
  0% {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

.mobile-sticky-call {
  display: none;
}

/* Mobile Responsive Adjustments */

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .customizer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-blue);
    padding: 16px 20px;
    box-shadow: 0 -8px 25px rgba(0, 59, 255, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-sticky-call.show {
    transform: translateY(0);
  }

  .mobile-sticky-call a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--base-white);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-sticky-call a i {
    animation: iconRing 2s infinite ease-in-out;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--base-white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--primary-blue);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-image img {
    height: 320px;
  }
  
  .floating-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  
  .hero-ctas .btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .booking-card {
    padding: 24px;
  }
}
