* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* scrollbar-width: thin; */
  scrollbar-color: var(--gold) #1a1a2e;
}

html {
  scroll-behavior: smooth;
}

:root {
  --gold: #847454;
  --gold-light: rgba(212, 175, 55, 0.2);
  --gold-border: rgba(212, 175, 55, 0.2);
  --black: #000000;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: white;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid #63636333;
}

nav.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid white;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 3.5rem;
}

.nav-links {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links>a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

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

.nav-links>a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links>a:hover::after {
  width: 100%;
}

/* .social-icon-group a::after {
  content: "";
  width: 0;
  height: 0;
}
.social-icon-group a:hover:after {
  display: none;
} */

.nav-links .social-icon-group {
  display: inline-flex;
  gap: 14px;
}

.nav-links .social-icon-group a {
  display: flex;
  align-items: center;
}

.nav-links .social-icon-group img {
  width: 36px;
  height: 36px;
}

.social-icon-group-mobile {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: white;
  padding: 14px 24px;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary a,
.btn-primary a:hover {
  color: white;
  text-decoration: none;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  transition: color 0.3s;
}

/* .btn-primary:hover styles intentionally left empty */

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  display: inline-flex;
  font-weight: 700;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-large:hover,
.btn-secondary:hover {
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

/* .btn-secondary a {
  color: var(--gold);
  text-decoration: none;
} */

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.6));
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, transparent, transparent);
}

.hero-container {
  display: flex;
  width: 100%;
}

.hero-content {
  position: relative;
  width: 50%;
  z-index: 10;
}

.hero-badge {
  padding: 8px 24px;
  background-color: white;
  border: 1px solid rgba(99, 99, 99, 0.2);
  border-radius: 9999px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-block;
  margin-bottom: 12px;
}

.hero-content h1 {
  color: #221d21;
  font-weight: 700;
  font-size: 62px;
  line-height: 78px;
  letter-spacing: 0%;
}

.hero-content h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 62px;
  line-height: 78px;
  color: #847454;
}

.hero p {
  font-size: 1.125rem;
  color: black;
  margin: 24px 0;
}

.video-card {
  width: 50%;
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}

.video-card .video-one {
  max-width: 450px;
}

.video-card .video-two {
  position: absolute;
  max-width: 250px;
  left: 0;
  bottom: 0;
  transform: translate(35px, 40%);
}

.video-card .video-one video {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 120px;
  object-fit: cover;
}

.video-card .video-two video {
  width: 100%;
  aspect-ratio: 1;
  border: 8px solid white;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  object-fit: cover;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--gold);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  animation: scrollDiv 2s infinite;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--gold);
  border-radius: 9999px;
  animation: scroll 2s infinite;
}

