/* ============================================
   BOSQ PROTECT - Design System & Styles
   ============================================ */

/* --- Google 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 {
  /* Colors */
  --navy: #181f39;
  --navy-light: #202a4d;
  --navy-dark: #101526;
  --gold: #C4A962;
  --gold-light: #D4BF82;
  --gold-dark: #A68D45;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --gray-lighter: #F5F5F5;
  --white: #FFFFFF;
  --black: #111111;
  --danger: #E74C3C;
  --success: #2ECC71;

  /* RGB values for alpha usage */
  --navy-rgb: 24, 31, 57;
  --gold-rgb: 196, 169, 98;
  --gray-rgb: 107, 107, 107;

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

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --header-height: 80px;

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

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 20px rgba(var(--gold-rgb), 0.3);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--gold-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--gray);
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }

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

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

.section {
  padding: var(--space-5xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.section-navy {
  background: var(--navy);
}

.section-gray {
  background: var(--gray-lighter);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

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

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}

.btn:hover::after {
  transform: translateX(100%);
}

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

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.4);
}

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

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

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

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

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn i {
  font-size: 1.1em;
  transition: transform var(--duration) var(--ease);
}

.btn:hover i {
  transform: translateX(3px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid var(--gold);
  transition: all var(--duration) var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-xl);
  max-width: 1440px;
  margin: 0 auto;
}

.header.transparent {
  background: transparent;
  border-bottom: 1px solid var(--gold);
}

.header.scrolled {
  background: rgba(var(--navy-rgb), 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--gold);
}

.logo img {
  height: 50px;
  width: auto;
  transition: all var(--duration) var(--ease);
}

.logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo .logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--duration) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--navy-dark);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  transition: right 0.4s var(--ease);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--duration) var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  padding-left: var(--space-md);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mobile-overlay.show {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(var(--navy-rgb), 0.92) 0%, 
    rgba(var(--navy-rgb), 0.7) 50%,
    rgba(var(--navy-rgb), 0.85) 100%
  );
}

/* Animated shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  border: 2px solid var(--gold);
  top: -200px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  top: 30%;
  right: 20%;
  animation: floatShape 12s ease-in-out infinite 2s;
}

.hero-shape-4 {
  width: 100px;
  height: 100px;
  background: rgba(var(--gold-rgb), 0.1);
  top: 20%;
  left: 15%;
  animation: floatShape 18s ease-in-out infinite 5s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-10px, 20px) rotate(-3deg); }
  75% { transform: translate(15px, 10px) rotate(4deg); }
}

/* Gold accent lines */
.hero-accent-line-left,
.hero-accent-line-right {
  position: absolute;
  top: 120px;
  width: 3px;
  height: calc(100% - 120px);
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
  z-index: 3;
}
.hero-accent-line-left { left: 0; }
.hero-accent-line-right { right: 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 5;
  width: 100%;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 0 0;
  min-height: 100vh;
}

.hero-left {
  display: flex;
  align-items: center;
  padding-bottom: var(--space-3xl);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(var(--gold-rgb), 0.15);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-xl);
}

.hero-label i {
  font-size: 0.9em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero-description {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 530px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
  color: var(--gold);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero-stat p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Right Column - Guard Graphic & Arch */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 100%;
  align-self: end;
}

.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 830px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(90px) scale(0.75);
  animation: heroGraphicEnter 1.4s ease-out 0.3s forwards;
}

