/* ============================================================
   DEADLINE COMPLETE — Main Stylesheet
   Colors: #a1161d (Red), #c79b5a (Gold), #000 (Black), #fff (White)
   ============================================================ */

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

:root {
  --red:    #a1161d;
  --gold:   #c79b5a;
  --black:  #000000;
  --white:  #ffffff;
  --grey:   #111111;
  --grey2:  #1a1a1a;
  --grey3:  #2a2a2a;
  --grey-light: #f5f5f5;
  --grey-mid:   #888888;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.28);
}

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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-mid);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn:hover::before { transform: translateX(0); }

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

.btn-primary:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

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

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

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1.5rem 0;
}

#navbar.scrolled {
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(199,155,90,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  transition: all var(--transition);
}

#navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}

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

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

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

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile a {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

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

.nav-mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.nav-mobile-social a {
  font-size: 1.2rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

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

/* ---------- HERO ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161,22,29,0.12) 0%, transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,1) 100%);
  z-index: 1;
}

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

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.28);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title .line { display: block; }
.hero-title .highlight { color: var(--gold); }
.hero-title .red-text { color: var(--red); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-mid);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- STATS BAR ---------- */
#stats {
  background: var(--red);
  padding: 3rem 0;
}

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

.stat-item { position: relative; }

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ---------- ABOUT ---------- */
#about {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  background: var(--red);
  border-radius: var(--radius);
  z-index: -1;
}

.about-img-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-img-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-img-badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--grey2);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  transition: all var(--transition);
}

.about-value-item:hover {
  background: var(--grey3);
  transform: translateY(-2px);
}

.about-value-icon {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-value-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.about-value-text {
  font-size: 0.8rem;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ---------- SERVICES ---------- */
#services {
  background: var(--grey);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: 'SERVICES';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
}

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

.services-header .section-subtitle { margin: 0 auto; }

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

.service-card {
  background: var(--grey2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
  group: true;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(199,155,90,0.12);
}

/* (service image styles moved to SERVICE ICON CARDS block above) */

.service-card-body {
  padding: 1.75rem;
}

.service-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card-text {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-card-link:hover { gap: 0.75rem; }

/* ---------- WHY US ---------- */
#why-us {
  background: var(--black);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image-wrap {
  position: relative;
  order: 2;
}

.why-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-img-overlay {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--red);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 280px;
}

.why-img-overlay-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.why-img-overlay-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.why-content { order: 1; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--grey2);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.why-feature:hover {
  border-color: rgba(199,155,90,0.3);
  background: var(--grey3);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.why-feature-text {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* ---------- TEAM ---------- */
#team {
  background: var(--grey);
  position: relative;
  overflow: hidden;
}

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

.team-header .section-subtitle { margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--grey2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(199,155,90,0.3);
}

.team-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

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

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.team-card-social {
  display: flex;
  gap: 0.75rem;
}

.team-card-social a {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.team-card-social a:hover {
  background: var(--white);
  transform: scale(1.1);
}

.team-card-body {
  padding: 1.25rem 1.5rem;
}

.team-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-card-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- TESTIMONIALS ---------- */
#testimonials {
  background: var(--black);
  text-align: center;
}

.testimonials-header { margin-bottom: 4rem; }
.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--grey2);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(199,155,90,0.2);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grey3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author-company {
  font-size: 0.78rem;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
}

.testimonials-placeholder-note {
  font-size: 0.8rem;
  color: var(--grey-mid);
  font-style: italic;
  margin-top: 1rem;
}

/* ---------- CTA BANNER ---------- */
#cta-banner {
  background: var(--red);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-content { position: relative; }

.cta-banner-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- CONTACT ---------- */
#contact {
  background: var(--grey);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--grey2);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 1rem;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  display: block;
  filter: grayscale(0.4) invert(0.9) hue-rotate(180deg);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--grey2);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.contact-form-subtitle {
  font-size: 0.875rem;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--grey3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--black);
  box-shadow: 0 0 0 3px rgba(199,155,90,0.08);
}

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

.form-group select {
  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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option { background: var(--grey); }

.form-msg {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}

.form-msg.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  display: block;
}

.form-msg.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  display: block;
}

