:root {
  --black: #000000;
  --red: #e02125;
  --white: #ffffff;
  --grey: #bfbfbf;
  --dark-grey: #151515;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

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

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

/* HEADER / NAV (sticky) */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #111;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE */

.logo-area {
  display: flex;
  align-items: center;
}

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

/* NAV LINKS */

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: var(--grey);
}

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

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

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

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;

  background: none;
  border: none;
  color: inherit;
  padding: 0;
}


/* HERO */

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.hero-title span {
  color: var(--red);
}

.hero-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-badge {
  font-size: 0.9rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-ghost {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.1s ease;
  display: inline-block;
}

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

.btn-primary:hover {
  background: #ff3137;
  border-color: #ff3137;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: #333;
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--grey);
}

.hero-card {
  background: radial-gradient(circle at top left, #2a2a2a 0, #050505 55%);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #1b1b1b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.hero-logo-placeholder {
  border-radius: 1rem;
  border: 1px solid #333;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #141414 0, #050505 100%);
}

.hero-logo-placeholder img {
  width: 100%;
  height: auto;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--grey);
}

.hero-list li::before {
  content: "•";
  color: var(--red);
  margin-right: 0.35rem;
}

.hero-highlight {
  font-size: 0.8rem;
  color: var(--grey);
}

/* SECTIONS */

section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 2rem;
  max-width: 32rem;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: #050505;
  border-radius: 1rem;
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid #1a1a1a;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.service-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
}

.service-name {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.service-meta {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* PORTFOLIO GRID (reuses gallery styles) */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 1rem;
  border: 1px solid #1a1a1a;
  background: linear-gradient(135deg, #181818, #050505);
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  color: var(--grey);
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(224, 33, 37, 0.22), transparent 55%);
  opacity: 0.7;
}

.gallery-label {
  position: relative;
  z-index: 1;
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.price-card {
  background: #050505;
  border-radius: 1rem;
  padding: 1.6rem 1.4rem 1.8rem;
  border: 1px solid #1a1a1a;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.price-heading {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.price-from {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 0.7rem;
}

.price-from span {
  color: var(--red);
  font-weight: 600;
}

.price-note {
  font-size: 0.78rem;
  color: var(--grey);
}

/* TWO COLUMN */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.bullet-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.bullet-icon {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--red);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.badge-small {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey);
  margin-bottom: 0.6rem;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.contact-card {
  background: #050505;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid #1a1a1a;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

form {
  display: grid;
  gap: 1rem;
  font-size: 0.9rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid #333;
  background: #050505;
  color: var(--white);
  font: inherit;
}

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

textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-details {
  font-size: 0.9rem;
  color: var(--grey);
  display: grid;
  gap: 0.75rem;
}

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

/* FOOTER */

footer {
  border-top: 1px solid #111;
  padding: 1.8rem 0 2.4rem;
  font-size: 0.75rem;
  color: var(--grey);
}

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

.footer-inner a {
  color: var(--grey);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile nav – logo centred, burger on right */
  .nav-left {
    margin: 0 auto;
  }

  .logo-img {
    height: 40px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {

    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: #050505;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #222;
    margin-top: 0.5rem;
  
  z-index: 1000;
}

}

/* FOOTER LINKS */
.footer-inner a {
  color: var(--grey);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--white);
}

/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 1000;
  background: #050505;
  border: 1px solid #333;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  max-width: 520px;
  width: calc(100% - 2.5rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--grey);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.cookie-banner a {
  color: var(--red);
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-banner-btn {
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.cookie-banner-btn:hover {
  background: #ff3137;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Testimonials */
.testimonials-section {
  padding: 3rem 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  background: radial-gradient(circle at top left, #181818, #050505 60%);
  margin-top: 2rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.testimonial-card {
  background: #050505;
  border-radius: 1rem;
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 0.8rem;
}

.testimonial-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
}

/* CTA strip */
.cta-section {
  padding: 2.5rem 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  background: linear-gradient(135deg, #151515, #050505);
  margin-top: 2.5rem;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cta-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cta-text {
  font-size: 0.9rem;
  color: var(--grey);
  max-width: 32rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #25D366;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.whatsapp-fab:hover {
  filter: brightness(1.05);
}

@media (max-width: 600px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop WhatsApp button adjustment */
@media (min-width: 900px) {
  .whatsapp-fab {
    bottom: 6rem;
    right: 2rem;
    left: auto;
  }
}


/* reCAPTCHA layout */
.recaptcha-row { margin: 1rem 0; }