@keyframes heroGraphicEnter {
  0% {
    opacity: 0;
    transform: translateY(90px) scale(0.75);
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  45% {
    opacity: 1;
    transform: translateY(-12px) scale(1.055);
    animation-timing-function: ease-in-out;
  }
  68% {
    transform: translateY(5px) scale(0.975);
    animation-timing-function: ease-in-out;
  }
  85% {
    transform: translateY(-2px) scale(1.012);
    animation-timing-function: ease-in-out;
  }
  94% {
    transform: translateY(1px) scale(0.996);
    animation-timing-function: ease-in-out;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-arch-bg {
  position: absolute;
  bottom: 0;
  width: 530px;
  height: 700px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(196, 169, 98, 0.88) 100%);
  border: 3px solid var(--gold-dark);
  border-radius: 265px 265px 0 0;
  z-index: 1;
}

.hero-arch-border {
  position: absolute;
  bottom: -5px;
  width: 555px;
  height: 720px;
  border: 3px solid var(--gold-dark);
  border-radius: 277px 277px 0 0;
  z-index: 2;
  pointer-events: none;
  transform-origin: bottom center;
}

.hero-border-1 {
  animation: pulseBorder 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-border-2 {
  width: 580px;
  height: 740px;
  border-radius: 290px 290px 0 0;
  bottom: -10px;
  border-color: var(--gold-dark);
  animation: pulseBorder 4s cubic-bezier(0.4, 0, 0.2, 1) infinite 2s;
}

@keyframes pulseBorder {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.95;
    border-color: var(--gold);
  }
  50% {
    transform: scale(1.02);
    opacity: 0.45;
    border-color: var(--gold-dark);
  }
}

.hero-guard-img {
  position: relative;
  z-index: 3;
  width: auto;
  height: 830px;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s var(--ease);
}

.hero-graphic:hover .hero-guard-img {
  transform: translateY(-5px) scale(1.01);
}

/* Floating Badges */
.hero-badge {
  position: absolute;
  background: rgba(24, 31, 57, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
  border: 1px solid rgba(196, 169, 98, 0.35);
  transition: all var(--duration) var(--ease);
  opacity: 0;
  transform: scale(0.6) translateY(30px);
}

.hero-badge:hover {
  transform: translateY(-2px) !important;
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(196, 169, 98, 0.25);
}

.hero-badge .badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(var(--gold-rgb), 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge .badge-icon i,
.hero-badge .badge-icon svg {
  width: 18px;
  height: 18px;
}

.hero-badge .badge-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.hero-badge .badge-info p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Positions & float delay */
.badge-1 {
  top: 15%;
  right: -25px;
  animation: badgePop1 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards, floatBadge1 6s ease-in-out 1.7s infinite;
}

.badge-2 {
  top: 45%;
  left: -35px;
  animation: badgePop2 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards, floatBadge2 6s ease-in-out 1.9s infinite;
}

.badge-3 {
  bottom: 12%;
  right: -20px;
  animation: badgePop1 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards, floatBadge1 6s ease-in-out 2.1s infinite;
}

@keyframes badgePop1 {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-4px);
  }
  80% {
    transform: scale(0.96) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes badgePop2 {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-4px);
  }
  80% {
    transform: scale(0.96) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatBadge1 {
  0%, 100% { transform: scale(1) translateY(0); opacity: 1; }
  50% { transform: scale(1) translateY(-14px); opacity: 1; }
}

@keyframes floatBadge2 {
  0%, 100% { transform: scale(1) translateY(0); opacity: 1; }
  50% { transform: scale(1) translateY(14px); opacity: 1; }
}

/* Responsiveness for Hero Grid */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
    padding: calc(var(--header-height) + var(--space-sm)) 0 var(--space-md);
    min-height: auto;
  }

  .hero-left {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
  }

  .hero-right {
    margin-top: 0;
  }

  .hero-graphic {
    max-width: 380px;
    height: 440px;
  }

  .hero-guard-img {
    height: 440px;
  }

  .hero-arch-bg {
    width: 290px;
    height: 360px;
  }

  .hero-arch-border {
    width: 310px;
    height: 375px;
  }

  .hero-border-2 {
    width: 330px;
    height: 390px;
  }

  .badge-1 { top: -80px; right: 0; }
  .badge-2 { left: 0; }
  .badge-3 { right: 0; }
}

@media (max-width: 480px) {
  .hero-graphic {
    max-width: 320px;
    height: 370px;
  }

  .hero-guard-img {
    height: 370px;
  }

  .hero-arch-bg {
    width: 240px;
    height: 300px;
  }

  .hero-arch-border {
    width: 260px;
    height: 315px;
  }

  .hero-border-2 {
    width: 280px;
    height: 330px;
  }

  .hero-badge {
    padding: 8px 12px;
  }

  .badge-1 { top: -70px; right: 0px; }
  .badge-2 { top: 40%; left: -10px; }
  .badge-3 { bottom: 8%; right: -10px; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.card-body {
  padding: var(--space-xl);
}

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

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(196, 169, 98, 0.35);
}

.service-card:hover::before {
  transform: scaleX(1);
  background: var(--navy);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: rgba(var(--gold-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: all var(--duration) var(--ease);
}

.service-icon i,
.service-icon svg {
  font-size: 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
  transition: all var(--duration) var(--ease);
}

.service-card:hover .service-icon {
  background: var(--white);
}

.service-card:hover .service-icon i,
.service-card:hover .service-icon svg {
  color: var(--navy);
}

.service-card h4 {
  margin-bottom: var(--space-sm);
  transition: color var(--duration) var(--ease);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: color var(--duration) var(--ease);
}

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

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

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--duration) var(--ease);
}

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

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.blog-card-date {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card-body {
  padding: var(--space-xl);
}

.blog-card-body h4 {
  margin-bottom: var(--space-sm);
  transition: color var(--duration) var(--ease);
}

.blog-card:hover .blog-card-body h4 {
  color: var(--gold);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.blog-card-footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.blog-card-footer i {
  transition: transform var(--duration) var(--ease);
}

.blog-card:hover .blog-card-footer i {
  transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-images-overlapping {
  position: relative;
  height: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.overlapping-bg-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70%;
  height: 380px;
  border: 2px dashed rgba(196, 169, 98, 0.4);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

.img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  transition: transform var(--duration) var(--ease);
}

.img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 2;
  transition: transform var(--duration) var(--ease);
}

/* Hover effects to make it feel extremely premium */
.about-images-overlapping:hover .img-back {
  transform: translate(-10px, -10px) scale(1.02);
}

.about-images-overlapping:hover .img-front {
  transform: translate(10px, 10px) scale(1.02);
}

/* Pulsing and Animative Badge Over the Overlapping Images */
.about-overlap-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: floatOverlapBadge 4s ease-in-out infinite;
}

.about-overlap-badge i,
.about-overlap-badge svg {
  color: var(--gold);
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  animation: pulseGoldIcon 2s infinite ease-in-out;
}

.about-overlap-badge .badge-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.about-overlap-badge .badge-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.about-overlap-badge .badge-text span {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Radial pulse ring behind badge */
.badge-pulse-ring {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(196, 169, 98, 0.4);
  border-radius: calc(var(--radius-md) + 8px);
  z-index: -1;
  pointer-events: none;
  animation: badgeRadialPulse 3s infinite ease-out;
}

@keyframes floatOverlapBadge {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes badgeRadialPulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  z-index: 5;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 2;
}

/* Backdrop accent border glow */
.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
  animation: borderGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes borderGlowPulse {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.5;
    box-shadow: 0 0 10px rgba(196, 169, 98, 0.1);
  }
  50% {
    transform: translate(-5px, -5px);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(196, 169, 98, 0.35);
  }
}

/* Floating ISO badge */
.about-floating-badge {
  position: absolute;
  top: 30px;
  left: -25px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  animation: floatAboutBadge 4s ease-in-out infinite;
}

.about-floating-badge i,
.about-floating-badge svg {
  color: var(--gold);
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.about-floating-badge span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes floatAboutBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulsing radar scanning circles */
.about-pulsing-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(196, 169, 98, 0.35);
  border-radius: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: circlePulse 4s infinite linear;
}

@keyframes circlePulse {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  z-index: 3;
  animation: floatExperienceBadge 5s ease-in-out infinite;
}

.badge-experience-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.15);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulseGoldIcon 2.5s infinite ease-in-out;
}

.badge-experience-icon i,
.badge-experience-icon svg {
  color: var(--gold);
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.badge-experience-content {
  text-align: left;
}

.about-image-badge h3 {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 2px 0;
  font-weight: 800;
}

.about-image-badge p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes floatExperienceBadge {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
  }
}

@keyframes pulseGoldIcon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(196, 169, 98, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 12px 4px rgba(196, 169, 98, 0);
  }
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content .section-label {
  justify-content: flex-start;
}

.about-content .section-label::before {
  display: none;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.about-feature i,
.about-feature svg {
  color: var(--gold);
  font-size: 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
}

/* Expertise Section - Grid Layout */
.expertise-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: stretch;
  margin-top: var(--space-xl);
}

.expertise-cards-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.expertise-card {
  display: flex;
  gap: var(--space-lg);
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}

.expertise-card:hover {
  transform: translateX(6px);
  border-color: rgba(var(--gold-rgb), 0.3);
  box-shadow: var(--shadow-md);
}

.expertise-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(var(--gold-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}

.expertise-card-icon i,
.expertise-card-icon svg {
  color: var(--gold);
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.expertise-card:hover .expertise-card-icon {
  background: var(--gold);
  transform: scale(1.05);
}

.expertise-card:hover .expertise-card-icon i,
.expertise-card:hover .expertise-card-icon svg {
  color: var(--white);
}

.expertise-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  color: var(--navy);
  font-weight: 700;
}

.expertise-card-body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

/* Right Column: Graphic and overlay */
.expertise-graphic-col {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.expertise-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  overflow: visible;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.expertise-bg-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
  animation: borderGlowPulse 6s ease-in-out infinite alternate 1s;
}

.expertise-main-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.expertise-floating-tag {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  animation: floatOverlapBadge 4s ease-in-out infinite 1s;
}

.expertise-floating-tag i,
.expertise-floating-tag svg {
  color: var(--gold);
  font-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
}

.expertise-floating-tag span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .expertise-image-wrapper {
    max-width: 450px;
  }
}

/* About Page - Why Choose Us Split Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-3xl);
  align-items: center;
}

.why-us-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 480px;
  z-index: 5;
  margin: 0 auto;
}

/* Background Blue Accent */
.why-us-bg-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 95%;
  height: calc(100% + 40px);
  background: var(--navy);
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
  transform-origin: left center;
  animation: bgScaleLoop 3.5s infinite alternate ease-in-out;
}

@keyframes bgScaleLoop {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.55); }
}

