/* ============================================
   Adv. Mukesh Kumar | Legal & CA Advisory
   Design System & Core Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --primary: #0D3B66;
  --primary-light: #1A5494;
  --primary-dark: #071D33;
  --primary-rgb: 13, 59, 102;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --accent-gold: #C9A227;
  --accent-gold-light: #D4B44A;
  --border-light: #E2E8F0;
  --border-lighter: #F1F5F9;
  --success: #10B981;
  --error: #EF4444;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --section-padding-sm: 80px;
  --container-width: 1200px;
  --container-narrow: 800px;
  --container-padding: 24px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(var(--primary-rgb), 0.04);
  --shadow-sm: 0 2px 8px rgba(var(--primary-rgb), 0.06);
  --shadow-md: 0 4px 20px rgba(var(--primary-rgb), 0.08);
  --shadow-lg: 0 8px 30px rgba(var(--primary-rgb), 0.12);
  --shadow-xl: 0 16px 48px rgba(var(--primary-rgb), 0.16);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Navbar */
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--navbar-height);
}

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

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

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

a:hover {
  color: var(--primary);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 16px;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 56px; letter-spacing: -0.02em; }
h2 { font-size: 42px; letter-spacing: -0.01em; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; font-weight: 600; }

p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

.text-accent { color: var(--accent-gold); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--gray {
  background-color: var(--off-white);
}

.section--dark {
  background-color: var(--primary);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section--dark .section-badge {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

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

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 17px;
  line-height: 1.7;
}

/* Gold decorative line under section headers */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.section--dark .section-header h2::after {
  background: var(--accent-gold-light);
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
}

.navbar__logo-icon--has-img {
  background: transparent;
}

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

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.navbar__logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Spacer for fixed navbar */
.navbar-spacer {
  height: var(--navbar-height);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 4px;
  border-color: transparent;
}

.btn--ghost:hover {
  color: var(--primary-light);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #20BD5A;
  border-color: #20BD5A;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__badge i {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

.hero__title {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--primary);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__trust-item i {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.03) 100%);
  border: 1px solid var(--border-light);
}

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

/* Placeholder for lawyer image */
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-light);
}

.hero__image-placeholder i {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.hero__image-placeholder span {
  font-size: 14px;
  font-weight: 500;
}

/* Floating badge on hero image */
.hero__float-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero__float-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hero__float-badge-icon i {
  width: 22px;
  height: 22px;
}

.hero__float-badge-text {
  display: flex;
  flex-direction: column;
}

.hero__float-badge-text strong {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 700;
}

.hero__float-badge-text span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-lighter);
  background: var(--white);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.trust-bar__item:hover {
  background: var(--off-white);
}

.trust-bar__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.trust-bar__item:hover .trust-bar__icon {
  background: var(--primary);
  color: var(--white);
}

.trust-bar__icon i {
  width: 22px;
  height: 22px;
}

