:root {
  --black: #0b0f19;
  --dark: #111827;
  --gray: #6b7280;
  --light-gray: #f4f5f7;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-dark: #9f7f1d;
  --border: #e5e7eb;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.section-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-heading h2,
.about-text h2,
.why-content h2,
.contact-info h2 {
  font-size: 42px;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 18px;
}

.section-heading p,
.about-text p,
.why-content p,
.contact-info p {
  color: var(--gray);
  font-size: 17px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

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

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

.secondary-btn {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.secondary-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

/* Header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  width: min(1120px, 92%);
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

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

.nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black) !important;
}

.nav-btn:hover {
  background: var(--white);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
}

.lang-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(11, 15, 25, 0.78), rgba(11, 15, 25, 0.86)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 strong {
  color: var(--gold);
  display: block;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  margin-bottom: 34px;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 35px;
  box-shadow: var(--shadow);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero-card h2 {
  font-size: 70px;
  color: var(--gold);
  line-height: 1;
  margin: 12px 0;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.82);
}

/* Stats */
.stats {
  margin-top: -70px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-card {
  padding: 34px 25px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-card h3 {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 5px;
}

.stat-card p {
  color: var(--gray);
  font-weight: 600;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
}

.about-text .btn {
  margin-top: 12px;
}

.about-box {
  background: var(--black);
  color: var(--white);
  padding: 42px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-box h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.about-box li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-box li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  margin-right: 10px;
}

/* Services */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 34px;
  border-radius: 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.4);
}

.icon {
  width: 58px;
  height: 58px;
  background: rgba(201, 162, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 26px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  color: var(--gray);
}

/* Why */
.why {
  background: var(--black);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.why-content h2 {
  color: var(--white);
}

.why-content p {
  color: rgba(255, 255, 255, 0.7);
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-item span {
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
}

.why-item h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.process-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--gray);
}

/* Contact */
.contact {
  background: var(--light-gray);
}

.map-link {
  color: var(--gold);
  font-weight: 700;
  transition: 0.3s ease;
}

.map-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: start;
}

.contact-details {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.contact-details div {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.contact-details strong {
  color: var(--black);
}

.contact-details p {
  margin-top: 4px;
  color: var(--gray);
}

.contact-form {
  background: var(--white);
  padding: 38px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

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

.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 15px 16px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.form-btn {
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  border: none;
}

.form-note {
  margin-top: 14px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
}

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

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1050px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

@media (max-width: 950px) {
  .hero-container,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 360px;
  }

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

  .section-heading h2,
  .about-text h2,
  .why-content h2,
  .contact-info h2 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    height: 72px;
  }

  .menu-btn {
    display: block;
  }

  .language-switcher {
    margin-left: auto;
    margin-right: 14px;
  }

  .lang-btn {
    padding: 6px 9px;
    font-size: 11px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px;
  }

  .nav-btn {
    width: 80%;
    margin: 10px auto;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 100px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    width: 100%;
  }

  .hero-card {
    width: 100%;
  }

  .stats {
    margin-top: 0;
    padding: 40px 0 0;
  }

  .stats-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .section-padding {
    padding: 75px 0;
  }

  .section-heading h2,
  .about-text h2,
  .why-content h2,
  .contact-info h2 {
    font-size: 31px;
  }

  .about-box,
  .contact-form {
    padding: 28px;
  }

  .why-item {
    flex-direction: column;
    gap: 10px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }

  .logo {
    font-size: 18px;
  }

  .contact-form {
    padding: 24px;
  }

  .language-switcher {
    gap: 5px;
    margin-right: 8px;
  }

  .lang-btn {
    padding: 5px 7px;
    font-size: 10px;
  }
}