/*
Theme Name: VITH Property Services
Theme URI: https://vithpropertyservices.com
Author: VITH Property Services
Author URI: https://vithpropertyservices.com
Description: Professional cleaning services theme for VITH Property Services - residential and commercial cleaning.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vith-property-services
Tags: cleaning, services, business, responsive, professional
*/

/* =========================================
   VITH PROPERTY SERVICES — THEME VARIABLES
   ========================================= */
:root {
  /* Brand Colors from logo */
  --vith-navy:        #0D2B55;
  --vith-blue:        #1565C0;
  --vith-sky:         #2196F3;
  --vith-aqua:        #00BCD4;
  --vith-light:       #E3F2FD;
  --vith-white:       #FFFFFF;
  --vith-silver:      #F4F8FB;
  --vith-text:        #1A2B3C;
  --vith-muted:       #607D8B;
  --vith-accent:      #00E5FF;

  /* Gradients */
  --grad-primary:     linear-gradient(135deg, #0D2B55 0%, #1565C0 50%, #2196F3 100%);
  --grad-shine:       linear-gradient(135deg, #2196F3 0%, #00BCD4 50%, #00E5FF 100%);
  --grad-banner:      linear-gradient(135deg, #0D2B55 0%, #1565C0 100%);

  /* Shadows */
  --shadow-card:      0 8px 32px rgba(13, 43, 85, 0.12);
  --shadow-hover:     0 16px 48px rgba(13, 43, 85, 0.22);
  --shadow-btn:       0 4px 20px rgba(33, 150, 243, 0.4);

  /* Typography */
  --font-display:     'Barlow Condensed', sans-serif;
  --font-body:        'DM Sans', sans-serif;

  /* Spacing */
  --section-pad:      5rem 0;
  --radius-card:      16px;
  --radius-btn:       50px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--vith-text);
  background: var(--vith-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vith-blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--vith-aqua); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--vith-navy);
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vith-aqua);
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--vith-navy);
  margin-bottom: 1rem;
}

.section-title span {
  background: var(--grad-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--vith-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-shine);
  color: var(--vith-navy);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(33, 150, 243, 0.5);
  color: var(--vith-navy);
}

.btn-outline {
  background: transparent;
  color: var(--vith-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--vith-white);
  color: var(--vith-white);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--vith-navy);
  color: var(--vith-white);
  box-shadow: var(--shadow-card);
}
.btn-dark:hover {
  background: var(--vith-blue);
  transform: translateY(-3px);
  color: var(--vith-white);
}

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
  background: var(--vith-navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  font-family: var(--font-body);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-info a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.topbar-info a:hover { color: var(--vith-accent); }

.topbar-social { display: flex; gap: 0.75rem; }
.topbar-social a {
  color: rgba(255,255,255,0.6);
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.topbar-social a:hover {
  background: var(--vith-blue);
  border-color: var(--vith-blue);
  color: white;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--vith-white);
  box-shadow: 0 2px 24px rgba(13, 43, 85, 0.1);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.site-logo img {
  height: 64px;
  width: auto;
}

.site-nav { display: flex; align-items: center; gap: 0.25rem; }

.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vith-navy);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--vith-blue);
  background: var(--vith-light);
}
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--grad-shine);
  border-radius: 2px;
}

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

.nav-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vith-navy);
  display: flex; align-items: center; gap: 0.4rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--vith-navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--vith-white);
  border-top: 2px solid var(--vith-light);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vith-navy);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vith-light);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  background: var(--grad-primary);
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(33,150,243,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,188,212,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0,229,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* Sparkle dots */
.hero-bg-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,229,255,0.6) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
  background-position: 0 0, 40px 40px;
  opacity: 0.15;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vith-accent);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--vith-white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title span {
  background: var(--grad-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vith-white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-logo-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.hero-logo-wrap img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 229, 255, 0.4));
  animation: float 4s ease-in-out infinite;
}

.hero-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
}

.hero-card-chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(13,43,85,0.2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--vith-navy);
  white-space: nowrap;
}
.hero-card-chip .chip-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-card-chip:nth-child(1) { top: 10%; right: -10%; background: white; }
.hero-card-chip:nth-child(2) { bottom: 20%; left: -12%; }
.hero-card-chip:nth-child(3) { top: 55%; right: -8%; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll .arrow {
  width: 20px; height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--vith-silver);
  border-top: 1px solid rgba(13,43,85,0.08);
  border-bottom: 1px solid rgba(13,43,85,0.08);
  padding: 1.25rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vith-navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-icon {
  width: 32px; height: 32px;
  background: var(--grad-shine);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* =========================================
   SERVICES
   ========================================= */
.services-section {
  padding: var(--section-pad);
  background: var(--vith-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--vith-white);
  border: 1.5px solid rgba(13,43,85,0.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-shine);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 62px; height: 62px;
  background: var(--vith-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--grad-shine);
}

.service-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--vith-navy);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--vith-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.service-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vith-blue);
  display: flex; align-items: center; gap: 0.4rem;
}
.service-link:hover { color: var(--vith-aqua); gap: 0.7rem; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section {
  padding: var(--section-pad);
  background: var(--vith-silver);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image-card {
  background: var(--grad-primary);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-image-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(0,229,255,0.15) 0%, transparent 50%);
}
.why-image-card img {
  width: 180px; margin: 0 auto 2rem;
  filter: drop-shadow(0 10px 30px rgba(0,229,255,0.3));
}
.why-image-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.why-image-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

.why-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-badge-text {
  font-size: 0.75rem;
  color: var(--vith-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.why-feature {
  background: var(--vith-white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(13,43,85,0.07);
  transition: all 0.3s;
}
.why-feature:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.why-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.why-feature h4 {
  font-size: 0.9rem;
  color: var(--vith-navy);
  margin-bottom: 0.25rem;
}
.why-feature p {
  font-size: 0.8rem;
  color: var(--vith-muted);
}

/* =========================================
   PROCESS
   ========================================= */
.process-section {
  padding: var(--section-pad);
  background: var(--vith-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 3rem; left: 12%;
  width: 76%; height: 2px;
  background: var(--grad-shine);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-shine);
  color: var(--vith-navy);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-btn);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--vith-muted);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(33,150,243,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-section .section-title { color: white; }
.testimonials-section .section-sub { color: rgba(255,255,255,0.65); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}

.stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-shine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--vith-navy);
}
.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}
.author-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-section {
  padding: 5rem 0;
  background: var(--vith-silver);
}
.cta-box {
  background: var(--grad-primary);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,229,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(33,150,243,0.12) 0%, transparent 50%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: white;
  margin-bottom: 1rem;
}
.cta-box h2 span {
  background: var(--grad-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--vith-navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 55px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--vith-blue);
  border-color: var(--vith-blue);
  color: white;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--vith-accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}
.footer-contact-item span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-visual { display: none; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .why-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-info { display: none; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
}