.trust-bar__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ============================================
   CARDS — Base
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.card:hover {
  border-color: rgba(var(--primary-rgb), 0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.card:hover .card__icon {
  background: var(--primary);
  color: var(--white);
}

.card__icon i {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}

.card p {
  font-size: 15px;
  line-height: 1.65;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.card__link:hover {
  gap: 10px;
}

.card__link i {
  width: 16px;
  height: 16px;
}

/* ============================================
   SERVICES OVERVIEW (Homepage)
   ============================================ */
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.services-overview__column h3 {
  font-size: 24px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-overview__column h3 i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.services-overview__column > p {
  font-size: 15px;
  margin-bottom: 28px;
}

.services-overview__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-overview__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.section--gray .services-overview__item {
  background: var(--white);
}

.services-overview__item:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.02);
  transform: translateX(4px);
}

.services-overview__item i {
  width: 20px;
  height: 20px;
  color: var(--primary);
  min-width: 20px;
}

.services-overview__divider {
  width: 1px;
  background: var(--border-light);
}

/* ============================================
   PACKAGE / PRICING CARDS
   ============================================ */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 2px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.package-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.package-card--featured {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.package-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.package-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.package-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.package-card--featured .package-card__icon {
  background: var(--primary);
  color: var(--white);
}

.package-card__icon i {
  width: 28px;
  height: 28px;
}

.package-card__name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.package-card__duration {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.package-card__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.package-card__price-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.package-card__features {
  text-align: left;
  margin-bottom: 36px;
}

.package-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-lighter);
  font-size: 14.5px;
  color: var(--text-dark);
}

.package-card__feature:last-child {
  border-bottom: none;
}

.package-card__feature i {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--success);
  margin-top: 2px;
}

.package-card .btn {
  width: 100%;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Connecting line */
.process__grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

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

.process__step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.process__step:hover .process__step-number {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

.process__step h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process__step p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__quote-icon {
  color: rgba(var(--primary-rgb), 0.1);
  margin-bottom: 16px;
}

.testimonial-card__quote-icon i {
  width: 36px;
  height: 36px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars i {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.testimonial-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-lighter);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__author-info h5 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-card__author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion__item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.accordion__item:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
}

.accordion__item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.accordion__header h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.accordion__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.accordion__item.active .accordion__icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion__icon i {
  width: 18px;
  height: 18px;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__body-inner {
  padding: 0 24px 24px;
}

.accordion__body-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 38px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-group {
  justify-content: center;
}

/* ============================================
   INDUSTRIES SERVED
   ============================================ */
.industry-card {
  text-align: center;
  padding: 40px 28px;
}

.industry-card .card__icon {
  margin: 0 auto 20px;
}

.industry-card h3 {
  font-size: 18px;
}

.industry-card p {
  font-size: 14px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-lighter);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info__icon i {
  width: 22px;
  height: 22px;
}

.contact-info__text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 14px;
  margin-bottom: 0;
}

.contact-info__text a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info__text a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 15px;
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group .error-message {
  font-size: 13px;
  color: var(--error);
  margin-top: 6px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--error);
}

.form-group.has-error .error-message {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success i {
  width: 56px;
  height: 56px;
  color: var(--success);
  margin: 0 auto 16px;
}

.form-success h4 {
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
}

/* ============================================
   GOOGLE MAP
   ============================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__brand-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.footer__social a i {
  width: 18px;
  height: 18px;
}

.footer__column h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__contact-item i {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent-gold);
  margin-top: 3px;
}

.footer__contact-item span,
.footer__contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

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

.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal__close:hover {
  background: var(--text-dark);
  color: var(--white);
}

.modal__close i {
  width: 18px;
  height: 18px;
}

.modal h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.modal > p {
  font-size: 15px;
  margin-bottom: 32px;
}

.modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.modal__option:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.02);
  transform: translateX(4px);
}

.modal__option-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__option-icon i {
  width: 22px;
  height: 22px;
}

.modal__option-icon--call {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
}

.modal__option-icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.modal__option-icon--email {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
}

.modal__option-text h5 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.modal__option-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.modal__trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-lighter);
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.modal__trust i {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.floating-whatsapp i {
  width: 28px;
  height: 28px;
}

/* Pulse animation */
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   MOBILE STICKY BOTTOM BAR
   ============================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
}

.mobile-bottom-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-bottom-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-bottom-bar__btn i {
  width: 20px;
  height: 20px;
}

.mobile-bottom-bar__btn--call {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
}

.mobile-bottom-bar__btn--whatsapp {
  color: #25D366;
  background: rgba(37, 211, 102, 0.08);
}

.mobile-bottom-bar__btn--book {
  color: var(--white);
  background: var(--primary);
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.page-header .section-badge {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.page-header h1 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.page-header__breadcrumb {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-header__breadcrumb a:hover {
  color: var(--white);
}

.page-header__breadcrumb .separator {
  font-size: 12px;
}

/* ============================================
   ABOUT PAGE COMPONENTS
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-intro__image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.03) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.about-intro__content h2 {
  margin-bottom: 24px;
}

.about-intro__content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}

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

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.about-stat__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   SERVICE DETAIL CARDS (Inner Pages)
   ============================================ */
.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.service-detail-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: var(--shadow-md);
}

.service-detail-card .card__icon {
  margin-bottom: 0;
}

.service-detail-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.service-detail-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   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);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation helper */
.counter {
  display: inline-block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* Spinner Animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