/* ---------- FOOTER ---------- */
#footer {
  background: #050505;
  border-top: 1px solid rgba(199,155,90,0.15);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img { height: 48px; margin-bottom: 1.25rem; }

.footer-about {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--grey2);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--grey-mid);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.5;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

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

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--grey-mid);
  transition: color var(--transition);
}

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

/* ---------- OUR VALUES ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--grey2);
  border: 1px solid var(--red);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161,22,29,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(199,155,90,0.1);
}

.value-card:hover::before { opacity: 1; }

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
  transition: background var(--transition);
}

.value-card:hover .value-card-icon { background: var(--gold); color: var(--black); }

.value-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.value-card-text {
  font-size: 0.8rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:last-child { grid-column: span 2; max-width: 300px; margin: 0 auto; width: 100%; }
}

/* ---------- SERVICE ICON CARDS ---------- */
.service-card-icon-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(161,22,29,0.15) 0%, rgba(199,155,90,0.08) 100%);
  border-bottom: 1px solid rgba(199,155,90,0.15);
  transition: background var(--transition);
}

.service-card-icon-wrap i {
  font-size: 3.5rem;
  color: var(--gold);
  transition: transform 0.4s ease, color var(--transition);
}

.service-card-icon:hover .service-card-icon-wrap {
  background: linear-gradient(135deg, rgba(161,22,29,0.25) 0%, rgba(199,155,90,0.15) 100%);
}

.service-card-icon:hover .service-card-icon-wrap i {
  transform: scale(1.15);
  color: var(--white);
}

/* Make service images fully visible — no cropping */
.service-card-image-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--grey3);
}

.service-card-image {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

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

/* ---------- TEAM — SPLIT LAYOUT ---------- */
.team-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.team-split-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-member-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.5rem 2rem;
  background: var(--grey2);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.team-member-row:hover {
  border-color: rgba(199,155,90,0.3);
  transform: translateX(6px);
  background: var(--grey3);
}

.team-member-avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--red);
  box-shadow: 0 0 0 4px rgba(161,22,29,0.15);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.team-member-row:hover .team-member-avatar-wrap {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199,155,90,0.2);
}

.team-member-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member-avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey3);
}

.team-member-avatar-initials span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.team-member-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.team-member-role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

@media (max-width: 768px) {
  .team-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-member-row { padding: 1.25rem; }
  .team-member-avatar-wrap { width: 80px; height: 80px; }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 9rem 0 5rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161,22,29,0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; }

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--grey-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: var(--grey-mid);
  letter-spacing: 0.05em;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--grey-mid); }

/* ---------- APPLY PAGE ---------- */
.apply-section {
  background: var(--grey);
  padding: 5rem 0;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.apply-sidebar {
  position: sticky;
  top: 6rem;
}

.apply-sidebar-card {
  background: var(--grey2);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.apply-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.apply-positions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.apply-position-item {
  padding: 0.85rem 1rem;
  background: var(--grey3);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}

.apply-position-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.apply-position-type {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.apply-form-wrap {
  background: var(--grey2);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.apply-form-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.apply-form-section-title:first-child { margin-top: 0; }

.form-group input[type="file"] {
  padding: 0.6rem 1rem;
  cursor: pointer;
  color: var(--grey-mid);
}

.form-group input[type="file"]::-webkit-file-upload-button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.75rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--red);
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.checkbox-group label a { color: var(--gold); }

/* Honeypot */
.honey-pot { display: none !important; visibility: hidden; }

/* ---------- LEGAL PAGES ---------- */
.legal-section {
  background: var(--grey);
  padding: 5rem 0;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--grey2);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-last-updated {
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---------- LOADING SCREEN ---------- */
#loading {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading.hidden { opacity: 0; visibility: hidden; }

.loading-logo img { height: 60px; }

.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--red), var(--gold));
  border-radius: 2px;
  animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ---------- BACK TO TOP ---------- */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

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

#back-to-top:hover { background: var(--gold); color: var(--black); }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--gold));
  border-radius: 2px;
  margin: 1rem 0;
}
.divider-center { margin: 1rem auto; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-image-wrap,
  .why-content { order: unset; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-badge { left: 1rem; }
  .why-img-overlay { left: 1rem; }
  .legal-content { padding: 2rem 1.5rem; }
  .apply-form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.4rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .nav-mobile a { font-size: 1.6rem; }
}
