:root {
  --red: #a40c11;
  --deep-red: #8f0f14;
  --gold: #a8820f;
  --black: #09090c;
  --charcoal: #14161c;
  --panel: #181b22;
  --white: #ffffff;
  --silver: #c9ced8;
  --gray: #9ba3b0;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  }

h1, h2, h3, .section-title, .brand {
  font-family: "Allura", cursive;
  font-weight: 400;
  letter-spacing: 0.5px;
}

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

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

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

.topbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  }

.nav {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.logo {
  height: 150px; /* increase this */
  width: auto;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.6));
}

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 700;
}

.nav-links a {
  color: var(--silver);
  transition: 0.25s ease;
}

.nav-links a {
  color: var(--silver);
  font-size: 2rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-links a,
.btn {
  font-family: "Allura", cursive;
  letter-spacing: 1px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff2600, #ff5e00);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ff0000;
  color: #ff8c00;
}

.btn-secondary:hover {
  background: #951111b6;
  border-color: #ff8c00;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(25deg, rgba(10, 10, 14, 0.45), rgba(10, 10, 14, 0.30)),
    url("images/hero.png") center/cover no-repeat;
  }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9, 9, 12, 0.82) 0%,
    rgba(9, 9, 12, 0.55) 48%,
    rgba(9, 9, 12, 0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 90px 0 70px;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  background: rgba(242, 201, 76, 0.08);
  border: 1px solid rgba(242, 201, 76, 0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--white);
}

.hero-subtext {
  font-size: 1.08rem;
  color: var(--silver);
  max-width: 620px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: linear-gradient(135deg, #830a0a, #fffb00);
  color: white;
}

.btn-secondary {
  border: 2px solid #fff;
  color: white;
}

/* BADGES */
.hero-badges span {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  margin-right: 8px;
  border-radius: 6px;
  font-size: 14px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(70deg, rgba(9,9,12,0.92) 0%, rgba(9,9,12,0.72) 42%, rgba(9,9,12,0.38) 72%, rgba(9,9,12,0.18) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 90px 0 70px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  background: rgba(242, 201, 76, 0.08);
  border: 1px solid rgba(242, 201, 76, 0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 720px;
}

.hero-subtext {
  font-size: 1.08rem;
  color: var(--silver);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--silver);
  font-weight: 700;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.hero-panel ul {
  list-style: none;
}

.hero-panel li {
  padding: 12px 0;
  color: var(--silver);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-panel li:last-child {
  border-bottom: none;
}

.stats {
  background: linear-gradient(180deg, #101218, #0c0d11);
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  padding: 24px 18px;
}

.stat-box h2 {
  color: var(--gold);
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.stat-box p {
  color: var(--silver);
  font-weight: 500;
}

.section {
  padding: 90px 0;
}

.section-dark {
  background: linear-gradient(180deg, #101218, #0b0c10);
}

.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Allura", cursive;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}

.section-text,
.about-text,
.contact-text {
  max-width: 760px;
  color: var(--silver);
  font-size: 1.02rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 400px;
  padding: 0; /* important */
}

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

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.1)
  );
}

/* TEXT ON IMAGE */
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.25s ease;
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  justify-content: center;   /* 👈 THIS FIXES IT */
  align-items: center;       /* 👈 centers horizontally */
  text-align: center;        /* 👈 makes it look clean */
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 320px;
  padding: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15)
  );
  z-index: 1;
}

.service-card h3 {
  font-size: 1.5rem;   /* bigger */
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--silver);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 201, 76, 0.35);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.about-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.about-logo {
  height: 120px;
  width: auto;
  margin-bottom: 18px;
}

.about-info p {
  color: var(--silver);
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  min-height: 430px;
  background: linear-gradient(180deg, rgba(164, 12, 17, 0.85), rgba(45, 10, 10, 0.70));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-item h3 {
  margin: 18px 18px 8px;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--white);
}

.gallery-item p {
  margin: 0 18px 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--silver);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-details {
  margin-top: 18px;
}

.contact-details p {
  margin-bottom: 12px;
  color: var(--silver);
}

.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 15px 16px;
  margin-bottom: 14px;
  font-size: 1rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 201, 76, 0.45);
}

.footer {
  padding: 30px 0 40px;
  border-top: 1px solid var(--border);
  background: #07080b;
}

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

.footer-logo {
  height: 78px;
  width: auto;
}

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

@media (max-width: 1024px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .services-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 650px;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .logo {
    height: 150px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0 50px;
  }

  .section {
    padding: 70px 0;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(94%, 100%);
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-buttons,
  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 85%;
  }

  .gallery-item {
    min-height: 180px;
  }
}
@media (max-width: 768px) {
  .topbar {
    background: rgba(9, 9, 12, 0.98) !important;
    backdrop-filter: blur(4px) !important;
  }
}