/* ============================================
   SpidoGuards – The Protectors
   Premium Light Glassmorphism Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-grey: #f0f2f8;
  --soft-blue: #e8ecf4;
  --navy: #0a1f44;
  --navy-dark: #071530;
  --navy-medium: #132b55;
  --gold: #d6b25e;
  --gold-light: #e8cf8a;
  --gold-dark: #b8952e;
  --text-dark: #1a1a2e;
  --text-body: #3d4560;
  --text-muted: #6b7490;
  --text-light: #9aa2b8;
  --border-color: rgba(10, 31, 68, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px rgba(10, 31, 68, 0.08);
  --shadow-sm: 0 2px 12px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 31, 68, 0.1);
  --shadow-lg: 0 16px 50px rgba(10, 31, 68, 0.12);
  --shadow-gold: 0 8px 25px rgba(214, 178, 94, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p {
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* ---------- Glass Card Utility ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

/* ---------- Section Styles ---------- */
.section {
  padding: 90px 0;
  position: relative;
}

.section-light {
  background: var(--light-grey);
}

.section-dark {
  background: var(--navy);
}

/* Background image section utility */
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  z-index: 1;
}

.section-bg > .container {
  position: relative;
  z-index: 2;
}

.section-bg-dark {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-bg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.82);
  z-index: 1;
}

.section-bg-dark > .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-header h2 {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-header .subtitle {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 8px;
  display: block;
}

.section-header p {
  max-width: 580px;
  margin: 22px auto 0;
  color: var(--text-muted);
}

/* Section header variants for dark backgrounds */
.section-bg-dark .section-header h2,
.section-dark .section-header h2 {
  color: var(--white);
}

.section-bg-dark .section-header p,
.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Wave Divider ---------- */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.wave-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  transform: rotate(180deg);
}

.wave-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(214, 178, 94, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(10, 31, 68, 0.05);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 30px rgba(10, 31, 68, 0.08);
  border-bottom-color: rgba(10, 31, 68, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.navbar-brand .brand-tagline {
  font-size: 0.62rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 55%;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-callback-btn {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.5);
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(248, 249, 252, 0.75) 50%,
    rgba(240, 242, 248, 0.65) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(10, 31, 68, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(10, 31, 68, 0.1);
  border-radius: 50px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero-badge i {
  color: var(--gold);
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--gold);
  position: relative;
}

.hero p {
  color: var(--text-body);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  gap: 45px;
  margin-top: 65px;
  padding-top: 35px;
  border-top: 1px solid rgba(10, 31, 68, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ---------- Hero Contact Form Card ---------- */
.hero-contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-contact-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.hero-form-subtitle {
  color: var(--text-light) !important;
  font-size: 0.88rem !important;
  margin-bottom: 22px !important;
  max-width: none !important;
}

.hero-contact-card .form-group label {
  font-size: 0.82rem;
}

.hero-contact-card .form-group input,
.hero-contact-card .form-group textarea {
  font-size: 0.9rem;
  padding: 11px 14px;
}

.hero-contact-card .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.hero-contact-card .hidden {
  display: none !important;
}

.hero-contact-card .btn-block {
  font-size: 0.95rem;
  padding: 13px 20px;
}

.hero-contact-card .form-success p {
  max-width: none;
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}

.about-image-badge span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-content h2 { margin-bottom: 20px; }

.about-content .subtitle {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 8px;
  display: block;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.about-feature i {
  color: var(--gold);
  font-size: 0.95rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214, 178, 94, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.05), rgba(10, 31, 68, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--navy);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-gold);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h4 {
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 40px 35px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(214, 178, 94, 0.15);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -1px;
  right: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 6px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.2);
}

.pricing-icon i {
  font-size: 1.7rem;
  color: var(--gold);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.pricing-amount {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.pricing-amount small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  margin: 28px 0;
  text-align: left;
}

.pricing-features li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
  color: var(--gold);
  font-size: 0.8rem;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}

.gallery-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.gallery-slide .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 30px;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.85), transparent);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  transition: var(--transition);
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.gallery-nav:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.gallery-nav.prev { left: 18px; }
.gallery-nav.next { right: 18px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft-blue);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.75), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay .overlay-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-overlay .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(214, 178, 94, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  transition: var(--transition);
}

.lightbox-nav:hover { color: var(--gold); }
.lightbox-nav.lb-prev { left: 10px; }
.lightbox-nav.lb-next { right: 10px; }

/* ---------- Clients ---------- */
.clients-track-wrapper {
  overflow: hidden;
  position: relative;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--light-grey), transparent);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--light-grey), transparent);
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: scrollClients 20s linear infinite;
  width: max-content;
}

