:root {
  --color-primary: #A91E21;
  --color-primary-hover: #A91E21;
  --color-bg-dark: #050505;
  --color-text-light: #ffffff;
  --color-text-muted: #b7b7b7;
  --header-height: 90px;
  --transition-fast: 0.25s ease;
  --container-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #000;
  color: var(--color-text-light);
}

/* smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* simple fade for header on load */
@keyframes fadeDownSoft {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header {
  animation: fadeDownSoft 0.7s ease 0.1s both;
}

/* Utility container */
.hero-inner, .top-bar-inner, .nav-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  color: #000000;
  box-shadow: none;
}
.main-header.main-header--scrolled { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); }

/* Top bar */
.top-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.75rem;
  color: #555555;
  background-color: #f9f9f9;
}
.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-block: 0.35rem;
}

/* Nav wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;           /* desktop: logo left, links centered, actions right */
  height: var(--header-height);
  gap: 1rem;
  position: relative;
  background: #fff;
}

/* Logo */
.logo { display: flex; align-items: center; min-width: 0; text-decoration: none; }
.logo-img { height: 70px; width: auto; display: block; }

/* ===== NAV BASE ===== */
.nav { flex: 1; }                        /* owns the middle space */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; align-items: center; gap: 2rem;
  justify-content: center;               /* center the links on desktop */
}
.nav-item { position: relative; }
.nav-link {
  background: none; border: none; color: #000000; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em; text-decoration: none; cursor: pointer; padding: 0.2rem 0;
  display: inline-flex; align-items: center; gap: 0.35rem; transition: color var(--transition-fast), transform 0.2s ease;
  position: relative; overflow: hidden;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--color-primary); transform: translateY(-1px); }
.nav-link.active { color: var(--color-primary); }

/* Buttons container */
.nav-actions {
  display: flex; align-items: center; gap: 0.75rem;
  margin-left: auto;                     /* actions to the far right */
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.55rem 1.3rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), transform .15s ease, box-shadow .15s ease;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.35); }
.btn-outline  { background: transparent; border-color: rgba(0,0,0,.3); color: #000; }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  width: 40px; height: 40px; border-radius: 10px;
  border: none;                          /* remove border */
  background-color: transparent;         /* no button background */
  padding: 0; margin: 0; cursor: pointer;
  display: none;                         /* hidden on desktop (shown via media query) */
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  position: relative; z-index: 1501;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 999px;
  background-color: var(--color-primary); transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.nav-toggle--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.nav-toggle--open span:nth-child(2) { opacity: 0; }
.nav-toggle.nav-toggle--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== RIGHT-SIDE MOBILE DRAWER ===== */
.ncw-backdrop[hidden] { display: none !important; }
.ncw-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 1500; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.ncw-backdrop.is-visible { opacity: 1; visibility: visible; }

.ncw-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 82%; max-width: 340px;
  background: #ffffff; color: #000; z-index: 1502;
  transform: translateX(100%); transition: transform .3s ease; box-shadow: -4px 0 25px rgba(0,0,0,.35);
  display: flex; flex-direction: column; padding: 1.2rem 1.2rem 1.4rem; outline: none;
}
.ncw-drawer.is-open { transform: translateX(0); }

.ncw-drawer-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.ncw-drawer-logo img { height: 46px; width: auto; display: block; }
.ncw-drawer-close { margin-left: auto; border: none; background: transparent; cursor: pointer; font-size: 1.8rem; line-height: 1; color: #000; }

.ncw-drawer-nav { margin-top: .25rem; }
.ncw-drawer-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.ncw-drawer-link { display: block; padding: .75rem .25rem; text-decoration: none; color: #000; font-weight: 500; }
.ncw-drawer-link:hover { color: var(--color-primary); }

.ncw-drawer-actions { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .6rem; }
.ncw-full { width: 100%; justify-content: center; }

/* Prevent body scroll when drawer open */
body.nav-open { overflow: hidden; }

/* ========= DESKTOP ========= */
@media (min-width: 769px) {
  .nav-toggle { display: none; }
}

/* ========= MOBILE ========= */
@media (max-width: 768px) {
  .nav-wrapper { gap: 0.5rem; height: var(--header-height); }
  .nav       { display: none; }        /* hide desktop links in mobile */
  .nav-actions { display: none; }      /* hide desktop buttons in mobile */
  .nav-toggle { display: flex; margin-left: auto; } /* push burger to right */
}


/* ===== ABOUT HERO BANNER ===== */

.about-hero {
  position: relative;
  min-height: 80vh;
  background: url("../images/contactpage-banner.webp") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.75) 35%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.15) 100%
    );
  z-index: 0;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 3rem 1rem 4rem;
}