/* Main Guard Image */
.why-us-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

/* Why Choose Us Feature Grid */
.why-us-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
}

.why-us-feature-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  transition: all var(--duration) var(--ease);
}

.why-us-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  margin-top: 2px;
}

.why-us-feature-icon i,
.why-us-feature-icon svg {
  color: var(--gold);
  font-size: 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  transition: all var(--duration) var(--ease);
}

.why-us-feature-item:hover .why-us-feature-icon {
  background: var(--gold);
  transform: scale(1.05);
}

.why-us-feature-item:hover .why-us-feature-icon i,
.why-us-feature-item:hover .why-us-feature-icon svg {
  color: var(--white);
}

.why-us-feature-text h5 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 3px;
  font-weight: 700;
  line-height: 1.3;
}

.why-us-feature-text p {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--gray);
  margin: 0;
}

/* Vision & Mission Layout Grid */
.vm-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: center;
}

.vm-card-item {
  display: flex;
  gap: var(--space-lg);
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  transition: all var(--duration) var(--ease);
}

.vm-card-item:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--gold-rgb), 0.25);
  box-shadow: var(--shadow-md);
}

.vm-card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(var(--gold-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all var(--duration) var(--ease);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
}

.vm-card-icon-wrap i,
.vm-card-icon-wrap svg {
  font-size: 1.4rem;
  width: 1.4rem;
  height: 1.4rem;
  transition: all var(--duration) var(--ease);
}

.vm-card-item:hover .vm-card-icon-wrap {
  background: var(--gold);
  color: var(--white);
}

.vm-card-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.vm-card-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

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

.vm-image-overlap-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 510px;
  z-index: 5;
}