/* ── Container & Sections ────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
}

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

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, black, rgba(23, 23, 23, 0.95), black);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: black;
}

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

.section-description {
  color: var(--black);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 28px;
}

/* ── Grid ────────────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3,
.grid-2 {
  grid-template-columns: 1fr;
}

/* ── Service Card ────────────────────────────────────────────────────────── */
.service-card {
  position: relative;
  border: 1px solid white;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  background:
    linear-gradient(135deg, #c9b58d 0%, #847454 100%),
    linear-gradient(135deg,
      rgba(212, 175, 55, 0.1) 0%,
      rgba(132, 116, 84, 0.1) 100%),
    rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-icon {
  background: white;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: white;
  transform: scale(1.1);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--gold);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: white;
}

.service-card p {
  color: white;
  line-height: 1.6;
  min-height: 4.8em;
  max-height: 4.8em;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.service-card:hover p {
  max-height: 1000px;
}

.service-link {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  color: white;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link span {
  font-size: 0.875rem;
  font-weight: 600;
}

.service-link .arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.service-card:hover .service-link .arrow {
  transform: translate(0.25rem, 0.5px);
}

/* ── Project Card ────────────────────────────────────────────────────────── */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, #c9b58d 0%, #847454 100%),
    linear-gradient(135deg,
      rgba(212, 175, 55, 0.1) 0%,
      rgba(132, 116, 84, 0.1) 100%),
    rgba(255, 255, 255, 0.6);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0.6;
  transition: opacity 0.5s;
}

.project-card:hover .project-overlay {
  opacity: 0.8;
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: white;
  color: black;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

/* .project-card:hover h3 — color override intentionally disabled */

.project-content p {
  color: white;
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-link {
  margin-top: 1rem;
  display: flex;
  gap: 5px;
  align-items: center;
  color: white;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
  cursor: pointer;
}

.project-card:hover .project-link {
  opacity: 1;
  transform: translateX(0);
}

.project-link span {
  font-size: 0.875rem;
  font-weight: 600;
}

.project-card:hover .project-link span.arrow {
  animation: bounce 2s infinite;
}

/* ── About Section ───────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.about-image-container .usa-image {
  /* max-width: 598px; */
  margin-bottom: 30px;
  padding: 24px;
  background: linear-gradient(135deg,
      rgb(255 195 0 / 10%) 0%,
      rgb(192 173 136 / 10%) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
}

.about-image-container .usa-image img {
  width: 100%;
  border-radius: 1rem;
}

.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

/* Carousel */
.about-carousel {
  min-height: 420px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

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

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: default;
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

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

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right,
      rgba(0, 0, 0, 0.4),
      transparent,
      rgba(212, 175, 55, 0.2));
  z-index: 10;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, #c9b58d 0%, #847454 100%),
    linear-gradient(135deg,
      rgba(212, 175, 55, 0.9) 0%,
      rgba(217, 119, 6, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
  border-radius: 16px;
}

.about-badge .year {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
}

.about-badge .text {
  font-size: 0.875rem;
  color: white;
  font-weight: 500;
}

.about-content p {
  color: black;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-content p:not(:first-of-type) {
  color: black;
}

.mission-box {
  margin-bottom: 2rem;
  padding: 24px;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.1) 0%,
      rgba(132, 116, 84, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
}

.mission-box h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: black;
  margin-bottom: 0.75rem;
}

.mission-box p {
  color: black;
}

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

.stat-card {
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.1) 0%,
      rgba(132, 116, 84, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: border-color 0.3s;
}

.stat-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.stat-icon {
  background: linear-gradient(135deg, #c9b58d 0%, #847454 100%);
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: black;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: black;
}

/* ── Contact Section ─────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background: linear-gradient(135deg, #c9b58d 0%, #847454 100%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
}

.contact-text {
  max-width: 360px;
}

.contact-text .address-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-text h3 {
  color: black;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: black;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

/* ── Global Presence Timeline ────────────────────────────────────────────── */
.global-presence-container {
  margin-bottom: 2rem;
}

.global-presence-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gp-header-icon {
  background: linear-gradient(135deg, #c9b58d 0%, #847454 100%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.global-presence-header h3 {
  color: #1e293b;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gp-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.5rem;
}

.gp-timeline::before {
  content: "";
  position: absolute;
  left: 1.45rem;
  top: 1.5rem;
  bottom: 3.5rem;
  width: 2px;
  background-color: #f1f1f1;
  z-index: 1;
}

.gp-item {
  display: flex;
  align-items: flex-start;
  /* gap: 1rem; */
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.gp-item:last-child {
  margin-bottom: 0;
}

.gp-icon {
  background-color: white;
  width: 3rem;
  height: 3rem;
  border: 1px solid #e3ddcd;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #847454;
  flex-shrink: 0;
  transform: translateX(-1.5rem);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.gp-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gp-content {
  margin-top: 0.25rem;
  /* margin-left: -1rem; */
}

.gp-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gp-location h4 {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.125rem;
}

.gp-badge {
  background-color: #f1f5f9;
  color: #64748b;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.gp-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 380px;
}

/* ── Form ────────────────────────────────────────────────────────────────── */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}

label.required::after {
  content: "*";
  color: #ef0000;
  margin-left: 2px;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #63636333;
  border-radius: 0.5rem;
  color: black;
  transition: border-color 0.3s;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea {
  resize: none;
}

.form-group input,
.form-group textarea {
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s ease;
}

.error {
  border-color: #ff4d4f !important;
}

.error-text {
  color: #ff4d4f;
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-weight: 500;
  display: none;
  opacity: 0;
  text-align: center;
  transition: opacity 0.4s ease;
}

.form-success.show {
  display: block;
  opacity: 1;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-content {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  gap: 10px;
}

.btn-submit:hover {
  background: #a69677;
  transform: scale(1.015);
}

.btn-submit svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: white;
  transition: transform 0.3s;
}

.btn-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  opacity: 0;
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-submit.loading .btn-content {
  visibility: hidden;
}

.btn-submit.loading .btn-loader {
  opacity: 1;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  position: relative;
  background: black;
  border-top: 1px solid var(--gold-border);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--neutral-900), black);
  opacity: 0.5;
}

.footer-content {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand .subtitle {
  color: white;
  font-size: 1rem;
}

.footer-description {
  color: white;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: white;
  transition: stroke 0.3s;
}

.social-link:hover svg {
  stroke: var(--gold);
}

.footer-column h3 {
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(0.25rem);
}

.footer-links .icon-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: white;
  font-size: 0.875rem;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── Mobile Menu ─────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(to bottom, #171717, #000000);
  z-index: 9999;
  padding: 2rem;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  overflow-y: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.mobile-menu-header {
  display: flex;
  justify-content: end;
}

.mobile-nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

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

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

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
}

.mobile-menu-footer button {
  width: 100%;
  margin-top: 10px;
}

.close-menu {
  border: none;
  background-color: transparent;
}

/* ── Keyframe Animations ─────────────────────────────────────────────────── */
@keyframes scroll {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes scrollDiv {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(11px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   MEDIA QUERIES — all breakpoints consolidated here
   ════════════════════════════════════════════════════════════════════════════ */

/* ── max-width: 1023px  (tablet + mobile — hide desktop nav) ─────────────── */
@media (max-width: 1023px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* ── min-width: 640px  (small tablets up — hero buttons row) ─────────────── */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ── min-width: 768px  (tablets up) ─────────────────────────────────────── */
@media (min-width: 768px) {

  .hero-content h1,
  .hero-content h2 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 3rem;
    line-height: 4rem;
  }

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

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

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

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom p {
    text-align: left;
  }
}

/* ── min-width: 1024px  (desktop) ────────────────────────────────────────── */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .logo img {
    height: 5rem;
  }

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

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

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

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

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── max-width: 768px  (mobile — full overhaul) ──────────────────────────── */
@media (max-width: 768px) {

  /* --- Global --- */
  section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }

  .section-description {
    font-size: 1rem;
  }

  /* --- Hero --- */
  .hero-container {
    flex-direction: column;
    gap: 2rem;
    padding-top: 3rem;
    /* clear fixed nav */
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hero-content h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hero p {
    font-size: 1rem;
    margin: 16px 0;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* .btn-large,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  } */

  /* --- Hero Video Card --- */
  .video-card {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    min-height: unset;
  }

  .video-card .video-one {
    /* max-width: 260px; */
    width: 100%;
  }

  /* Reset video-two from absolute to normal flow on mobile */
  /* .video-card .video-two {
    position: static;
    display: block;
    max-width: 400px;
    width: 100%;
    transform: none;
  } */

  .scroll-indicator {
    display: none;
  }

  /* --- Service Cards --- */
  .service-card h3 {
    font-size: 1.25rem;
  }

  /* --- Projects --- */
  .project-image {
    height: 12rem;
  }

  /* --- About --- */
  .about-image-container {
    padding-bottom: 3.5rem;
    /* room for the badge */
  }

  .about-carousel {
    min-height: 280px;
  }

  .about-badge {
    bottom: 0;
    right: 0.5rem;
    padding: 1rem 1.25rem;
  }

  .about-badge .year {
    font-size: 1.375rem;
  }

  .about-content .section-title {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }

  /* --- Stats --- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* --- Contact --- */
  .contact-info-item {
    flex-direction: row;
    align-items: flex-start;
  }

  /* --- Footer --- */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom p {
    text-align: center;
  }

  .footer-links .icon-text {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}

/* ── max-width: 480px  (small phones) ────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-content h1,
  .hero-content h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .section-title {
    font-size: 1.625rem;
    line-height: 2.25rem;
  }

  .about-carousel {
    min-height: 220px;
  }

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

  .stat-card {
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .btn-large,
  .btn-secondary {
    font-size: 1rem;
    padding: 0.65rem 1.5rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-badge {
    right: 0;
    padding: 0.75rem 1rem;
  }

  .about-badge .year {
    font-size: 1.125rem;
  }

  .about-badge .text {
    font-size: 0.75rem;
  }

  .video-card .video-two {
    position: static;
    display: block;
    max-width: 400px;
    width: 100%;
    transform: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .video-card .video-one video {
    border-radius: 60px;
  }
}

/* ── Tablet only: 769px – 1023px ─────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1023px) {

  /* Hero: stack on tablet too for better readability */
  .hero-container {
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 5rem;
  }

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

  .hero-content h1,
  .hero-content h2 {
    font-size: 3.5rem;
    line-height: 4.25rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

  .video-card .video-one {
    max-width: 360px;
  }

  .video-card .video-two {
    max-width: 180px;
  }

  /* About */
  .about-image-container {
    padding-bottom: 3rem;
  }

  .about-badge {
    bottom: 0;
    right: 1rem;
  }

  /* Section padding */
  section {
    padding: 4.5rem 0;
  }
}