/* ============================================================
   GrowBigWithUs — Main Stylesheet
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  /* Logo-matched Electric Palette */
  --blue-deep: #2563EB;
  --blue-bright: #38BDF8;
  /* electric cyan-blue — GROW text */
  --purple: #9333EA;
  /* logo purple — GROW gradient */
  --purple-light: #C084FC;
  --gold: #F59E0B;
  /* logo gold — BIG text */
  --orange: #F97316;
  /* logo orange-red — BIG gradient */
  --pink: #EC4899;
  /* logo swoosh pink */
  --cyan: #06B6D4;
  /* logo glow/accent */

  /* Primary action color — gold/orange like "BIG" */
  --green: #F59E0B;
  --green-light: #FCD34D;

  /* Backgrounds — deep space like logo */
  --navy-dark: #080C14;
  --navy-soft: #0F172A;
  --navy-mid: #0a1020;

  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-gray: #F1F5F9;
  --text-dark: #1E293B;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p {
  line-height: 1.7;
  color: inherit;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy-dark);
  color: var(--text-light);
}

.section-light {
  background: var(--off-white);
}

.section-white {
  background: var(--white);
}

/* === SECTION TITLES === */
.section-tag {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title span {
  color: var(--green);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #16A34A);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, var(--green-light), var(--green));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.35);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(33, 150, 243, 0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-soft);
  color: var(--text-light);
  padding: 16px 20px;
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--green);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.9rem;
  flex: 1;
}

.cookie-content a {
  color: var(--green);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-cookie-accept {
  background: var(--green);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}

.btn-cookie-learn {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 8px 12px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--navy-dark);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-dark {
  display: none;
}

.logo-light {
  display: block;
}

.navbar.scrolled .logo-dark {
  display: none;
}

.navbar.scrolled .logo-light {
  display: block;
}

.nav-page .logo-dark {
  display: block;
}

.nav-page .logo-light {
  display: none;
}

.nav-page.scrolled .logo-dark {
  display: none;
}

.nav-page.scrolled .logo-light {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.9;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-page .nav-link {
  color: var(--text-dark);
}

.nav-page .nav-link:hover,
.nav-page .nav-link.active {
  color: var(--blue-deep);
}

.nav-page.scrolled .nav-link {
  color: var(--white);
}

.nav-page.scrolled .nav-link:hover,
.nav-page.scrolled .nav-link.active {
  color: var(--green);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .has-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown .has-dropdown .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.nav-dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-menu a i {
  width: 20px;
  color: var(--blue-bright);
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--blue-deep);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.nav-phone:hover {
  color: var(--green);
  opacity: 1;
}

.nav-phone .fa-phone {
  color: var(--green);
}

.nav-page .nav-phone {
  color: var(--text-dark);
}

.nav-page.scrolled .nav-phone {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.nav-page .bar {
  background: var(--text-dark);
}

.nav-page.scrolled .bar {
  background: var(--white);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #0a2540 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: var(--green);
}

.page-hero .subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--green);
}

/* === HERO SLIDER === */
.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-swiper {
  height: 100%;
}

.hero-slide {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.7) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--green-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.slide-heading {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  max-width: 760px;
  margin-bottom: 18px;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(30px);
}

.slide-heading span {
  color: var(--green);
}

.slide-subheading {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 640px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(25px);
}

.slide-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(25px);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--green);
  width: 30px;
  border-radius: 5px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--white);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--transition);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--green);
  border-color: var(--green);
}

/* Slide backgrounds */
.slide-erp {
  background: linear-gradient(135deg, #0D1B2A 0%, #0a2540 50%, #071825 100%);
}

.slide-web {
  background: linear-gradient(135deg, #0D1B2A 0%, #12203a 50%, #0D1B2A 100%);
}

.slide-seo {
  background: linear-gradient(135deg, #0c1f16 0%, #0D1B2A 50%, #081520 100%);
}

.slide-docs {
  background: linear-gradient(135deg, #1a1020 0%, #0D1B2A 50%, #0f1a28 100%);
}

.slide-brand {
  background: linear-gradient(135deg, #16101d 0%, #0D1B2A 50%, #0d1624 100%);
}

.slide-graphic {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.15;
  pointer-events: none;
  font-size: 200px;
  color: var(--blue-bright);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--light-gray);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-bar-inner::-webkit-scrollbar {
  display: none;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--text-dark);
  border-right: 1px solid var(--border-light);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .trust-icon {
  color: var(--green);
  font-size: 1.1rem;
}

/* === SERVICES GRID === */
.services-section {
  background: var(--navy-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue-bright));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 197, 94, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(34, 197, 94, 0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  border: 1px solid rgba(33, 150, 243, 0.2);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(33, 150, 243, 0.25));
  transform: scale(1.1);
}

.service-card-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-head);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link:hover {
  gap: 10px;
}

.service-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* === WHY CHOOSE US === */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-us-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: calc(var(--radius-lg) + 12px);
  z-index: -1;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(33, 150, 243, 0.15));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.why-item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
  font-family: var(--font-head);
}

.why-item-desc {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === STATS === */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a2540 50%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  font-family: var(--font-head);
  background: linear-gradient(135deg, var(--green), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue-bright));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.3);
  position: relative;
  border: 3px solid var(--white);
}

.step-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--white);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--navy-soft);
}

.testimonials-swiper {
  padding-bottom: 50px !important;
}

.testimonial-card {
  background: var(--navy-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.testimonial-stars {
  color: #F59E0B;
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.quote-mark {
  color: var(--green);
  font-size: 3rem;
  font-family: serif;
  line-height: 1;
  margin-bottom: -10px;
  display: block;
  opacity: 0.5;
}

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-soft));
  color: var(--green);
}

