* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #cfa36d;
  --gold-dark: #a9793f;
  --ink: #05070a;
  --bg-primary: #05070a;
  --bg-secondary: #0d1119;
  --bg-panel: rgba(17, 23, 34, 0.82);
  --bg-panel-strong: rgba(22, 30, 44, 0.94);
  --text-primary: #f3f7ff;
  --text-secondary: #b8c5d9;
  --text-muted: #8190a7;
  --border-color: rgba(207, 163, 109, 0.24);
  --soft-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  --transition: 0.28s ease;
}

[data-theme="light"] {
  --bg-primary: #f6f7fb;
  --bg-secondary: #ffffff;
  --bg-panel: rgba(255, 255, 255, 0.9);
  --bg-panel-strong: #ffffff;
  --text-primary: #101827;
  --text-secondary: #4a5568;
  --text-muted: #64748b;
  --border-color: rgba(169, 121, 63, 0.28);
  --soft-border: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(207, 163, 109, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(62, 92, 148, 0.14), transparent 30rem),
    var(--bg-primary);
  color: var(--text-primary);
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 32px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(18px);
}

[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.86);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo-img {
  width: 180px;
  height: 60px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

nav a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

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

.menu-toggle,
.theme-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: var(--bg-panel);
  color: var(--gold);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.menu-toggle {
  display: none;
  font-size: 1.25rem;
}

.menu-toggle:hover,
.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(207, 163, 109, 0.12);
}

.call-us-btn,
.gold-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.call-us-btn,
.gold-btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), #f0d3a0);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(207, 163, 109, 0.22);
}

.outline-btn {
  border: 1px solid var(--gold);
  background: rgba(207, 163, 109, 0.08);
  color: var(--gold);
}

.call-us-btn:hover,
.gold-btn:hover,
.outline-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(207, 163, 109, 0.28);
}

.outline-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.header-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-socials a,
.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--soft-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  text-decoration: none;
  transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
}

.header-socials a:hover,
.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(207, 163, 109, 0.1);
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100svh - 88px), 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider,
.slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0.62) 52%, rgba(5, 7, 10, 0.35)),
    radial-gradient(circle at 72% 20%, rgba(207, 163, 109, 0.16), transparent 28rem);
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  padding: clamp(48px, 8vh, 78px) 0;
}

.hero-left {
  max-width: 820px;
  width: 100%;
}

.hero-stats > .stat {
  padding: 16px 18px;
  background: rgba(7, 11, 18, 0.82);
  text-align: center;
}

[data-theme="light"] .hero-stats > .stat {
  background: rgba(255, 255, 255, 0.82);
}

.hero-stats > .stat h3 {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-stats > .stat span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hero-badge,
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(207, 163, 109, 0.34);
  border-radius: 999px;
  background: rgba(207, 163, 109, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-left h1,
.about-hero h1,
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 5.2vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-left h2 {
  max-width: 720px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: clamp(1.06rem, 1.8vw, 1.42rem);
  font-weight: 500;
}

.hero-line,
.testimonial-divider,
.team-divider {
  width: 64px;
  height: 3px;
  margin: 20px 0;
  border-radius: 3px;
  background: var(--gold);
}

.hero-buttons,
.hero-actions,
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: rgba(207, 163, 109, 0.16);
}

.stat {
  padding: 16px 18px;
  background: rgba(7, 11, 18, 0.82);
  text-align: center;
}

[data-theme="light"] .stat {
  background: rgba(255, 255, 255, 0.82);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1.1;
}

.stat span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.services-section,
.testimonials-section,
.team-section,
.about-section,
.who-we-are,
.mission-section,
.vision-section,
.values-section,
.served-section,
.about-cta,
.contact-section {
  padding: 88px 0;
}

.services-section:nth-of-type(even),
.mission-section,
.values-section,
.clients-banner {
  background: rgba(255, 255, 255, 0.025);
}

.section-title {
  margin-bottom: 38px;
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  text-align: center;
  letter-spacing: -0.035em;
}

.services-grid,
.testimonial-grid,
.team-grid,
.served-grid,
.mission-vision-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.served-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.mission-vision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.testimonial-box,
.team-card,
.mv-card,
.value-item,
.served-card,
.contact-panel,
.whatsapp-panel {
  border: 1px solid var(--border-color);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.service-card,
.testimonial-box,
.mv-card,
.value-item,
.contact-panel,
.whatsapp-panel {
  border-radius: 24px;
  padding: 30px;
}

.service-card,
.testimonial-box,
.team-card,
.mv-card,
.value-item,
.served-card {
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.testimonial-box:hover,
.team-card:hover,
.mv-card:hover,
.value-item:hover,
.served-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 163, 109, 0.46);
  background: var(--bg-panel-strong);
}

.service-icon,
.mv-icon,
.value-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(207, 163, 109, 0.14);
  color: var(--gold);
  font-size: 1.45rem;
}

.service-card h3,
.mv-card h3,
.value-item h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p,
.mv-card p,
.value-item p,
.team-description,
.testimonial-box p {
  color: var(--text-secondary);
}

.testimonial-stars {
  margin-bottom: 16px;
  color: var(--gold);
}

