/* ===========================
   SHYAM SAFETY NETS & INVISIBLE GRILLS
   Global Design System
   =========================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  /* Brand Colors */
  --primary: #0D1B4B;
  --primary-light: #1A2E6B;
  --primary-dark: #080F2A;
  --accent: #1A5FD5;
  --accent-light: #2E74F0;
  --cyan: #00B4D8;
  --cyan-light: #29C4E0;
  --cyan-glow: rgba(0, 180, 216, 0.3);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F5F8FF;
  --light-gray: #EEF2FF;
  --mid-gray: #94A3B8;
  --dark-gray: #334155;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-light: #64748B;

  /* Status */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0D1B4B 0%, #1A5FD5 50%, #00B4D8 100%);
  --grad-hero: linear-gradient(180deg, rgba(13, 27, 75, 0.75) 0%, rgba(0, 180, 216, 0.25) 100%);
  --grad-card: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  --grad-blue: linear-gradient(135deg, #1A5FD5, #00B4D8);
  --grad-dark: linear-gradient(135deg, #0D1B4B, #1A2E6B);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 27, 75, 0.08);
  --shadow-md: 0 4px 20px rgba(13, 27, 75, 0.12);
  --shadow-lg: 0 8px 40px rgba(13, 27, 75, 0.18);
  --shadow-xl: 0 20px 60px rgba(13, 27, 75, 0.25);
  --shadow-glow: 0 0 30px rgba(0, 180, 216, 0.4);
  --shadow-card: 0 4px 24px rgba(26, 95, 213, 0.12);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Spacing */
  --section-pad: 80px;
  --section-pad-sm: 48px;
  --container-max: 1280px;

  /* Typography */
  --font-main: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 170px;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1rem, 2vw, 1.3rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

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

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-sm {
  padding: var(--section-pad-sm) 0;
}

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

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

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

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.flex {
  display: flex;
}

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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-gap {
  display: flex;
  gap: 16px;
}

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

.text-left {
  text-align: left;
}

.text-white {
  color: var(--white) !important;
}

.text-cyan {
  color: var(--cyan);
}

.text-accent {
  color: var(--accent);
}

/* ===========================
   SECTION TITLES
   =========================== */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title h2 {
  margin-bottom: 16px;
  position: relative;
}

.section-title h2 span {
  color: var(--accent);
}

.section-title p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-title.light .eyebrow {
  color: var(--cyan-light);
  background: rgba(41, 196, 224, 0.15);
  border-color: rgba(41, 196, 224, 0.3);
}

.section-title.light h2 {
  color: var(--white);
}

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 95, 213, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 95, 213, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

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

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

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

.btn-lg {
  padding: 17px 42px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition-med);
}

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

.card-glass {
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

/* ===========================
   BADGES & TAGS
   =========================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-cyan {
  background: rgba(0, 180, 216, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, 0.25);
}

/* ===========================
   HEADER
   =========================== */
/* ===========================
   HEADER
   =========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-med);
  padding: 0;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(13, 27, 75, 0.08);
  border-bottom: 1px solid rgba(26, 95, 213, 0.08);
}

#header.transparent {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(13, 27, 75, 0.08);
}

#header.scrolled {
  background: var(--white);
  box-shadow: 0 4px 25px rgba(13, 27, 75, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 12px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header-logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(26, 95, 213, 0.08);
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.nav-link:hover .chevron,
.nav-link.active .chevron {
  color: var(--accent);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(13, 27, 75, 0.18);
  padding: 20px;
  min-width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-med);
  border: 1px solid rgba(26, 95, 213, 0.12);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.dropdown a:hover {
  background: rgba(26, 95, 213, 0.06);
  color: var(--accent);
  padding-left: 18px;
}

.dropdown a svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(26, 95, 213, 0.3);
  margin-left: 8px;
  transition: var(--transition-med);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 95, 213, 0.45);
  background: var(--primary) !important;
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-med);
  transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark);
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: var(--transition-med);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-header img {
  height: 44px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
}

.mobile-nav-body {
  padding: 24px;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--cyan-light);
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-services-list {
  display: none;
  padding: 8px 0;
}

.mobile-services-list.open {
  display: block;
}

.mobile-services-list a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  padding: 10px 16px;
  border-left: 2px solid rgba(0, 180, 216, 0.3);
  margin: 4px 0;
  transition: var(--transition-fast);
}

.mobile-services-list a:hover {
  color: var(--cyan-light);
  border-left-color: var(--cyan);
  padding-left: 20px;
}

.mobile-nav-cta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary);
}

/* 16:9 desktop */
.hero-slider-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.slide.active .slide-img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 27, 75, 0.82) 0%,
      rgba(13, 27, 75, 0.55) 50%,
      rgba(0, 180, 216, 0.25) 100%);
  z-index: 2;
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.slide-text {
  max-width: 640px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-text {
  transform: translateY(0);
  opacity: 1;
}

.slide-eyebrow {
  display: inline-block;
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.5);
  color: var(--cyan-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.slide-title {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-title span {
  color: var(--cyan-light);
}

.slide-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 28px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition-med);
  border: none;
}

.dot.active {
  width: 28px;
  background: var(--cyan);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-med);
  color: var(--white);
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow-prev {
  left: 24px;
}

.slider-arrow-next {
  right: 24px;
}

/* ===========================
   QUICK CONTACT FORM
   =========================== */
.quick-contact {
  background: var(--grad-primary);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.quick-contact::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.quick-contact-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.quick-contact-text {
  flex: 1;
  min-width: 260px;
}

.quick-contact-text h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 8px;
}

.quick-contact-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

.quick-contact-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex: 2;
  min-width: 300px;
}

