* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Gilroy';
}

html, body {
height: 100%;
width: 100%;
}


:root {
    --primary-color: #d40203;
    --dark-color: #0a0a0a;
    --light-color: #f8f9fa;
    --text-color: #777;
    --heading-color: #222;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    font-weight: 600;
}
/* =========================
   NAVBAR
========================= */

.custom-navbar {
  height: 80px;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
}

.navbar-brand {
  font-size: 26px;
  font-weight: 700;
  color: #fff !important;
}

.navbar-brand span {
  color: var(--primary-color);
}

/* =========================
   DESKTOP MENU
========================= */

.desktop-menu {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.desktop-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}

.desktop-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
  
}

.desktop-menu li a:hover::after {
  width: 100%;
}

.desktop-menu li a:hover {
  color: var(--primary-color);
  
}

.desktop-contact {
  padding: 8px 22px;
  border: 1px solid var(--primary-color);
}

.desktop-contact:hover {
  background: var(--primary-color);
  color: #fff !important;
}

/* =========================
   HAMBURGER
========================= */

.navbar-toggler {
  border: none;
  padding: 0;
}

.hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

/* =========================
   FULLSCREEN MOBILE MENU
========================= */

.side-nav {
position: fixed;
  top: 0;
  right: 0;                 /* ⭐ anchor to right */
  height: 100vh;
  width: 66vw;              /* ⭐ 66% width */
  background: #0a0a0a;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 1050;
}

.side-nav.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 38px;
  color: #fff;
}

.menu-content {
  height: auto;
  padding: 120px 10vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

/* .menu-links li {
  margin-bottom: 32px;
} */

.menu-links a {
  font-size: 27px;
  color: #fff;
  text-decoration: none;
}

.menu-links a:hover {
  color: var(--primary-color);
}

.menu-contact {
  padding: 14px 0px;
  border: 2px solid var(--primary-color);
  color: #fff;
  text-decoration: none;
  width: 50%;
    text-align: center;
  transition: all 0.35s ease;

}

.menu-contact:hover {
  background: var(--primary-color);
  color: #fff;
}

/* =========================
   OVERLAY
========================= */

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1040;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

/* Navbar Logo */
.navbar-logo {
  height: 56px;        /* adjust if needed */
  width: auto;
  display: block;
}















/* =========================
   CONTACT HERO – REDESIGNED
========================= */

.contact-hero {
  position: relative;
  min-height: 75vh;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* OPTIONAL BACKGROUND IMAGE (UNCOMMENT IF YOU WANT)
.contact-hero {
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
    url("https://images.unsplash.com/photo-1492724441997-5dc865305da7");
  background-size: cover;
  background-position: center;
}
*/

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.9)
  );
  z-index: 1;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Eyebrow */
.contact-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Heading */
.contact-hero h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 26px;
}

/* Text */
.contact-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  /* max-width: 620px; */
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    min-height: 65vh;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}


/* =========================
   LIGHT CONTACT FORM
========================= */

.contact-form-light {
  background: #f6f6f4; /* eye-relaxing warm light */
  padding: 50px 0;
}

/* Grid */
.contact-light-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}

/* TEXT */
.contact-light-text span {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--primary-color);
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.contact-light-text h2 {
  font-size: 44px;
  margin-bottom: 22px;
  color: #111;
}

.contact-light-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 420px;
}

/* FORM CARD */
.contact-light-form {
  background: #ffffff;
  padding: 70px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Inputs */
.input-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.input-field label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.input-field input,
.input-field textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 15px;
  background: transparent;
  outline: none;
}

.input-field input:focus,
.input-field textarea:focus {
  border-color: var(--primary-color);
}

/* Button */
.light-submit-btn {
  margin-top: 20px;
  padding: 16px 48px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: #111;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.light-submit-btn:hover {
  background: var(--primary-color);
  /* color: #000; */
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .contact-light-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-light-form {
    padding: 50px;
  }
}

@media (max-width: 576px) {
  .contact-form-light {
    /* padding: 90px 0; */
  }

  .contact-light-text h2 {
    font-size: 32px;
  }

  .contact-light-form {
    padding: 40px;
  }
}















/* =========================
   STACKED FOOTER
========================= */

.site-footer {
  background: #0a0a0a;
  color: #bbb;
  padding: 30px 0 10px;
  text-align: center;
}

/* Brand block */
.footer-brand-centered {
  max-width: 720px;
  margin: 0 auto 15px;
}

.footer-brand-centered h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-brand-centered h2 span {
  color: var(--primary-color);
}

.footer-brand-centered p {
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
}

/* Contact block */
.footer-contact-centered p {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-contact-centered a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-centered a:hover {
  color: var(--primary-color);
}

/* Socials */
.footer-socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-socials a {
  color: #bbb;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

.footer-bottom span {
  font-size: 13px;
  color: #777;

}

.footer-bottom span a {
  text-decoration: none;
  color: #777;

}

.footer-bottom p {
  font-size: 13px;
  color: #777;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px 30px;
  }

  .footer-brand-centered h2 {
    font-size: 32px;
  }

  .footer-brand-centered p {
    font-size: 15px;
  }
}


.footer-logo-link {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* keeps your logo color */
}


.footer-logo {
  height: 56px;        /* adjust if needed */
  width: auto;
  /* display: block; */
  margin-bottom: 10px;
}


.terms-and-policy ul{
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  margin-top: 5px;
  gap: 22px;
  padding-left: 0;
  list-style: none;

}

.terms-and-policy a {
  text-decoration: none;
  color: #777;
      font-size: 13px;

}






/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: rgb(212, 2, 3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(212, 2, 3, 0.45);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(212, 2, 3, 0.6);
}

/* Pulse Effect */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 2, 3, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}