/* ==========================================================================
   WEALTH WELL MINE SHAFT - Modern Luxury Industrial & Mineral Aesthetic
   Design System & Components
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark-deep: #0a0e10;
  --bg-dark: #0f1518;
  --bg-card: #151d21;
  --bg-card-hover: #1b252a;
  --bg-surface: #1e292e;

  --gold-primary: #d4af37;
  --gold-light: #e6ca65;
  --gold-dark: #9e7f1c;
  --gold-accent: #c5a059;
  --gold-glow: rgba(212, 175, 55, 0.18);
  --gold-border: rgba(212, 175, 55, 0.25);

  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.12);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  margin-top: 0;
  letter-spacing: 0.02em;
}

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

a:hover, a:focus {
  color: var(--gold-light);
  text-decoration: none;
}

.container-custom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Title System */
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.sec-title-modern {
  margin-bottom: 48px;
}

.sec-title-modern.centered {
  text-align: center;
}

.sec-title-modern h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sec-title-modern h2 span {
  color: var(--gold-primary);
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-title-modern .sub-heading {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

.gold-separator {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
  margin: 16px 0 0 0;
}

.sec-title-modern.centered .gold-separator {
  margin: 16px auto 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-accent) 100%);
  color: #0d1113;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  transition: all var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  background: rgba(15, 21, 24, 0.6);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold-glow);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Header & Glass Navigation */
.header-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
  background: rgba(10, 14, 16, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-glass.scrolled {
  padding: 12px 0;
  background: rgba(10, 14, 16, 0.92);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-brand img {
  height: 48px;
  width: auto;
  transition: transform var(--transition-fast);
}

.logo-brand:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark-deep);
  border-left: 1px solid var(--gold-border);
  z-index: 1001;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right var(--transition-smooth);
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
}

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

.mobile-drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-drawer .nav-links-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-drawer .nav-links-mobile a {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 600;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px 0;
  overflow: hidden;
  background: var(--bg-dark-deep);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.8) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, rgba(10, 14, 16, 0.7) 0%, rgba(10, 14, 16, 0.95) 100%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-modern h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-modern h1 span {
  display: block;
  color: var(--gold-primary);
  background: linear-gradient(135deg, #ffffff 20%, var(--gold-primary) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Floating Metric Banner */
.hero-metrics-bar {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 24px 32px;
  background: rgba(21, 29, 33, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-item {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 20px;
}

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

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Section Containers */
.section-padding {
  padding: 100px 0;
  position: relative;
}

.bg-darker {
  background-color: var(--bg-dark-deep);
}

.bg-surface-tint {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

/* Page Banner (For Inner Pages) */
.page-banner-modern {
  position: relative;
  padding: 160px 0 80px 0;
  background: linear-gradient(180deg, var(--bg-dark-deep) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--gold-border);
}

.page-banner-modern h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.page-banner-modern .breadcrumb {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-banner-modern .breadcrumb a {
  color: var(--gold-primary);
}

/* Asymmetrical Editorial About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content-left p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.highlight-box {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-sm);
}

.highlight-box h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}

.highlight-box p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-muted);
}

.about-img-frame {
  position: relative;
}

.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--gold-border);
  filter: brightness(0.95);
  transition: transform var(--transition-smooth);
}

.about-img-frame:hover img {
  transform: scale(1.02);
}

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
}

/* Services Glass Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-modern {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card-modern:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-wrapper img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.service-card-modern h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card-modern p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: transform var(--transition-fast);
}

.service-card-modern:hover .service-link i {
  transform: translateX(4px);
}

/* Why Choose Us Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(21, 29, 33, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.feature-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.feature-body {
  padding: 28px;
}

.feature-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Mission & Vision Editorial Cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 44px;
  position: relative;
}

.mv-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold-glow);
  line-height: 1;
}

.mv-card h3 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0;
}

/* Counter & Fact Section */
.counter-banner {
  background: linear-gradient(135deg, rgba(15,21,24,0.95), rgba(10,14,16,0.98)),
              url('../images/background/2.jpg') center/cover no-repeat;
  padding: 80px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-card {
  padding: 24px;
  background: rgba(21, 29, 33, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Gallery Grid System */
.gallery-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card-modern {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-card-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

/* FAQ Accordion */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.faq-item.active .faq-header h4 {
  color: var(--gold-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: #000;
}

.faq-body {
  padding: 0 28px 24px 28px;
  display: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-body {
  display: block;
}

/* Team Grid */
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-card-modern {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.team-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.team-img-wrap {
  height: 260px;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.team-info {
  padding: 20px 16px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 4px;
}

.team-info .designation {
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Contact Form Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-panel {
  background: var(--bg-card);
  padding: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
}

.contact-info-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item-text h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-text p {
  color: var(--text-main);
  font-size: 1rem;
  margin: 0;
}

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

.form-control-modern {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 14, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Footer Section */
.footer-modern {
  background: var(--bg-dark-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 0 0;
}

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

.footer-col-about img {
  height: 54px;
  margin-bottom: 20px;
}

.footer-col-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-modern h1 { font-size: 3rem; }
  .about-grid, .mv-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-modern { grid-template-columns: repeat(3, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics-bar { grid-template-columns: repeat(2, 1fr); }
  .metric-item { border-right: none; }
  .gallery-grid-modern { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero-modern h1 { font-size: 2.2rem; }
  .sec-title-modern h2 { font-size: 1.8rem; }
  .services-grid, .features-grid, .team-grid-modern, .gallery-grid-modern { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .counter-grid { grid-template-columns: 1fr; }
  .hero-metrics-bar { grid-template-columns: 1fr; }
}