.form-field {
  flex: 1;
  min-width: 180px;
  position: relative;
}

.form-field input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-field input:focus {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.form-unique-id {
  display: none;
}

.form-msg {
  display: none;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 500;
}

.form-msg.success {
  color: #4ade80;
  display: block;
}

.form-msg.error {
  color: #f87171;
  display: block;
}

/* ===========================
   SERVICE CARDS
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-med);
  border: 1px solid rgba(26, 95, 213, 0.06);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: var(--transition-med);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 20px;
  position: relative;
  z-index: 2;
  background: var(--white);
  transition: var(--transition-med);
}

.service-card:hover .service-card-body {
  background: var(--primary);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
  transition: var(--transition-fast);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition-fast);
}

.service-card:hover .service-card-link {
  color: var(--cyan-light);
}

/* ===========================
   STATS / COUNTER SECTION
   =========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition-med);
}

.stat-item:hover {
  background: rgba(0, 180, 216, 0.1);
}

.stat-number {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cyan-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(26, 95, 213, 0.08);
  transition: var(--transition-med);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-med);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 95, 213, 0.2);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(26, 95, 213, 0.12), rgba(0, 180, 216, 0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  transition: var(--transition-med);
}

.why-card:hover .why-icon {
  background: var(--grad-blue);
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

/* ===========================
   REVIEWS / TESTIMONIALS
   =========================== */
.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(26, 95, 213, 0.08);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.review-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(26, 95, 213, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(26, 95, 213, 0.25);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-item.open .faq-question {
  background: var(--primary);
  color: var(--white);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-med);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.faq-item.open .faq-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 20px 24px;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.75;
  background: var(--off-white);
  border-top: 1px solid rgba(26, 95, 213, 0.06);
}

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

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 95, 213, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {}

.footer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-heading {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--cyan-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.87rem;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 180, 216, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--cyan-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy a {
  color: var(--cyan-light);
  font-weight: 500;
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
  color: var(--cyan);
  font-weight: 500;
}

/* ===========================
   FLOATING CONTACT
   =========================== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-med);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.float-btn-phone {
  background: var(--accent);
}

.float-btn-whatsapp {
  background: #25D366;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  opacity: 0.5;
  animation: pulse-ring 2s ease infinite;
  z-index: -1;
}

.float-btn-whatsapp::after {
  background: #25D366;
}

.float-btn-phone::after {
  background: var(--accent);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--primary);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ===========================
   PAGE HERO BANNER
   =========================== */
.page-hero {
  background: var(--grad-primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero/hero-slide-1.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.page-hero>.container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
}

.breadcrumb a {
  color: var(--cyan-light);
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ===========================
   HIGHLIGHTS / PROCESS
   =========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(26, 95, 213, 0.08);
  transition: var(--transition-med);
  position: relative;
  counter-increment: steps;
}

.process-step::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 95, 213, 0.2);
}

.process-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 75, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-med);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

