/* ═══════════════════════════════════════════════════════
   AQUA ENTERPRISE — Global Styles
   Nav, Footer, Typography, Buttons, Shared Components
   ═══════════════════════════════════════════════════════ */

/* ── Base Body ── */
body {
  font-family: var(--ff-body);
  font-size: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M5.5 3.21V20.8c0 .45.54.67.85.35l4.83-4.83 2.3 5.17c.14.33.52.48.84.34l2.45-1.09c.32-.14.47-.52.33-.84l-2.3-5.17 6.67-.15c.31 0 .47-.38.25-.61L6.35 2.85a.5.5 0 0 0-.85.36z'/%3E%3C/svg%3E"), auto;
}

/* Grain Texture Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grainShift 8s steps(10) infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent-primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-secondary);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-primary) transparent;
}

/* ── Custom Cursor ── */
body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M5.5 3.21V20.8c0 .45.54.67.85.35l4.83-4.83 2.3 5.17c.14.33.52.48.84.34l2.45-1.09c.32-.14.47-.52.33-.84l-2.3-5.17 6.67-.15c.31 0 .47-.38.25-.61L6.35 2.85a.5.5 0 0 0-.85.36z'/%3E%3C/svg%3E"), auto;
}

.cursor,
.cursor-trail {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */

h1, h2, h3 {
  font-family: var(--ff-display);
  color: var(--color-text-primary);
  font-weight: 600;
}

h1 { font-size: var(--font-h1); }
h2 { font-size: var(--font-h2); }
h3 { font-size: var(--font-h3); }

p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ── Section Label Component ── */
.section-label {
  font-family: var(--ff-accent);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--color-accent-secondary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent-secondary);
}

.section-label--center {
  justify-content: center;
}

/* ── Section Heading ── */
.section-heading {
  font-family: var(--ff-display);
  font-size: var(--font-h2);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.section-heading span {
  color: var(--color-accent-secondary);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════ */

main {
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
  animation-delay: 0.05s;
}

.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

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

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent-primary);
  color: var(--color-text-primary);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--color-accent-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-accent-secondary);
  border: 1px solid var(--color-accent-secondary);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: var(--color-accent-primary);
  color: var(--color-text-primary);
  border-color: var(--color-accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  color: var(--color-accent-light);
  border: none;
  padding: 0.5rem 0;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--color-accent-secondary);
  gap: 0.6rem;
}

.btn-large {
  padding: 1.1rem 3rem;
  font-family: var(--ff-accent);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}

/* ═══════════════════════════════════════════════════════
   GLASSMORPHISM CARD
   ═══════════════════════════════════════════════════════ */

.glass-card {
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: var(--glass-radius);
  transition: all var(--transition-fast);
}

.glass-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

/* ═══════════════════════════════════════════════════════
   IMAGE TREATMENT
   ═══════════════════════════════════════════════════════ */

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

.img-overlay-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--glass-radius);
}

.img-overlay-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 119, 182, 0.3);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.img-overlay-wrap:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   RADIAL GLOW DECORATION
   ═══════════════════════════════════════════════════════ */

.radial-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════
   NUMBER WATERMARK
   ═══════════════════════════════════════════════════════ */

.number-watermark {
  font-family: var(--ff-accent);
  font-size: 12rem;
  opacity: 0.04;
  color: white;
  position: absolute;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.8rem 0;
  background: linear-gradient(to bottom, rgba(4, 13, 26, 0.9) 0%, transparent 100%);
  transition: all var(--transition-fast);
}

.nav.scrolled {
  background: rgba(4, 13, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-nav);
  padding: 1rem 0;
}

.nav__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* For absolute centering of links */
}

.nav__logo {
  height: 80px;
  flex-shrink: 0;
  position: relative;
  top: 12px; /* Shifted lower as requested */
  z-index: 10;
}

.nav__logo img {
  height: 100%;
  width: auto;
  /* Make logo much larger without expanding the nav bar */
  transform: scale(2.8);
  transform-origin: left center;
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
  mix-blend-mode: screen;
  transition: transform var(--transition-fast);
}

.nav__logo:hover img {
  transform: scale(3.0);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* Perfect horizontal and vertical centering */
  white-space: nowrap;
}