.blog-body {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  background: rgba(33, 150, 243, 0.1);
  color: var(--blue-bright);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-title:hover {
  color: var(--blue-deep);
}

.blog-excerpt {
  color: #64748B;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.blog-read-more {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-read-more:hover {
  gap: 8px;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 50%, #4ADE80 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-highlight {
  color: var(--navy-dark);
}

.cta-subheading {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-phone {
  background: var(--white);
  color: var(--navy-dark);
  font-weight: 700;
}

.btn-cta-phone:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-quote {
  background: var(--navy-dark);
  color: var(--white);
}

.btn-cta-quote:hover {
  background: rgba(13, 27, 42, 0.8);
  transform: translateY(-2px);
}

.btn-cta-wa {
  background: #25D366;
  color: var(--white);
}

.btn-cta-wa:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: var(--text-light);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(34, 197, 94, 0.3);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-head);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

.social-link.whatsapp:hover {
  background: #25D366;
  color: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #E1306C, #833AB4);
  color: white;
}

.social-link.facebook:hover {
  background: #1877F2;
  color: white;
}

.social-link.linkedin:hover {
  background: #0A66C2;
  color: white;
}

.social-link.youtube:hover {
  background: #FF0000;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.footer-links a .fa-chevron-right {
  font-size: 0.7rem;
  color: var(--green);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-icon.whatsapp-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-value {
  color: var(--text-light);
  font-weight: 500;
}

.footer-contact-item a:hover .contact-value {
  color: var(--green);
}

.btn-footer-wa {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--green);
}

.footer-bottom-links span {
  color: #334155;
}

/* === WHATSAPP FLOAT & BACK TO TOP === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  animation: waPulse 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  animation: none;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--navy-soft);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green);
  transform: translateY(-3px);
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-head);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--blue-deep);
}

.faq-question.active {
  color: var(--blue-deep);
}

.faq-icon {
  color: var(--blue-bright);
  transition: transform 0.3s;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-dark .faq-item {
  background: var(--navy-soft);
  border-color: var(--border-dark);
}

.faq-dark .faq-question {
  color: var(--text-light);
}

.faq-dark .faq-question.active {
  color: var(--green);
}

.faq-dark .faq-answer-inner {
  color: var(--text-muted);
}

/* === SERVICE DETAIL PAGE === */
.service-overview-section p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offering-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.offering-card:hover {
  border-color: var(--blue-bright);
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.1);
  transform: translateY(-4px);
}

.offering-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: rgba(33, 150, 243, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.offering-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.offering-desc {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--navy-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.benefit-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* === PORTFOLIO === */
.portfolio-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-head);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--navy-soft);
}

.portfolio-image {
  height: 220px;
  overflow: hidden;
  background: var(--navy-dark);
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.portfolio-body {
  padding: 20px;
}

.portfolio-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.portfolio-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* === CONTACT & FORMS === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: var(--font-head);
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-control::placeholder {
  color: #94A3B8;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
}

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16A34A;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 16px;
}

.contact-info-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--text-light);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.contact-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.c-icon {
  width: 48px;
  height: 48px;
  background: rgba(33, 150, 243, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.c-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.c-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.c-value a {
  color: var(--white);
}

.c-value a:hover {
  color: var(--green);
}

.checkboxes-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  cursor: pointer;
}

.checkbox-item label {
  font-size: 0.875rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* === BLOG SINGLE === */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-content h2,
.blog-content h3 {
  margin: 32px 0 16px;
  color: var(--text-dark);
}

.blog-content p {
  margin-bottom: 16px;
  color: #475569;
  line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
  margin: 16px 0 16px 24px;
}

.blog-content li {
  margin-bottom: 8px;
  color: #475569;
}

.blog-content a {
  color: var(--blue-bright);
  text-decoration: underline;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

/* === ABOUT PAGE === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.1);
}

.value-emoji {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.6;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  padding: 36px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.mv-card.mission {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  color: white;
}

.mv-card.vision {
  background: linear-gradient(135deg, #16A34A, var(--green));
  color: white;
}

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.mv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.mv-card p {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
  }

  .nav-link {
    color: var(--text-light) !important;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--green) !important;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    min-width: auto;
    display: none;
    border: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-cta {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
  }

  .nav-phone {
    color: var(--text-light) !important;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
  }

  .hero-slider-section {
    height: auto;
    min-height: 100vh;
  }

  .slide-content {
    padding: 80px 20px 60px;
  }

  .slide-buttons {
    flex-direction: column;
  }

  .slide-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-bar-inner {
    justify-content: flex-start;
    padding: 0 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkboxes-group {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    padding: 50px 0 40px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .slide-heading {
    font-size: 1.8rem;
  }
}

/* === UTILITY === */
.text-green {
  color: var(--green);
}

.text-blue {
  color: var(--blue-bright);
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--text-muted);
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-24 {
  margin-top: 24px;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.related-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.related-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.related-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.related-card-link {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
}

.privacy-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h2,
.terms-content h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin: 36px 0 14px;
}

.privacy-content p,
.terms-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-content ul,
.terms-content ul {
  margin: 12px 0 12px 24px;
}

.privacy-content li,
.terms-content li {
  color: #475569;
  margin-bottom: 8px;
}

.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-dark);
  color: var(--text-light);
}

.not-found-number {
  font-size: 8rem;
  font-weight: 800;
  font-family: var(--font-head);
  background: linear-gradient(135deg, var(--blue-bright), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}