/* Background Gold Accent Frame */
.vm-accent-frame {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: 50px 0 50px 0;
  z-index: 0;
  pointer-events: none;
  transition: all var(--duration) var(--ease);
}

/* Back Image - Rounded Diagonals */
.vm-img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 330px;
  height: 390px;
  object-fit: cover;
  border-radius: 40px 0 40px 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all var(--duration) var(--ease);
}

/* Front Image - Opposite Rounded Diagonals */
.vm-img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 270px;
  height: 270px;
  object-fit: cover;
  border-radius: 0 40px 0 40px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 4;
  transition: all var(--duration) var(--ease);
}

.vm-image-overlap-wrapper:hover .vm-img-front {
  transform: translate(-8px, -8px) scale(1.02);
}

.vm-image-overlap-wrapper:hover .vm-img-back {
  transform: translate(5px, 5px);
}

.vm-image-overlap-wrapper:hover .vm-accent-frame {
  transform: scale(0.96);
}

@media (max-width: 991px) {
  .why-us-grid,
  .vm-layout-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  
  .why-us-image-wrapper {
    width: 100%;
    max-width: 320px;
    height: 400px;
    margin: 0 auto;
  }
  
  .vm-image-overlap-wrapper {
    max-width: 450px;
    height: 380px;
    margin: 0 auto;
  }
  
  .vm-img-back {
    width: 320px;
    height: 280px;
  }
  
  .vm-img-front {
    width: 220px;
    height: 220px;
  }
}