/* ===========================
   SPECIALISATION FEATURE
   =========================== */
.spec-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spec-feature.reverse {
  direction: rtl;
}

.spec-feature.reverse>* {
  direction: ltr;
}

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

.spec-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.spec-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-img-badge strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.spec-img-badge span {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.3;
}

.spec-content .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.spec-content h2 {
  margin-bottom: 16px;
}

.spec-content h2 span {
  color: var(--accent);
}

.spec-list {
  margin: 24px 0;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.spec-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   SUCCESS STORY SECTION
   =========================== */
.success-timeline {
  position: relative;
  padding-left: 40px;
}

.success-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-blue);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 95, 213, 0.08);
}

.contact-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-form-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

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

.full-form-group input,
.full-form-group textarea,
.full-form-group select {
  width: 100%;
  padding: 13px 18px;
  background: var(--off-white);
  border: 1.5px solid rgba(26, 95, 213, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.full-form-group input:focus,
.full-form-group textarea:focus,
.full-form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 95, 213, 0.1);
}

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

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 108px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-med);
  z-index: 985;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ===========================
   SERVICE PAGE SPECIFIC
   =========================== */
.service-page-hero {
  background: var(--grad-primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.service-page-hero>.container {
  position: relative;
  z-index: 1;
}

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

.service-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.service-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.service-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-hero-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-content-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.service-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  margin-top: 28px;
}

.service-content ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.service-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.service-content ul li::before {
  content: '▸';
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(26, 95, 213, 0.08);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.sidebar-box h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--off-white);
  color: var(--text-dark);
}

.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 0.87rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--off-white);
  transition: var(--transition-fast);
}

.sidebar-services a:last-child {
  border-bottom: none;
}

.sidebar-services a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.sidebar-services a::before {
  content: '▸';
  color: var(--cyan);
  font-size: 0.75rem;
}

.sidebar-cta {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
}

.sidebar-cta h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

/* ===========================
   HIGHLIGHTS SECTION
   =========================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-med);
}

.highlight-card:hover {
  background: rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.highlight-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1100px) {
  :root {
    --section-pad: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-feature {
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-content-wrap {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .spec-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spec-feature.reverse {
    direction: ltr;
  }

  .service-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
  }

  /* Mobile Hero — 1:1 ratio */
  .hero-slider-inner {
    aspect-ratio: 1 / 1;
    max-height: none;
  }

  .slide-content {
    padding: 0 5%;
  }

  .slide-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .slide-desc {
    font-size: 0.84rem;
  }

  .slide-actions {
    gap: 10px;
  }

  .btn-lg {
    padding: 13px 24px;
    font-size: 0.9rem;
  }

  .slider-arrow {
    display: none;
  }

  .slider-dots {
    bottom: 14px;
  }

  /* Nav becomes mobile */
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .header-inner {
    padding: 0 16px;
  }

  .header-logo img {
    height: 76px;
  }

  /* Quick contact form */
  .quick-contact-inner {
    flex-direction: column;
    gap: 24px;
  }

  .quick-contact-form {
    flex-direction: column;
    width: 100%;
  }

  .form-field {
    width: 100%;
  }

  /* Grids */
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Page hero */
  .page-hero {
    padding: 120px 0 60px;
  }

  /* Service page */
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .review-card {
    min-width: calc(100vw - 48px);
  }

  /* Floating */
  .float-btn {
    width: 50px;
    height: 50px;
  }

  .floating-contact {
    bottom: 20px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 24px;
  }
}

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  background: var(--grad-primary);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 20px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cyan-light);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ===========================
   SERVICE PAGE HERO
   =========================== */
.service-page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.service-page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.service-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 75, 0.92) 0%, rgba(13, 27, 75, 0.7) 60%, rgba(0, 180, 216, 0.3) 100%);
  z-index: 1;
}

.service-page-hero .container {
  position: relative;
  z-index: 2;
}

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