.about-hero-title {
  margin: 0 0 1rem;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #f1f1f1;
}

/* Responsive hero text */
@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 65vh;
  }

  .about-hero-title {
    font-size: 1.9rem;
  }
}


















/* ===== CONTACT PAGE SECTION ===== */

.contact-section {
  background-color: #ffffff;
  padding: 4.5rem 0 5rem;
}

.contact-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem;
}

/* Headings */

.contact-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  margin: 0 0 1.9rem;
  position: relative;
}

.contact-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 3rem;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-primary);
}

/* LEFT: FORM */

.contact-left {
  color: #111111;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 2rem 2.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #222222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #dedede;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  outline: none;
  background-color: #fafafa;
  color: #222222;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, transform 0.15s ease;
}

.contact-form textarea {
  border-radius: 14px;
  min-height: 150px;
  resize: none; /* 🔒 disable manual resize */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaaaaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(169, 30, 33, 0.12);
  transform: translateY(-1px);
}

.btn-contact-submit {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  border: none;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn-contact-submit:hover {
  background-color: #8b181b;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

/* RIGHT: CONTACT INFO + MAP */

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.contact-heading-right {
  margin-bottom: 1.2rem;
}

.contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-details-list .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-details-list .icon i {
  font-size: 1rem;
}

.contact-details-list .detail-text h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}

.contact-details-list .detail-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #555555;
}

/* MAP */

.contact-map-wrapper {
  margin-top: 0.4rem;
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991.98px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-right {
    order: 2;
  }

  .contact-left {
    order: 1;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 3.8rem 0 4.5rem;
  }

  .contact-form {
    padding: 1.7rem 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .contact-heading {
    font-size: 1.5rem;
  }

  .contact-map-wrapper iframe {
    height: 230px;
  }
}















/* ===== FOOTER ===== */

/* ===== FOOTER ===== */
.site-footer {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  flex-shrink: 0;
}

.footer-main {
  width: 100%;
  background: #ffffff;
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1.2fr));
  gap: 2.5rem;
}

.footer-col-brand .footer-logo img {
  display: block;
  max-width: 250px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-text {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.6;
}

.footer-support-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666666;
  margin-bottom: 0.4rem;
}

.footer-support-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background-color: #f0f0f0;
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.footer-support-phone:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.footer-support-phone i {
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.footer-support-phone:hover i {
  color: #ffffff;
}

.footer-heading {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.footer-links li+li {
  margin-top: 0.35rem;
}

.footer-links a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

.footer-contact {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: #333333;
}

.footer-contact i {
  margin-top: 0.1rem;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.footer-contact a {
  color: #333333;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 0.4rem;
}

.footer-social-link {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Bottom bar */

.footer-bottom {
  width: 100%;
  background-color: var(--color-primary);
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the copyright text */
  gap: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: #ffffff;
}

/* These remain but are unused after removing links - safe to keep */
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #f0f0f0;
}

.footer-bottom-separator {
  color: #f0f0f0;
}

@media (max-width: 991.98px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .footer-main {
    padding: 2.7rem 0 2.3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center; /* Center on mobile as well */
  }
}




/* ===== WHATSAPP FLOATING WIDGET ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.whatsapp-widget img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  outline: none;
}

.whatsapp-widget:after {
  content: "WhatsApp Us";
  position: absolute;
  right: 100%;
  bottom: 50%;
  transform: translateY(50%);
  padding: 6px 12px;
  margin-right: 10px;
  background-color: #A91E21;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.whatsapp-widget:hover:after,
.whatsapp-widget:focus-visible:after {
  opacity: 1;
  visibility: visible;
  transform: translateY(calc(50% - 3px));
}

@media (max-width: 480px) {
  .whatsapp-widget {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-widget:after {
    content: none;
  }
}
