/* ============================================================
   Black Diamond Elite Marketing — main.css
   Google Fonts: Playfair Display + Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN SYSTEM)
   ============================================================ */
:root {
  --primary:       #0a0a0a;
  --primary-light: #1a1a1a;
  --accent:        #D4AF37;
  --accent-dark:   #B8972E;
  --gray:          #858585;
  --gray-light:    #b0b0b0;
  --light:         #faf8f5;
  --white:         #ffffff;
  --dark-overlay:  rgba(10, 10, 10, 0.85);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: var(--primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   2. PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-diamond {
  width: 60px;
  height: 60px;
  background: var(--accent);
  transform: rotate(45deg);
  margin: 0 auto 20px;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}

.loader-text {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes loaderPulse {
  from { transform: rotate(45deg) scale(0.8); opacity: 0.7; }
  to   { transform: rotate(45deg) scale(1.2); opacity: 1; }
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

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

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

.section-dark p {
  color: var(--gray-light);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(245, 208, 0, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(245, 208, 0, 0.3);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.section-title .line {
  display: block;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 20px;
}

.section-divider.left {
  margin-left: 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  border-radius: 50%;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 208, 0, 0.3);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

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

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

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

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

.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.header.scrolled {
  background: var(--primary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-diamond {
  color: var(--accent);
  font-size: 1.5rem;
  animation: diamondSpin 8s linear infinite;
  display: inline-block;
}

@keyframes diamondSpin {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(10deg); }
  75%       { transform: rotate(-10deg); }
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  border-radius: 3px;
  padding: 10px 22px;
  font-weight: 700;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(245, 208, 0, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  opacity: 0.35;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.97) 0%,
    rgba(26, 26, 46, 0.7) 50%,
    rgba(26, 26, 46, 0.9) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: rotate(45deg) translateY(100vh); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { transform: rotate(45deg) translateY(-100px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 208, 0, 0.1);
  border: 1px solid rgba(245, 208, 0, 0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
  content: '◆';
  font-size: 0.6rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .line-2 {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.9s ease 0.4s forwards;
  opacity: 0;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(245, 208, 0, 0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { height: 50px; opacity: 1; }
  50%       { height: 20px; opacity: 0.5; }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(245, 208, 0, 0.2);
  z-index: 2;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================================
   8. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
  margin-top: 0;
  padding-top: 100px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 50%, rgba(37, 37, 69, 0.8));
}

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

.page-hero-badge {
  display: inline-block;
  background: rgba(245, 208, 0, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(245, 208, 0, 0.3);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-title .highlight {
  color: var(--accent);
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 20px;
}

.breadcrumb a    { color: var(--accent); }
.breadcrumb span { color: rgba(255, 255, 255, 0.3); }

.page-hero-decoration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  z-index: 1;
}

.page-hero-decoration-diamond {
  width: 300px;
  height: 300px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-img-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--accent);
  color: var(--primary);
  padding: 20px;
  text-align: center;
  min-width: 110px;
}

.about-img-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-content .section-title  { text-align: left; }
.about-content .section-divider { margin-left: 0; }

.about-text {
  color: var(--gray);
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-value-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(245, 208, 0, 0.1);
  border: 1px solid rgba(245, 208, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  border-radius: 2px;
}

.about-value-text h5 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.about-value-text p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--accent);
  padding: 36px 28px;
  border-radius: 2px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.15);
}

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

.service-card:hover .service-title,
.service-card:hover .service-text {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon-wrap {
  background: rgba(245, 208, 0, 0.15);
  border-color: rgba(245, 208, 0, 0.3);
  position: relative;
  z-index: 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(245, 208, 0, 0.1);
  border: 1px solid rgba(245, 208, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: rgba(0, 0, 0, 0.04);
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
}

.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.05);
}

.service-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-text {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   11. FEATURES / WHY US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 208, 0, 0.1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(245, 208, 0, 0.05);
  border-color: rgba(245, 208, 0, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 208, 0, 0.1);
  border: 1px solid rgba(245, 208, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--primary);
}

.feature-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   12. STATS COUNTER
   ============================================================ */
.stats-section {
  background: var(--accent);
  padding: 60px 0;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(26, 26, 46, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26, 26, 46, 0.7);
  margin-top: 8px;
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 208, 0, 0.1);
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(245, 208, 0, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.testimonial-quote-icon {
  color: var(--accent);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
  font-family: 'Playfair Display', serif;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 0.85rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-position {
  font-size: 0.8rem;
  color: var(--gray);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 208, 0, 0.4);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 208, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   14. BLOG GRID
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

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

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

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.blog-meta i {
  color: var(--accent);
}

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
  transition: color 0.3s;
  line-height: 1.4;
}

.blog-card:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap 0.3s, color 0.3s;
}

.blog-read-more:hover {
  color: var(--accent);
  gap: 12px;
}

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

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
  background: var(--accent);
  color: var(--primary);
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

/* ============================================================
   16. CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: 2px;
  height: 100%;
}

.contact-info-title {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(245, 208, 0, 0.1);
  border: 1px solid rgba(245, 208, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-info-text h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h5 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
}

.hours-item span:last-child {
  color: var(--accent);
}

.contact-social {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h5 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 208, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.form-title    { margin-bottom: 8px; }
.form-subtitle { color: var(--gray); margin-bottom: 32px; font-size: 0.95rem; }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 208, 0, 0.1);
}

.form-control::placeholder {
  color: var(--gray-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23858585' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-required { color: var(--accent); }

.honeypot-field { display: none !important; }

.file-upload-wrapper {
  position: relative;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-display {
  width: 100%;
  padding: 13px 16px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-display:hover,
.file-upload-wrapper.has-file .file-upload-display {
  border-color: var(--accent);
  color: var(--primary);
}

.file-upload-display i { color: var(--accent); }

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit { margin-top: 28px; }

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
  padding: 16px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.form-error-msg {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
  padding: 16px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.field-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 5px;
  display: none;
}

.form-control.error {
  border-color: #dc2626;
}

.map-wrapper {
  height: 400px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   17. APPLICATION PAGE
   ============================================================ */
.application-section {
  padding: 80px 0;
  background: var(--light);
}

.application-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-header {
  background: var(--primary);
  padding: 40px;
}

.form-header h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.form-header p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.form-body {
  padding: 40px;
}

.form-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 208, 0, 0.2);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.gallery-overlay i {
  color: var(--accent);
  font-size: 2rem;
}

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

.lightbox-modal.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(245, 208, 0, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 208, 0, 0.15);
  border: 1px solid rgba(245, 208, 0, 0.3);
  color: var(--accent);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ============================================================
   19. CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '◆';
  position: absolute;
  font-size: 300px;
  color: rgba(245, 208, 0, 0.03);
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  font-family: serif;
}

.cta-banner::after {
  content: '◆';
  position: absolute;
  font-size: 300px;
  color: rgba(245, 208, 0, 0.03);
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  font-family: serif;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title    { color: var(--white); margin-bottom: 16px; }
.cta-subtitle { color: rgba(255, 255, 255, 0.65); max-width: 550px; margin: 0 auto 36px; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   20. TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-info {
  padding: 20px 24px;
  background: var(--white);
}

.team-name {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: #000000;
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer-links-list a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a::before {
  content: '◆';
  font-size: 0.4rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.footer-links-list a:hover::before {
  opacity: 1;
}

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

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 3px;
  min-width: 14px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 0.3s;
}

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

.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-legal-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   22. SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-down"]  { transform: translateY(-40px); }
[data-animate="fade-left"]  { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="scale-up"]   { transform: scale(0.85); }
[data-animate="fade-in"]    { transform: none; }

[data-animate].animated {
  opacity: 1;
  transform: none !important;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* ============================================================
   23. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 900;
  box-shadow: 0 5px 20px rgba(245, 208, 0, 0.3);
}

.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 208, 0, 0.4);
}

/* ============================================================
   24. LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-last-updated {
  display: inline-block;
  background: rgba(245, 208, 0, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 208, 0, 0.2);
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 28px 0 12px;
}

.legal-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content strong {
  color: var(--primary);
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

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

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 208, 0, 0.1) 50%,
    transparent 100%
  );
  background-size: 200%;
  animation: shimmer 2s infinite;
}

/* ============================================================
   26. MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid       { gap: 40px; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Mobile nav */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 80px 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-menu.active { right: 0; }

  .nav-link {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-link::after {
    bottom: 8px;
    left: 0;
    right: 0;
  }

  .nav-cta {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  /* Show overlay */
  .nav-overlay { display: block; }

  .hero-stats    { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-img-accent  { display: none; }
  .about-img-badge   { top: 20px; left: 10px; }
  .services-grid     { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .blog-grid         { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-grid        { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner  { display: none; }
  .cta-buttons       { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .features-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .hero-cta      { flex-direction: column; align-items: center; }

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

  .btn-lg { padding: 16px 24px; }

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

/* ============================================================
   TEXT VISIBILITY — CONTEXTUAL OVERRIDES
   Ensures all text is readable on every background type.
   ============================================================ */

/* --- h5 / h6 on dark backgrounds (not covered by base rules) --- */
.section-dark h5,
.section-dark h6,
.cta-banner h5,
.cta-banner h6,
.page-hero h5,
.page-hero h6 {
  color: var(--white);
}

/* --- FAQ on DARK background --- */
.section-dark .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section-dark .faq-question {
  color: var(--white);
}
.section-dark .faq-question:hover,
.section-dark .faq-question.active {
  color: var(--accent);
}
.section-dark .faq-answer-inner {
  color: rgba(255, 255, 255, 0.7);
}

/* --- FAQ on LIGHT background (explicit overrides for safety) --- */
.section-light .faq-item,
.section-white .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.section-light .faq-question,
.section-white .faq-question {
  color: var(--primary);
}
.section-light .faq-answer-inner,
.section-white .faq-answer-inner {
  color: var(--gray);
}

/* --- About section text on dark --- */
.section-dark .about-text {
  color: rgba(255, 255, 255, 0.72);
}
.section-dark .about-value-text h5 {
  color: var(--white);
}
.section-dark .about-value-text p {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Blog cards always on light/white --- */
.blog-title       { color: var(--primary); }
.blog-excerpt     { color: var(--gray); }
.blog-meta        { color: var(--gray); }

/* --- Service card text (light bg default) --- */
.service-title    { color: var(--primary); }
.service-text     { color: var(--gray); }

/* --- Team card --- */
.team-name        { color: var(--primary); }

/* --- Stats section (GOLD background) --- */
.stats-section .stat-number { color: var(--primary); }
.stats-section .stat-label  { color: rgba(26, 26, 46, 0.72); }
.stats-section .stat-item   { border-right-color: rgba(26, 26, 46, 0.15); }

/* --- CTA Banner (dark bg) --- */
.cta-banner .cta-title    { color: var(--white); }
.cta-banner .cta-subtitle { color: rgba(255, 255, 255, 0.65); }

/* --- Section badge on dark = gold (default already works) --- */
.section-dark .section-badge,
.cta-banner .section-badge,
.page-hero .page-hero-badge {
  background: rgba(245, 208, 0, 0.15);
  color: var(--accent);
  border-color: rgba(245, 208, 0, 0.3);
}
/* --- Section badge on LIGHT sections = dark tint --- */
.section-light .section-badge,
.section-white .section-badge {
  background: rgba(26, 26, 46, 0.07);
  color: var(--primary);
  border-color: rgba(26, 26, 46, 0.2);
}

/* --- Feature cards on dark (features-grid inside section-dark) --- */
.section-dark .feature-title { color: var(--white); }
.section-dark .feature-text  { color: rgba(255, 255, 255, 0.65); }

/* --- Testimonial text on dark --- */
.testimonial-card .testimonial-text { color: rgba(255, 255, 255, 0.8); }
.testimonial-card .testimonial-name { color: var(--white); }
.testimonial-card .testimonial-position { color: var(--gray-light); }

/* --- Contact info card (dark bg) --- */
.contact-info-card .contact-info-title { color: var(--white); }
.contact-info-card .contact-info-subtitle { color: rgba(255, 255, 255, 0.6); }
.contact-info-card .contact-info-text h5 { color: var(--white); }
.contact-info-card .contact-info-text p,
.contact-info-card .contact-info-text a  { color: rgba(255, 255, 255, 0.65); }
.contact-info-card .contact-info-text a:hover { color: var(--accent); }
.contact-info-card .hours-item { color: rgba(255, 255, 255, 0.6); }
.contact-info-card h5         { color: var(--white); }

/* --- Form labels and inputs (always on light bg) --- */
.form-label   { color: var(--primary); }
.form-control { color: var(--primary); background: var(--white); }
.form-section-title { color: var(--accent); }

/* --- Application form header (dark bg) --- */
.form-header h2 { color: var(--white); }
.form-header p  { color: rgba(255, 255, 255, 0.65); }

/* --- Legal pages --- */
.legal-content h2 { color: var(--primary); }
.legal-content h3 { color: var(--primary); }
.legal-content p  { color: var(--gray); }
.legal-content li { color: var(--gray); }

/* --- Page hero text (always dark bg) --- */
.page-hero-title { color: var(--white); }
.page-hero-desc  { color: rgba(255, 255, 255, 0.75); }
.page-hero-badge { color: var(--accent); }
.breadcrumb      { color: rgba(255, 255, 255, 0.5); }
.breadcrumb a    { color: var(--accent); }

/* --- Hero section --- */
.hero-title    { color: var(--white); }
.hero-subtitle { color: rgba(255, 255, 255, 0.75); }

/* --- Footer (very dark bg) --- */
.footer-copyright { color: rgba(255, 255, 255, 0.35); }
.footer-desc      { color: rgba(255, 255, 255, 0.5); }
.footer-col h4    { color: var(--white); }

/* --- Section subtitle on dark (not covered by .section-dark p) --- */
.section-dark .section-subtitle { color: rgba(255, 255, 255, 0.6); }

/* --- Section title on light stays dark --- */
.section-light .section-title,
.section-white .section-title { color: var(--primary); }

/* --- Service link on dark bg after hover --- */
.service-card:hover .service-link { color: var(--accent); }

/* --- Blog card hover state --- */
.blog-card:hover .blog-title { color: var(--accent); }