.nav__link {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.3rem 0;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--color-accent-light);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav__link:hover {
  color: var(--color-accent-light);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link.active {
  color: var(--color-accent-glow);
}

.nav__link.active::after {
  width: 100%;
  background: var(--color-accent-glow);
}

.nav__cta {
  border-radius: 50px;
  border: 1px solid var(--color-accent-secondary);
  background: transparent;
  color: var(--color-accent-secondary);
  padding: 0.6rem 1.5rem;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background: var(--color-accent-primary);
  color: white;
  border-color: var(--color-accent-primary);
}

/* ── Hamburger Menu ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px; /* Extra hit area */
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  z-index: 1001;
  order: 10; /* Hamburger on the right */
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 26, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.nav__mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--color-text-secondary);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  opacity: 0;
  transform: translateX(-60px);
  transition: all var(--transition-fast);
}

.nav__mobile-overlay.open .nav__mobile-link {
  opacity: 1;
  transform: translateX(0);
}

.nav__mobile-overlay.open .nav__mobile-link:nth-child(1) { transition-delay: 0.1s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(2) { transition-delay: 0.2s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(3) { transition-delay: 0.3s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(4) { transition-delay: 0.4s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(5) { transition-delay: 0.5s; }
.nav__mobile-overlay.open .nav__mobile-link:nth-child(6) { transition-delay: 0.6s; }

.nav__mobile-link:hover {
  color: var(--color-accent-light);
}

.nav__mobile-link.active {
  color: var(--color-accent-glow);
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════════════════ */

.page-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img,
.page-hero__bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  font-family: var(--ff-body);
  font-size: var(--font-small);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-accent-light);
}

.page-hero__title {
  font-family: var(--ff-display);
  font-size: var(--font-h1);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.page-hero__subtitle {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 500px;
}

.page-hero__line {
  width: 80px;
  height: 2px;
  background: var(--color-accent-secondary);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */

.cta-banner {
  background: linear-gradient(135deg, #0077B6, #023E8A);
  text-align: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(72, 202, 228, 0.15), transparent 60%);
  pointer-events: none;
}

.cta-banner__heading {
  font-family: var(--ff-display);
  font-size: var(--font-h2);
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner__text {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-banner .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #023E8A;
  padding: 1.1rem 3rem;
  border-radius: 50px;
  border: none;
  font-family: var(--ff-accent);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.cta-banner .btn-cta:hover {
  background: var(--color-accent-glow);
  color: var(--color-bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--color-bg-footer);
  border-top: 1px solid var(--color-border);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer__grid {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand-logo {
  height: 120px;
  margin-bottom: 1rem;
}

.footer__brand-logo img {
  height: 100%;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
  mix-blend-mode: screen;
}

.footer__tagline {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-accent-light);
  margin-bottom: 0.75rem;
}

.footer__desc {
  font-size: var(--font-small);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
}

.footer__social-icon:hover {
  background: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
  color: white;
}

.footer__social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__heading {
  font-family: var(--ff-accent);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding: 0.4rem 0;
  transition: all var(--transition-fast);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
  position: relative;
  padding-left: 0;
}

.footer__link:hover {
  color: var(--color-accent-light);
  padding-left: 8px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: var(--font-small);
  color: var(--color-text-secondary);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  margin-top: clamp(2rem, 4vw, 4rem);
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright,
.footer__location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — NAVIGATION & SHARED
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: static;
    transform: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
    order: 10;
  }

  .nav__logo img {
    transform: scale(2.0);
  }
}

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 50vh;
    min-height: 350px;
  }

  .page-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* ═══════════════════════════════════════════════════════
   SHARED SECTIONS (Pan-India Presence)
   ═══════════════════════════════════════════════════════ */

.service-area {
  background: var(--color-bg-secondary);
  padding-block: clamp(5rem, 10vw, 10rem);
}

.service-area__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.service-area__heading {
  font-family: var(--ff-display);
  font-size: var(--font-h2);
  margin-bottom: 1.5rem;
}

.service-area__text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-area__pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-area__pill {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: rgba(0, 119, 182, 0.12);
  color: var(--color-accent-secondary);
  font-size: var(--font-small);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%237dd3fc' stroke='white' stroke-width='1'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 14.5a1 1 0 0 1-2 0V14h-1.5a1 1 0 0 1 0-2H11v-1.5a1 1 0 0 1 2 0V12h1.5a1 1 0 0 1 0 2H13z'/%3E%3C/svg%3E"), pointer;
}

.service-area__pill:hover {
  background: var(--color-accent-primary);
  color: white;
  border-color: var(--color-accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

.service-area__image {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.15);
  transform-origin: center center;
}

.service-area__frame {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.service-area__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  transform: scale(0.65); /* Scaled down more to fit within thick borders */
  transition: transform var(--transition-medium);
}

.service-area__image:hover .service-area__map {
  transform: scale(0.68);
}

@media (max-width: 768px) {
  .service-area__grid {
    grid-template-columns: 1fr;
  }
}
