/* ===================================================
   ALKUSI SOFTWARE - Complete Stylesheet
   =================================================== */

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #DBEAFE;
  --secondary: #F97316;
  --secondary-dark: #EA580C;
  --accent: #10B981;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --text: #334155;
  --text-light: #64748B;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --gradient: linear-gradient(135deg, #1e3a8a 0%, #6d28d9 55%, #be185d 100%);
  --shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; font-family: var(--font);
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 16px;
}
.section-title { color: var(--dark); margin-bottom: 12px; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.4rem; font-weight: 800; color: white;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo span { color: var(--secondary); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-weight: 500;
  color: rgba(255,255,255,0.9); font-size: 0.9rem; transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.2); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-cta {
  background: var(--secondary) !important; color: white !important;
  font-weight: 600 !important; padding: 10px 22px !important;
  border-radius: 50px !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--secondary-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--gradient); overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: blobAnim 8s ease-in-out infinite; }
.blob-1 { width: 600px; height: 600px; background: #4f46e5; top: -200px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: #ec4899; bottom: -100px; left: -100px; animation-delay: -3s; }
.blob-3 { width: 400px; height: 400px; background: #f59e0b; top: 50%; left: 40%; animation-delay: -5s; }
@keyframes blobAnim {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-content { position: relative; z-index: 2; max-width: 720px; color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); color: white;
  padding: 8px 20px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 600; margin-bottom: 24px; animation: fadeInDown 0.6s ease both;
}
.hero-title { margin-bottom: 20px; animation: fadeInUp 0.7s ease 0.1s both; line-height: 1.15; }
.gradient-text {
  background: linear-gradient(90deg, #fbbf24, #f97316, #fb7185);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 32px;
  line-height: 1.7; animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-price { margin-bottom: 32px; animation: fadeInUp 0.7s ease 0.3s both; }
.price-card {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); padding: 16px 28px;
  border-radius: var(--radius-lg);
}
.price-card { gap: 0; padding: 0; overflow: hidden; }
.price-card-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 16px 28px; flex: 1;
}
.price-divider {
  width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; margin: 12px 0;
}
.price-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.price-amount { font-size: 1.9rem; font-weight: 900; color: #fbbf24; line-height: 1.1; }
.price-note { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; animation: fadeInUp 0.7s ease 0.4s both; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; animation: fadeInUp 0.7s ease 0.5s both; }
.trust-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.trust-item i { color: #34d399; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: rgba(255,255,255,0.2);
  border-radius: 50%; color: white; animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== STATS ===== */
.stats { background: var(--dark-2); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { color: white; }
.stat-icon {
  width: 60px; height: 60px; background: rgba(37, 99, 235, 0.3);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.4rem; color: #93c5fd;
}
.stat-number { font-size: 2.8rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
.stat-label { color: #94a3b8; font-size: 0.9rem; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px; display: flex;
  align-items: center; justify-content: center; font-size: 1.4rem; color: white; margin-bottom: 20px;
}
.service-card h3 { color: var(--dark); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.service-price {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 4px 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px;
}
.service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-us { background: white; }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us-content h2 { color: var(--dark); margin: 16px 0 12px; }
.why-us-content > p { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 50px; height: 50px; background: var(--primary-light); color: var(--primary);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.why-feature h4 { color: var(--dark); margin-bottom: 4px; font-size: 1rem; }
.why-feature p { color: var(--text-light); font-size: 0.9rem; }
.why-us-visual { position: relative; height: 460px; }
.main-card {
  position: absolute; top: 20px; left: 0; right: 0; bottom: 0;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--border);
}
.vc-header {
  background: #f1f5f9; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border);
}
.vc-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
.vc-dots span:nth-child(1) { background: #ef4444; }
.vc-dots span:nth-child(2) { background: #f59e0b; }
.vc-dots span:nth-child(3) { background: #22c55e; }
.vc-header > span { color: var(--text-light); font-size: 0.8rem; }
.vc-body { padding: 16px; }
.vc-nav { height: 36px; background: linear-gradient(90deg, var(--primary), #7c3aed); border-radius: 8px; margin-bottom: 12px; }
.vc-hero { height: 120px; background: linear-gradient(135deg, #dbeafe, #ede9fe); border-radius: 8px; margin-bottom: 12px; }
.vc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vc-card { height: 60px; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }
.floating-badge {
  position: absolute; background: white; border-radius: 50px;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-lg); animation: floatBadge 3s ease-in-out infinite;
}
.badge-1 { top: 0; right: -10px; color: #d97706; }
.badge-1 i { color: #f59e0b; }
.badge-2 { top: 45%; left: -30px; color: var(--accent); animation-delay: -1s; }
.badge-2 i { color: var(--accent); }
.badge-3 { bottom: 60px; right: -20px; color: var(--primary); animation-delay: -2s; }
.badge-3 i { color: var(--primary); }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== PRICING ===== */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card {
  background: white; border-radius: var(--radius-xl); padding: 40px 32px;
  box-shadow: var(--shadow-lg); transition: var(--transition);
  position: relative; border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border-color: var(--primary); transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; font-size: 0.78rem; font-weight: 700;
  padding: 6px 20px; border-radius: 50px; white-space: nowrap;
}
.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-header h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 16px; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
.currency { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.amount { font-size: 3rem; font-weight: 900; color: var(--dark); line-height: 1; }
.period { font-size: 0.85rem; color: var(--text-light); }
.pricing-header p { color: var(--text-light); font-size: 0.9rem; }
.pricing-features { margin-bottom: 32px; }
.feature { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.feature:last-child { border-bottom: none; }
.feature i { width: 18px; text-align: center; }
.feature i.fa-check { color: var(--accent); }
.feature i.fa-times { color: #cbd5e1; }
.feature.muted { color: var(--text-light); }
.pricing-note {
  text-align: center; color: var(--text-light); font-size: 0.9rem; margin-top: 36px;
  padding: 16px 24px; background: var(--primary-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.pricing-note i { color: var(--primary); }

/* ===== STATES COVERAGE ===== */
.states-coverage { background: white; }
.states-intro { text-align: center; margin-bottom: 40px; }
.india-highlight {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #FF9933, white 33%, white 66%, #138808);
  padding: 2px; border-radius: 50px;
}
.india-highlight-inner {
  background: var(--dark-2); color: white; padding: 14px 32px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.states-preview-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 36px; }
.state-preview-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 8px; text-align: center; transition: var(--transition);
  cursor: pointer; text-decoration: none; color: var(--text); display: block;
}
.state-preview-item:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.state-preview-item .s-emoji { font-size: 1.5rem; margin-bottom: 4px; }
.state-preview-item .s-name { font-size: 0.7rem; font-weight: 600; line-height: 1.2; }
.states-cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.quote-icon { color: var(--primary-light); font-size: 3rem; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.stars { color: #f59e0b; margin-bottom: 14px; display: flex; gap: 2px; }
.testimonial-card p { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--dark); font-size: 0.95rem; }
.testimonial-author span { color: var(--text-light); font-size: 0.8rem; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--gradient); padding: 90px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { text-align: center; color: white; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: white; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 16px; }
.footer-logo span { color: var(--secondary); }
.footer-col > p { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 18px; color: white; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #94a3b8; font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a::before { content: '›'; color: var(--primary); font-size: 1.1rem; }
.footer-col ul a:hover { color: white; padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; color: #94a3b8; font-size: 0.9rem; }
.contact-item i { color: var(--primary); margin-top: 3px; width: 16px; flex-shrink: 0; }
.contact-item a { color: #94a3b8; transition: var(--transition); }
.contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: #64748b; font-size: 0.85rem; flex-wrap: wrap; gap: 8px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient); padding: 150px 0 80px;
  text-align: center; color: white; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 550px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb-bar { padding: 150px 0 16px; position: relative; z-index: 1; }
.breadcrumb-bar a, .breadcrumb-bar span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-bar a:hover { color: white; }
.breadcrumb-bar .sep { color: rgba(255,255,255,0.4); margin: 0 6px; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-card { background: white; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-info-card h3 { color: var(--dark); font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-card > p { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }
.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon {
  width: 46px; height: 46px; background: var(--primary-light); color: var(--primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.info-item h4 { color: var(--dark); font-size: 0.9rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--text-light); font-size: 0.9rem; transition: var(--transition); }
.info-item a:hover { color: var(--primary); }
.whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; background: #25d366; color: white;
  border-radius: var(--radius); font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer;
}
.whatsapp-btn:hover { background: #1ead52; transform: translateY(-2px); }
.contact-form-card { background: white; border-radius: var(--radius-xl); padding: 48px 40px; box-shadow: var(--shadow-lg); }
.contact-form-card h3 { color: var(--dark); font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: 0.9rem;
  color: var(--text); transition: var(--transition); background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 28px; background: #d1fae5;
  border-radius: var(--radius); color: #065f46;
}
.form-success.show { display: block; }
.form-success i { font-size: 2.5rem; margin-bottom: 12px; display: block; color: var(--accent); }
.form-success h4 { margin-bottom: 8px; }
.form-error { display: none; padding: 12px 16px; background: #fee2e2; border-radius: var(--radius); color: #991b1b; font-size: 0.9rem; margin-bottom: 16px; }
.form-error.show { display: block; }

/* ===== STATES PAGE ===== */
.states-page { padding: 80px 0; background: var(--bg); }
.states-search-wrap { max-width: 520px; margin: 0 auto 36px; position: relative; }
.states-search-wrap input {
  width: 100%; padding: 16px 20px 16px 52px; border: 2px solid var(--border);
  border-radius: 50px; font-size: 0.95rem; font-family: var(--font);
  box-shadow: var(--shadow); transition: var(--transition); background: white;
}
.states-search-wrap input:focus { outline: none; border-color: var(--primary); }
.states-search-wrap i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-light); }
.states-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 9px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  font-family: var(--font); border: 2px solid var(--border); color: var(--text);
  background: white; cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.states-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.state-card {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); transition: var(--transition);
  text-decoration: none; color: inherit; display: block;
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.state-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.state-card:hover::after { transform: scaleX(1); }
.state-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.state-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.state-emoji { font-size: 2rem; }
.state-card h3 { color: var(--dark); font-size: 1rem; margin: 0; }
.state-capital { color: var(--text-light); font-size: 0.82rem; display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.state-type-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 2px 9px;
  border-radius: 4px; background: var(--primary-light); color: var(--primary);
}
.state-type-badge.ut { background: #fef3c7; color: #92400e; }
.no-results { text-align: center; padding: 60px 20px; color: var(--text-light); display: none; }
.no-results i { font-size: 3rem; margin-bottom: 16px; display: block; color: var(--border); }

/* ===== STATE TEMPLATE ===== */
.state-page-hero { background: var(--gradient); padding: 150px 0 60px; color: white; position: relative; overflow: hidden; }
.state-hero-content { position: relative; z-index: 2; }
.state-hero-content h1 { margin-bottom: 12px; }
.state-hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin-bottom: 24px; }
.state-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.state-badge-item {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); color: white;
  padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
}
.state-main { padding: 80px 0; background: var(--bg); }
.state-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.state-info-box { background: white; border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.state-info-box h3 { color: var(--dark); margin-bottom: 20px; font-size: 1.15rem; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.state-info-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.state-info-row:last-child { border-bottom: none; }
.state-info-row span:first-child { color: var(--text-light); }
.state-info-row span:last-child { color: var(--dark); font-weight: 600; }
.cities-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.city-chip {
  background: var(--primary-light); color: var(--primary);
  padding: 5px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 500;
}
.state-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.state-service-card {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); text-align: center;
  transition: var(--transition); border: 1px solid var(--border);
}
.state-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ssc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.2rem; color: white; }
.state-service-card h4 { color: var(--dark); margin-bottom: 6px; font-size: 0.95rem; }
.state-service-card p { color: var(--text-light); font-size: 0.82rem; }
.state-cta-box {
  background: var(--gradient); border-radius: var(--radius-xl); padding: 48px;
  text-align: center; color: white;
}
.state-cta-box h2 { margin-bottom: 12px; }
.state-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 46px; height: 46px; background: var(--primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer; transition: var(--transition);
  opacity: 0; pointer-events: none; border: none;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { gap: 40px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .states-full-grid { grid-template-columns: repeat(3, 1fr); }
  .states-preview-grid { grid-template-columns: repeat(4, 1fr); }
  .state-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .state-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    background: var(--dark-2); padding: 80px 24px 32px;
    flex-direction: column; align-items: flex-start; gap: 4px;
    box-shadow: var(--shadow-xl); z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: white !important; padding: 12px 16px; width: 100%; border-radius: 10px; font-size: 1rem; }
  .nav-link:hover { background: rgba(255,255,255,0.1) !important; color: white !important; }
  .nav-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .states-full-grid { grid-template-columns: repeat(2, 1fr); }
  .states-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-pad { padding: 60px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .state-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .states-full-grid { grid-template-columns: repeat(2, 1fr); }
  .states-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .state-services-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 20px; }
  .contact-info-card { padding: 28px 20px; }
}