.service-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.service-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-hero-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ===========================
   SERVICE CONTENT LAYOUT
   =========================== */
.service-content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.service-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--off-white);
}

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

.service-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-content ul {
  color: var(--text-body);
  line-height: 1.8;
  padding-left: 0;
  list-style: none;
}

.service-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px solid var(--off-white);
}

.service-content ul li:last-child {
  border-bottom: none;
}

.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-step {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  border-top: 3px solid var(--accent);
}

.process-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.process-step h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(26, 95, 213, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(26, 95, 213, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  font-family: var(--font-main);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question[aria-expanded="true"] {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ===========================
   SERVICE SIDEBAR
   =========================== */
.service-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-cta {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: white;
}

.sidebar-cta h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.sidebar-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid rgba(26, 95, 213, 0.08);
  box-shadow: var(--shadow-card);
}

.sidebar-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--off-white);
}

.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-services a {
  display: block;
  padding: 8px 12px;
  font-size: 0.84rem;
  color: var(--text-body);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--off-white);
}

.sidebar-services a:last-child {
  border-bottom: none;
}

.sidebar-services a:hover {
  background: var(--off-white);
  color: var(--accent);
  padding-left: 16px;
}

/* ===========================
   ABOUT PAGE – SPEC FEATURE
   =========================== */
.spec-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.spec-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.spec-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.spec-img-badge strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}

.spec-img-badge span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.spec-content .eyebrow {
  display: inline-block;
  background: rgba(26, 95, 213, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.spec-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.spec-content h2 span {
  color: var(--accent);
}

.spec-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Success Timeline */
.success-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: flex-start;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(0, 180, 216, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan-light);
}

.timeline-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* Why Cards */
.why-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1.5px solid rgba(26, 95, 213, 0.08);
  box-shadow: var(--shadow-card);
  transition: var(--transition-med);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 95, 213, 0.2);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   GALLERY PAGE
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  transition: var(--transition-med);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 75, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1.5px solid rgba(26, 95, 213, 0.1);
  box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-box p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.full-form-group {
  margin-bottom: 18px;
}

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

.full-form-group input,
.full-form-group select,
.full-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(26, 95, 213, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.full-form-group input:focus,
.full-form-group select:focus,
.full-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 95, 213, 0.1);
}

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

/* ===========================
   REVIEWS MASONRY & SUMMARY
   =========================== */
.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}

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

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.review-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Areas Grid (Contact page) */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

/* ===========================
   SECTION LIGHT
   =========================== */
.section-light {
  background: var(--off-white);
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-left::after {
  margin-left: 0;
}

/* ===========================
   RESPONSIVE — SERVICE PAGES
   =========================== */
@media (max-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-img {
    display: none;
  }

  .service-content-wrap {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .spec-feature {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-page-hero {
    min-height: 400px;
    padding: 100px 0 40px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 110px 0 56px;
  }

  .contact-form-box {
    padding: 24px;
  }

  body {
    padding-top: 76px;
  }
}

/* ===========================
   TOPBAR
   =========================== */
.topbar {
  background: linear-gradient(90deg, #080F2A 0%, #0D1B4B 50%, #1A2E6B 100%);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  white-space: nowrap;
}

.topbar-item a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.topbar-item a:hover {
  color: var(--cyan-light);
}

.topbar-badge {
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.45);
  color: var(--cyan-light);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.25);
}

/* ===========================
   MARQUEE HIGHLIGHTS TOOL
   =========================== */
.marquee-bar {
  background: var(--grad-primary);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(13, 27, 75, 0.15);
  user-select: none;
  z-index: 10;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.marquee-item .highlight {
  color: #FFD700;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.marquee-sep {
  color: var(--cyan-light);
  font-size: 0.9rem;
  opacity: 0.7;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .topbar-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: block;
    padding: 6px 0;
  }

  .topbar-inner {
    justify-content: center;
    padding: 0 10px;
  }

  .topbar-left {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-item {
    font-size: 0.75rem;
    gap: 4px;
  }

  .topbar-right {
    display: none;
  }

  .marquee-bar {
    padding: 8px 0;
  }

  .marquee-item {
    font-size: 0.78rem;
  }

  body {
    padding-top: 144px;
  }
}