/* Why Choose Us with background overlay image */
#why-us {
  position: relative;
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.why-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}

.why-us-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(var(--navy-rgb), 0.95) 0%, 
    rgba(var(--navy-rgb), 0.82) 50%,
    rgba(var(--navy-rgb), 0.95) 100%
  );
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.why-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--duration) var(--ease);
}

.why-card:hover {
  background: rgba(var(--navy-rgb), 0.4);
  border-color: rgba(var(--gold-rgb), 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.15);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: all var(--duration) var(--ease);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.15);
}

.why-card-icon i,
.why-card-icon svg {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  transition: all var(--duration) var(--ease);
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.5);
  transform: scale(1.05);
}

.why-card:hover .why-card-icon i,
.why-card:hover .why-card-icon svg {
  color: var(--navy);
}

.why-card h5 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

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

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-category {
  margin-bottom: var(--space-3xl);
}

.services-category:last-child {
  margin-bottom: 0;
}

.services-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--gray-lighter);
}

.services-category-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(var(--gold-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-category-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--duration) var(--ease);
}

.service-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.service-item i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-item span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

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

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--navy-rgb), 0.7), transparent);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

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

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

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--duration) var(--ease);
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-caption h5 {
  color: var(--white);
  font-size: 1rem;
}

.gallery-item-caption p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin: 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  background: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-cards {
  display: grid;
  gap: var(--space-lg);
}

.contact-info-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--gray-lighter);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(var(--gold-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.25rem;
  color: var(--gold);
}

.contact-info-card h5 {
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  margin: 0;
}

.contact-info-card a {
  color: var(--gray);
  transition: color var(--duration) var(--ease);
}

.contact-info-card a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  background: var(--gray-lighter);
  color: var(--black);
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease);
}

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

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

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--navy);
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(var(--navy-rgb), 0.88) 0%, 
    rgba(var(--navy-rgb), 0.72) 50%,
    rgba(var(--navy-rgb), 0.88) 100%
  );
}

.page-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(var(--gold-rgb), 0.08);
  z-index: 2;
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span {
  color: var(--gold);
}

.breadcrumbs i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* Tagline Card Styling with Gold Corners */
.tagline-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(var(--navy-rgb), 0.02);
  border: 1px solid rgba(196, 169, 98, 0.25);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.tagline-logo {
  height: 70px;
  margin: 0 auto var(--space-xl);
  display: block;
}

.tagline-text {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 780px;
  margin: 0 auto var(--space-lg);
  color: var(--gray);
}

.tagline-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.tagline-card::before,
.tagline-card::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
  pointer-events: none;
}

.tagline-card::before {
  top: -2px;
  left: -2px;
  border-width: 3px 0 0 3px;
  border-top-left-radius: var(--radius-lg);
}

.tagline-card::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 3px 3px 0;
  border-bottom-right-radius: var(--radius-lg);
}

/* Services Page - Interactive Tab Layout */
.services-tab-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-2xl);
}

.services-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-tab-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.service-tab-btn i,
.service-tab-btn svg {
  font-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--gold);
  transition: all var(--duration) var(--ease);
}

.service-tab-btn:hover {
  background: rgba(var(--gold-rgb), 0.08);
  color: var(--gold-dark);
}

.service-tab-btn.active {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.25);
}

.service-tab-btn.active i,
.service-tab-btn.active svg {
  color: var(--white);
}

.services-tab-panels {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.service-tab-panel {
  display: none;
}

.service-tab-panel.active {
  display: block;
  animation: fadeInTab 0.5s ease-out;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-header h3 {
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.panel-header p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.panel-banner-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}

.panel-banner-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.sub-services-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--gray-lighter);
  padding-bottom: 8px;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: var(--space-md);
}

.sub-service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.sub-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--gold-rgb), 0.3);
  box-shadow: var(--shadow-md);
}

