:root {
  /* Colors */
  --color-primary: #2563eb;       
  --color-primary-light: #3b82f6; 
  --color-primary-dark: #1d4ed8;  
  --color-secondary: #0f172a;     
  --color-accent: #0ea5e9;        
  
  --color-text-main: #334155;
  --color-text-light: #64748b;
  --color-bg-main: #ffffff;
  --color-bg-light: #f8fafc;
  --color-border: #e2e8f0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizes & Utilities */
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Rich Shadows */
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-text-main);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #080d19;
}

body {
  background-color: #080d19;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

.section {
  padding: 120px 0;
  background-color: var(--color-bg-main);
}

.bg-light {
  background: radial-gradient(circle at top right, #ffffff, #f8fafc);
}

/* Utilities */
.d-block { display: block; text-align: center; }
.mt-2 { margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn i {
  font-size: 1.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4), var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

.btn-facebook {
  background: #1877F2;
  color: white;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
  background: #166fe5;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(24, 119, 242, 0.4);
}

.footer-social-link {
  color: #1877F2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-social-link:hover {
  filter: brightness(1.2);
  transform: translateX(4px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  padding: 12px 28px;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: white;
  color: var(--color-secondary);
  border-color: white;
}

/* Top Ticker */
.top-ticker {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: var(--color-primary);
  color: white;
  padding: 8px 0;
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 1002;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: scrollTicker 20s linear infinite;
}

/* Nav */
.navbar {
  position: fixed;
  top: 40px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

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

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: -0.03em;
}

.brand-highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-main);
  position: relative;
}

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

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

.nav-actions .btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.nav-actions .btn-outline:hover {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -2;
}

.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 12s infinite;
}

@keyframes slideFade {
  0% { opacity: 1; transform: scale(1); }
  45% { opacity: 1; transform: scale(1.05); }
  50% { opacity: 0; transform: scale(1.05); }
  95% { opacity: 0; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 55%, rgba(0,0,0,0.1) 100%);
  z-index: -1;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 20px;
}

.hero-content {
  text-align: left;
  color: white;
  max-width: 760px;
  opacity: 0;
  animation: heroEntrance 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content h1 {
  color: white;
  font-size: 5rem;
  margin-bottom: 24px;
  text-wrap: balance;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.35rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-trust-badge {
  background: white;
  padding: 24px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  text-align: center;
  color: var(--color-secondary);
  animation: heroEntrance 1s ease-out 0.5s forwards;
  opacity: 0;
  margin-bottom: 40px;
}

.stars {
  color: #dc2626;
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.hero-trust-badge strong {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.hero-trust-badge span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Generic Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 40px;
}

/* Cards */
.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), 0 20px 40px -10px rgba(37,99,235,0.15);
  border-color: transparent;
}

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

.service-card .icon-wrapper {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 8px 16px -4px rgba(37,99,235,0.15);
  transition: var(--transition);
}

.card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.service-card .icon-wrapper i {
  font-size: 36px;
  color: var(--color-primary);
  transition: var(--transition);
}

.card:hover .icon-wrapper i {
  color: white;
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* Before and After */
.gallery {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Add a glowing blob behind the image */
.gallery::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(60px);
  z-index: 0;
}

.gallery-img {
  width: 100%;
  max-width: 1000px;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 8px solid white;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Process Section */
.process {
  padding: 120px 0;
  text-align: center;
}

.process-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.process-header p {
  font-size: 1.25rem;
  color: var(--color-text-main);
  max-width: 650px;
  margin: 0 auto 80px;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-card {
  padding: 48px 60px;
  border-radius: 60px;
  color: white;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.process-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
}

.step-1 { 
    background-color: var(--color-primary); 
    transform: rotate(-1deg);
}
.step-2 { 
    background-color: var(--color-primary-light); 
    transform: rotate(1.5deg) translateY(-10px);
}
.step-3 { 
    background-color: var(--color-secondary); 
    transform: rotate(-0.5deg) translateY(-20px);
}

.process-card:hover {
  transform: scale(1.02) rotate(0deg);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.overflow-visible {
    overflow: visible;
}

@media (max-width: 768px) {
  .process-header h2 {
    font-size: 2.2rem;
  }
  .process-card {
    padding: 32px 30px;
    border-radius: 40px;
    transform: none !important;
  }
  .process-card h3 {
    font-size: 1.8rem;
  }
}

/* Testimonials */
.testimonial-card p {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--color-text-main);
}

.testimonial-card h4 {
  font-weight: 700;
  color: var(--color-secondary);
}

.testimonial-card .stars {
  justify-content: flex-start;
  margin-bottom: 16px;
}

/* Why Us Section */
.why-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-top: 40px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 1.15rem;
  padding: 16px;
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-list li:hover {
  background: var(--color-bg-light);
  border-color: var(--color-border);
  transform: translateX(8px);
}

.feature-list i {
  color: var(--color-primary);
  font-size: 28px;
  background: #eff6ff;
  border-radius: 50%;
  padding: 4px;
}

.why-us-card {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e293b 100%);
  color: white;
  padding: 56px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(15,23,42,0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.4;
  animation: pulseGlow 8s infinite alternate;
}

.contact-info-block {
  position: relative;
  z-index: 1;
}

.contact-info-block h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info-block p {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  background: var(--color-bg-main);
  border-top: 1px solid var(--color-border);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPjxyZWN0IHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9IiNmZmZiZmYiLz48cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjZTRlOGYwIi8+PC9zdmc+') repeat;
  opacity: 0.5;
  z-index: 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact-text h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.contact-text p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.contact-form-wrapper {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  padding: 48px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.contact-form-wrapper h3 {
  margin-bottom: 32px;
  font-size: 1.75rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: 1.05rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e293b 100%);
  color: white;
  padding: 18px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  box-shadow: var(--shadow-glow);
}

/* Pre-Footer Banner */
.pre-footer {
  padding: 60px 0;
  background: white;
  margin-top: 60px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--border-radius-xl);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  box-shadow: 0 40px 80px -20px rgba(37, 99, 235, 0.4);
  position: relative;
  z-index: 5;
}



.cta-banner-content {
  width: 100%;
}

.cta-banner-content h3 {
  color: white;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-form {
  display: flex;
  gap: 12px;
  margin: 0 auto 24px;
  width: 100%;
  justify-content: center;
  max-width: 600px;
}

.cta-banner-form input {
  flex: 1;
  padding: 18px 24px;
  border-radius: 50px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  height: 60px; /* Force consistent height */
  box-sizing: border-box;
  text-align: center; /* Center-align text and placeholder */
}

.cta-banner-form .btn {
  height: 60px; /* Match input height */
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.cta-banner-form .btn-secondary {
  background: white;
  color: var(--color-primary);
  border: none;
}

.cta-banner-form .btn-secondary:hover {
  background: var(--color-bg-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-banner-form input:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

.cta-banner-content span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner-content span a {
  color: white;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #0b1120;
  color: white;
  padding: 160px 0 0;
  border-top: none;
  margin-top: auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  box-sizing: border-box;
  flex-shrink: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 80px;
  padding: 0 60px 80px;
  width: 100%;
}

.footer-col h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

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

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a, 
.footer-col ul li span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-col ul li a i {
  color: var(--color-primary-light);
  font-size: 1.2rem;
}

.footer-col-brand .brand-text {
  color: white; /* Make T&C clearly visible */
}

.footer-col-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 24px 0 32px;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.footer-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background: var(--color-primary);
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
  background: #080d19;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  padding: 0 60px;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* Animations */
@keyframes heroEntrance {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes pulseGlow {
  0% { opacity: 0.2; transform: scale(0.9); }
  100% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes bgPan {
  0% { object-position: 0% 50%; }
  100% { object-position: 100% 50%; }
}

@keyframes scrollTicker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* Responsive Updates */
@media (max-width: 1200px) {
  .cta-banner {
    padding: 60px;
    gap: 40px;
  }
  .cta-banner-content h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 992px) {
  .why-us-container, .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .nav-links {
    display: none;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .section-header h2 {
    font-size: 2.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner-content h3 {
    font-size: 2rem;
  }
  .cta-banner-form {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-form input {
    width: 100%;
    border-radius: 50px;
  }
  .cta-banner-form button {
    width: 100%;
  }
}
