/* ========================================
   BHUPINDER SHAH & CO. — Global Stylesheet
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0a1628;
  --navy-light: #121f36;
  --navy-mid: #1a2d4a;
  --gold: #c8a951;
  --gold-light: #e0c878;
  --gold-dark: #a8882e;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-600: #6b7280;
  --gray-800: #2d2d2d;
  --text: #1a1a2e;
  --text-light: #555;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(200,169,81,0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 3px;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 120px; height: 2px;
  background: rgba(200,169,81,0.2);
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: preload 1.2s ease-in-out infinite;
}
@keyframes preload {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; color: var(--text-light); }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Gold Shimmer Text */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shimmer {
  background: linear-gradient(110deg, var(--gold-dark) 0%, var(--gold-light) 45%, var(--white) 50%, var(--gold-light) 55%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}
.section-dark { background: var(--navy); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-cream { background: var(--off-white); }

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 { margin-bottom: 20px; }
.section-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 3px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 52px;
  height: auto;
  background: white;
  padding: 5px 7px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(200,169,81,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.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 Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,81,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,81,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(26,45,74,0.5) 0%, transparent 50%),
    var(--navy);
  animation: heroShift 12s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-1%, 1%); }
  100% { transform: scale(1) translate(1%, -1%); }
}

/* Floating geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border: 1px solid rgba(200,169,81,0.1);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}
.hero-shape:nth-child(1) { width: 300px; height: 300px; top: 10%; left: -5%; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 200px; height: 200px; top: 60%; right: -3%; animation-delay: -5s; }
.hero-shape:nth-child(3) { width: 150px; height: 150px; bottom: 20%; left: 20%; animation-delay: -10s; border-radius: 30%; }
.hero-shape:nth-child(4) { width: 400px; height: 400px; top: -10%; right: 20%; animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  33% { transform: translateY(-30px) rotate(5deg); opacity: 0.6; }
  66% { transform: translateY(20px) rotate(-3deg); opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.8s forwards;
}
.hero-tagline .gold-text {
  font-style: normal;
  font-weight: 600;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.1s forwards;
}
.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.4s forwards;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 2s forwards;
}
.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(200,169,81,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator .wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -150px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(200,169,81,0.5);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(200,169,81,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item {
  padding: 30px 20px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,169,81,0.1), rgba(200,169,81,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 14px; color: var(--navy); }
.card p { font-size: 0.95rem; margin-bottom: 0; }

/* Dark cards */
.section-dark .card {
  background: var(--navy-light);
  border-color: rgba(200,169,81,0.1);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: rgba(255,255,255,0.6); }
.section-dark .card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(200,169,81,0.2); }

/* ---------- Team Cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-photo-wrap {
  position: relative;
  padding-top: 30px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding-bottom: 60px;
}
.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.team-card:hover .team-photo { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.team-initials {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.team-card:hover .team-initials { transform: scale(1.05); }
.team-initials span {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
}
.team-info {
  padding: 30px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.team-name {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-designation {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.team-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(200,169,81,0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(200,169,81,0.2);
}
.team-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.team-roles { margin-top: 12px; }
.team-role-item {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-100);
}
.team-role-item:last-child { border-bottom: none; }

/* ---------- Empanelment Badges ---------- */
.empanel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.empanel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.empanel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,169,81,0.3);
}
.empanel-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.empanel-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 2px; }
.empanel-card p { font-size: 0.85rem; margin-bottom: 0; }

/* ---------- Sectors Grid ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.sector-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,81,0.1);
  transition: var(--transition);
}
.sector-item:hover {
  background: rgba(200,169,81,0.1);
  border-color: rgba(200,169,81,0.3);
  transform: translateY(-4px);
}
.sector-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.sector-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* ---------- Office Cards ---------- */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.office-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.office-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}
.office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.office-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.office-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 1.3rem; }
.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.office-detail svg { min-width: 18px; margin-top: 3px; color: var(--gold); }

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,81,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; }
.footer h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item svg { min-width: 16px; margin-top: 3px; color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* ---------- SVG Wave Divider ---------- */
.wave-divider {
  position: relative;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,81,0.1) 0%, transparent 60%);
}
.page-header h1 { color: var(--white); margin-bottom: 16px; position: relative; }
.page-header p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; position: relative; }
.page-header .section-line { position: relative; }

/* ---------- Services Detail Page ---------- */
.service-detail {
  padding: 40px 0;
}
.service-block {
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block h3 {
  color: var(--navy);
  margin-bottom: 8px;
}
.service-block > p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  list-style: none;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-light);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,169,81,0.08) 0%, transparent 60%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.6); max-width: 550px; margin: 0 auto 30px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .empanel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .preloader, .scroll-indicator, .hamburger, .mobile-menu { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  body { color: #000; }
  .section { padding: 30px 0; }
}