.clients-track:hover { animation-play-state: paused; }

.client-logo {
  height: 55px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: var(--transition);
  flex-shrink: 0;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 16px;
}

.testimonial-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 45px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.testimonial-inner .quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.7;
}

.testimonial-inner p {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft-blue);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
}

/* ---------- Recruitment & Training ---------- */
.rt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.rt-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.rt-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.rt-card h3 i { color: var(--gold); }

.rt-card ul li {
  padding: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.rt-card ul li i {
  color: var(--gold);
  margin-top: 5px;
  font-size: 0.75rem;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: 620px;
  margin: 0 auto;
}

.team-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 38px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 2rem;
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.2);
}

.team-card h4 { margin-bottom: 5px; }

.team-card .team-role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.88), rgba(7, 21, 48, 0.92));
  z-index: 1;
}

.cta-section > .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(214, 178, 94, 0.25);
  transform: translateY(-4px);
}

.why-card .why-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(214, 178, 94, 0.12), rgba(214, 178, 94, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  font-size: 1.3rem;
}

.why-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.why-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ---------- Counters ---------- */
.counters-section {
  position: relative;
  padding: 65px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.9), rgba(7, 21, 48, 0.92));
  z-index: 1;
}

.counters-section > .container {
  position: relative;
  z-index: 2;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item .counter-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.counter-item .counter-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-form h3 { margin-bottom: 28px; }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(10, 31, 68, 0.1);
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(214, 178, 94, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Shared Form States (error, success, loader) ---------- */
.required {
  color: #e74c3c;
}

.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 0;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-submit-error {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #dc2626;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.form-submit-error.show {
  display: flex;
}

.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

.btn.loading .btn-text { opacity: 0.7; }
.btn.loading .btn-loader { display: inline-block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.show {
  display: block;
}

.form-success .success-checkmark {
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(214, 178, 94, 0.25);
}

.contact-info-card .info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.15);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* ---------- Page Hero Banner ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 80px;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(248, 249, 252, 0.8) 50%,
    rgba(240, 242, 248, 0.75) 100%
  );
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--navy);
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: var(--gold);
  font-weight: 600;
}

.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  padding: 65px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img { height: 42px; }

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-col ul li a i {
  font-size: 0.65rem;
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- Callback Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 68, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 42px;
  width: 90%;
  max-width: 450px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-box { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  transition: var(--transition);
}

.modal-close:hover { color: var(--navy); }

.modal-box h3 { margin-bottom: 8px; }

.modal-box .modal-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for cards */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.56s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 65px 0; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 28px 28px;
    gap: 5px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    align-items: flex-start;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    width: 100%;
    padding: 13px 16px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  }

  .nav-callback-btn {
    margin-left: 0;
    margin-top: 16px;
  }

  .hero h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-stats {
    gap: 25px;
    flex-wrap: wrap;
  }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img { height: 300px; }
  .about-features { grid-template-columns: 1fr; }

  .rt-grid { grid-template-columns: 1fr; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .gallery-slide img { height: 300px; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 55px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .hero-stats { justify-content: center; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-buttons { flex-direction: column; }
  .form-buttons .btn { width: 100%; justify-content: center; }

  .counters-grid { grid-template-columns: 1fr 1fr; }

  .testimonial-inner { padding: 28px; }

  .page-hero { padding: 130px 0 60px; }

  .contact-wrapper { grid-template-columns: 1fr; }

  .offices-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ADDITIONAL COMPONENT STYLES
   ============================================ */

/* Utility class */
.text-muted { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Contact Info Grid ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-info-grid .contact-info-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.15);
}

.contact-info-grid .contact-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-info-grid .contact-info-card p {
  margin-bottom: 4px;
}

.contact-info-grid .contact-info-card a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-info-grid .contact-info-card a:hover {
  color: var(--gold);
}

/* ---------- Offices Grid ---------- */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.office-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(214, 178, 94, 0.25);
  transform: translateY(-4px);
}

.office-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.15);
}

.office-card h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.office-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- Contact Wrapper (Form + Map) ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-col {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.contact-map-col { }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* ---------- Gallery Grid (gallery.html) ---------- */
.gallery-grid-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.08);
}

.gallery-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
}

.gallery-grid-item:hover .gallery-grid-overlay {
  opacity: 1;
}

.gallery-grid-overlay i {
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.gallery-grid-overlay span {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* ---------- Responsive additions ---------- */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