.sub-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--duration) var(--ease);
}

.sub-service-card:hover::before {
  transform: scaleY(1);
}

.sub-card-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(var(--gold-rgb), 0.08);
  position: absolute;
  right: 15px;
  bottom: 10px;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-heading);
}

.sub-service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.sub-service-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gray);
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .services-tab-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Industries Served Page - Responsive Image Cards Grid */
.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.industry-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  height: 275px;
  position: relative;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--gold-rgb), 0.3);
}

.industry-card-img {
  width: 100%;
  height: 155px;
  overflow: hidden;
  position: relative;
  background: var(--navy-dark);
}

.industry-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration) var(--ease);
}

.industry-card:hover .industry-card-img img {
  transform: scale(1.08);
}

/* Glassmorphism bottom information panel */
.industry-card-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 125px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 3;
  transition: all var(--duration) var(--ease);
}

.industry-card:hover .industry-card-glass {
  background: rgba(255, 255, 255, 0.9);
}

.industry-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--gold-rgb), 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  transition: all var(--duration) var(--ease);
}

.industry-card-icon i,
.industry-card-icon svg {
  color: var(--gold);
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  transition: all var(--duration) var(--ease);
}

.industry-card:hover .industry-card-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

.industry-card:hover .industry-card-icon i,
.industry-card:hover .industry-card-icon svg {
  color: var(--white);
}

.industry-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.industry-card h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.industry-card p {
  color: var(--gold);
  font-size: 0.78rem;
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer-about .logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-about .logo img {
  height: 45px;
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--duration) var(--ease);
}

.footer-social a i,
.footer-social a svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  fill: none !important;
}

.footer-social a svg.icon-x {
  fill: currentColor !important;
  stroke: none !important;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer-contact li i,
.footer-contact li svg {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ============================================
   FLOATING BUTTONS (WhatsApp + Scroll Top)
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--duration) var(--ease);
  animation: whatsappPulse 2s ease-in-out infinite;
}

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

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

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

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

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s var(--ease);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s var(--ease);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s var(--ease);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--ease);
}

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

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

/* Hero entrance animations */
.hero-enter {
  opacity: 0;
  transform: translateY(40px);
  animation: heroEnter 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-enter:nth-child(1) { animation-delay: 0.1s; }
.hero-enter:nth-child(2) { animation-delay: 0.25s; }
.hero-enter:nth-child(3) { animation-delay: 0.4s; }
.hero-enter:nth-child(4) { animation-delay: 0.55s; }
.hero-enter:nth-child(5) { animation-delay: 0.7s; }

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

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

/* ============================================
   BLOG SINGLE PAGE
   ============================================ */
.blog-single-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-single-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
  color: var(--gray);
}

.blog-single-meta i {
  color: var(--gold);
  margin-right: var(--space-xs);
}

.blog-single-featured {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2xl);
}

.blog-single-body {
  font-size: 1.05rem;
  line-height: 1.9;
}

.blog-single-body h2,
.blog-single-body h3 {
  margin: var(--space-2xl) 0 var(--space-md);
}

.blog-single-body p {
  margin-bottom: var(--space-lg);
}

.blog-single-body ul,
.blog-single-body ol {
  margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}

.blog-single-body ul li,
.blog-single-body ol li {
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.blog-single-body ol li {
  list-style: decimal;
}

/* ============================================
   VISION / MISSION
   ============================================ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.vm-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.vm-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}

.vm-card h3 {
  margin-bottom: var(--space-md);
}

.vm-card p {
  margin: 0;
  line-height: 1.8;
}

/* ============================================
   INDUSTRIES WE SERVE
   ============================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.industry-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--duration) var(--ease);
}

.industry-item:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.03);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.industry-item i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.industry-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(var(--gold-rgb), 0.08);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.05);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(46, 204, 113, 0.1);
  color: var(--success);
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.alert-error {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Hero */
  .hero-content {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Vision / Mission */
  .vm-grid {
    grid-template-columns: 1fr;
  }

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

  /* Floating buttons */
  .whatsapp-btn {
    right: 20px;
    bottom: 90px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .scroll-top {
    right: 20px;
    bottom: 24px;
    width: 42px;
    height: 42px;
  }

  /* Page banner */
  .page-banner {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

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