.testimonial-box p {
  font-size: 1.02rem;
  font-style: italic;
}

.testimonial-box h4 {
  color: var(--gold);
}

.team-card {
  overflow: hidden;
  border-radius: 24px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.team-content {
  padding: 24px;
  text-align: center;
}

.team-divider {
  margin: 12px auto;
}

.about-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(207, 163, 109, 0.16), transparent 22rem),
    linear-gradient(135deg, #05070a, #0f1726 54%, #070b12);
}

[data-theme="light"] .about-hero,
[data-theme="light"] .page-hero {
  background:
    radial-gradient(circle at 16% 18%, rgba(207, 163, 109, 0.18), transparent 22rem),
    linear-gradient(135deg, #ffffff, #eef2f7);
}

.about-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.about-hero-content {
  padding: 90px 0;
}

.about-hero p,
.page-hero p {
  max-width: 780px;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.12rem;
}

.page-hero {
  padding: 105px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  margin: 0 auto;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.who-we-are-grid,
.about-content,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.who-image,
.about-image {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.who-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.who-copy p,
.mission-copy p,
.about-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 1.04rem;
}

.who-metrics,
.vision-checklist {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-top: 24px;
}

.who-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.who-metrics li,
.vision-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.who-metrics i,
.vision-item i {
  color: var(--gold);
}

.mission-copy {
  max-width: 920px;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.value-item {
  display: flex;
  gap: 18px;
}

.value-icon {
  flex: 0 0 60px;
  margin-bottom: 0;
}

.served-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  border-radius: 18px;
  padding: 18px;
  color: var(--text-secondary);
  font-weight: 800;
}

.served-card i {
  color: var(--gold);
  font-size: 1.25rem;
}

.about-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(207, 163, 109, 0.16), rgba(255, 255, 255, 0.04));
}

.about-cta-banner p {
  color: var(--text-secondary);
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: var(--text-secondary);
}

.contact-item i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(207, 163, 109, 0.14);
  color: var(--gold);
}

.contact-item a {
  color: var(--text-primary);
  text-decoration: none;
}

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

.whatsapp-panel {
  text-align: center;
}

.whatsapp-panel p {
  max-width: 520px;
  margin: 20px auto 24px;
  color: var(--text-secondary);
}

.qr-card {
  width: min(100%, 360px);
  margin: 24px auto 0;
  padding: 18px;
  border: 1px solid rgba(207, 163, 109, 0.32);
  border-radius: 24px;
  background: #ffffff;
}

.qr-card img {
  width: 100%;
  height: auto;
}

.whatsapp-chat-btn {
  display: inline-flex;
}

.clients-banner {
  padding: 18px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

footer {
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.18);
  padding: 34px 0;
}

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

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

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
}

.whatsapp-btn {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 1.9rem;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.34);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.42);
}

.custom-cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(207, 163, 109, 0.62);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.page-transition-hidden {
  opacity: 0;
}

.page-transition-visible {
  opacity: 1;
  transition: opacity 0.45s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

@media (max-width: 1080px) {
  .navbar {
    flex-wrap: wrap;
  }

  nav {
    order: 5;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 22px;
  }

  .navbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .logo {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .theme-toggle {
    order: 3;
  }

  .call-us-btn {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }

  .logo-img {
    width: 160px;
    height: auto;
  }

  nav {
    display: none;
    order: 5;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--bg-panel-strong);
  }

  nav.show {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
  }

  nav a::after {
    display: none;
  }

  nav a:hover,
  nav a.active {
    background: rgba(207, 163, 109, 0.1);
  }

  .header-socials {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-wrapper {
    padding: 52px 0 58px;
  }

  .hero-left {
    max-width: 720px;
  }

  .hero-stats,
  .who-metrics,
  .mission-vision-grid,
  .who-we-are-grid,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-banner,
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 10px;
  }

  .logo-img {
    width: 142px;
    height: auto;
  }

  .menu-toggle,
  .theme-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
  }

  .about-hero {
    min-height: auto;
  }

  .hero-wrapper {
    padding: 38px 0 46px;
  }

  .hero-left h1,
  .about-hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .hero-left h2 {
    font-size: 1rem;
    margin-top: 14px;
  }

  .hero-badge,
  .hero-pill {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-line {
    margin: 16px 0;
  }

  .hero-buttons,
  .hero-actions,
  .cta-buttons {
    flex-direction: column;
  }

  .gold-btn,
  .outline-btn {
    width: 100%;
  }

  .hero-stats,
  .services-grid,
  .testimonial-grid,
  .team-grid,
  .served-grid,
  .values-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat {
    padding: 13px 16px;
  }

  .services-section,
  .testimonials-section,
  .team-section,
  .about-section,
  .who-we-are,
  .mission-section,
  .vision-section,
  .values-section,
  .served-section,
  .about-cta,
  .contact-section {
    padding: 58px 0;
  }

  .service-card,
  .testimonial-box,
  .mv-card,
  .value-item,
  .contact-panel,
  .whatsapp-panel,
  .about-cta-banner {
    padding: 24px;
  }

  .who-image,
  .about-image,
  .who-image img {
    min-height: 280px;
  }

  .value-item {
    flex-direction: column;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
    font-size: 1.65rem;
  }
}
