/* ================================================
   DigitalEdge Agency - Main Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0A1628;
  --accent: #FF5733;
  --accent2: #F7A800;
  --teal: #00C9A7;
  --light-bg: #F5F7FA;
  --card-bg: #FFFFFF;
  --text-dark: #0A1628;
  --text-muted: #6C7A8D;
  --border: #E2E8F0;
  --gradient: linear-gradient(135deg, #0A1628 0%, #1A2E4A 100%);
  --gradient-accent: linear-gradient(135deg, #FF5733, #F7A800);
  --shadow: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- Utility ---- */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 60px 0; }
.text-accent { color: var(--accent); }
.text-teal { color: var(--teal); }
.bg-dark-primary { background: var(--primary); color: #fff; }
.bg-light { background: var(--light-bg) !important; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(255,87,51,0.08);
  border-radius: 50px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--gradient-accent);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(255,87,51,0.3);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,87,51,0.4);
  color: #fff !important;
}

.btn-outline-custom {
  background: transparent;
  color: #fff !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline-custom:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-dark-custom {
  background: var(--primary);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-dark-custom:hover {
  background: #1A2E4A;
  transform: translateY(-2px);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar-custom {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.navbar-brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--accent); }

.nav-link-custom {
  color: rgba(255,255,255,0.8) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px !important;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-link-custom:hover, .nav-link-custom.active { color: #fff !important; }

.navbar-toggler { border: 1px solid rgba(255,255,255,0.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  background: var(--gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,87,51,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,167,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.hero-stat p { font-size: 13px; color: rgba(255,255,255,0.55); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  color: #fff;
  transition: transform 0.3s ease;
}
.hero-card:hover { transform: translateY(-6px); }
.hero-card-icon {
  width: 48px; height: 48px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.hero-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.hero-card p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }
.hero-card .metric { font-size: 28px; font-weight: 800; color: var(--teal); }

.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}
.floating-badge .icon { font-size: 20px; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.badge-1 { top: 40px; right: -20px; }
.badge-2 { bottom: 60px; left: -30px; animation-delay: 1.5s; }

/* ================================================
   SERVICES
   ================================================ */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.si-1 { background: rgba(255,87,51,0.1); }
.si-2 { background: rgba(247,168,0,0.1); }
.si-3 { background: rgba(0,201,167,0.1); }
.si-4 { background: rgba(99,102,241,0.1); }
.si-5 { background: rgba(236,72,153,0.1); }
.si-6 { background: rgba(14,165,233,0.1); }

.service-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* ================================================
   PROCESS
   ================================================ */
.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.process-number {
  width: 64px; height: 64px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
}
.process-step h5 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-muted); }
.process-connector {
  position: absolute;
  top: 56px; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0.3;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.stars { color: #F7A800; font-size: 16px; margin-bottom: 16px; }
.testimonial-card p { font-size: 15px; color: var(--text-muted); 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;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.av-1 { background: var(--gradient-accent); }
.av-2 { background: linear-gradient(135deg, var(--teal), #0A9B85); }
.av-3 { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.av-4 { background: linear-gradient(135deg, #EC4899, #BE185D); }
.author-name { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.author-role { font-size: 13px; color: var(--text-muted); }

/* ================================================
   PRICING CARDS
   ================================================ */
.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pricing-card.popular {
  border-color: var(--accent);
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-8px); }

.popular-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.popular .plan-name { color: var(--accent2); }

.plan-price {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.plan-price span { font-size: 20px; font-weight: 500; opacity: 0.7; }
.plan-period { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.popular .plan-period { color: rgba(255,255,255,0.6); }

.plan-features { list-style: none; padding: 0; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.popular .plan-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li .check { color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.plan-features li .cross { color: var(--text-muted); font-size: 16px; flex-shrink: 0; }

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.3px;
}
.btn-plan-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-plan-outline:hover { background: var(--primary); color: #fff; }
.btn-plan-accent { background: var(--gradient-accent); color: #fff; box-shadow: 0 4px 20px rgba(255,87,51,0.35); }
.btn-plan-accent:hover { box-shadow: 0 8px 28px rgba(255,87,51,0.5); transform: translateY(-2px); }
.btn-plan-white { background: #fff; color: var(--primary); }
.btn-plan-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateX(6px); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-text h5 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.why-text p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }

/* ================================================
   PAYMENT PAGE
   ================================================ */
.payment-page { background: var(--light-bg); min-height: 100vh; padding: 80px 0; }

.checkout-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.checkout-header {
  background: var(--gradient);
  padding: 28px 32px;
  color: #fff;
}
.checkout-header h3 { font-size: 22px; margin: 0; }
.checkout-header p { font-size: 14px; opacity: 0.7; margin: 4px 0 0; }

.checkout-body { padding: 32px; }

.order-summary {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.order-row:last-child { border-bottom: none; }
.order-row.total { font-weight: 700; font-size: 18px; color: var(--primary); }

.form-label-custom {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}
.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  background: #fff;
}
.form-control-custom:focus { border-color: var(--accent); }

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}
.security-badge .lock { color: var(--teal); }

.razorpay-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  height: 100%;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h6 { font-size: 13px; opacity: 0.6; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p { font-size: 15px; font-weight: 500; margin: 0; }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group-custom { margin-bottom: 20px; }

.success-msg {
  display: none;
  background: rgba(0,201,167,0.1);
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

/* ================================================
   ABOUT
   ================================================ */
.about-visual {
  position: relative;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrapper img { width: 100%; display: block; }
.about-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  min-width: 150px;
}
.about-badge .number { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--accent); line-height: 1; }
.about-badge .label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.value-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.value-icon {
  width: 40px; height: 40px;
  background: rgba(255,87,51,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.value-text h6 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.value-text p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: var(--gradient);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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.02'%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(32px, 5vw, 56px); color: #fff; font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto; }
.breadcrumb-custom { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 20px; }
.breadcrumb-custom a { color: rgba(255,255,255,0.7); }
.breadcrumb-custom span { color: var(--accent2); }

/* ================================================
   SERVICES DETAIL PAGE
   ================================================ */
.service-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  transition: all 0.3s ease;
}
.service-detail:hover { box-shadow: var(--shadow-lg); transform: translateX(6px); }
.service-detail-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.service-detail h4 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-detail p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.feature-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin: 3px;
}

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 0;
}
.legal-content h2 { font-size: 28px; font-weight: 800; margin: 40px 0 16px; color: var(--primary); }
.legal-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--primary); }
.legal-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }
.legal-updated { background: var(--light-bg); border-left: 4px solid var(--accent); padding: 14px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 32px; font-size: 14px; color: var(--text-muted); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #060E1C;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
.footer-brand span { color: var(--accent); }
.footer p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer h6 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-contact .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all 0.2s;
}
.social-link:hover { background: var(--accent); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ================================================
   MAP
   ================================================ */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; }

/* ================================================
   MISC / ANIMATIONS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.counter { font-size: inherit; font-weight: inherit; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .hero-stats { gap: 24px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-8px); }
  .about-badge { right: 16px; }
  .process-connector { display: none; }
  .service-detail { flex-direction: column; }
  .service-detail-icon { width: 56px; height: 56px; font-size: 24px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { flex: 1 1 40%; }
  .floating-badge { display: none; }
  .contact-info-card { margin-bottom: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
