:root {
  --force-yellow: #fff8dc;
  --force-gold: #ffd700;
  --force-red: #cc0000;
  --force-hover-red: #ff4c4c;
  --font-main: "Montserrat", sans-serif;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* Body */
body {
  font-family: var(--font-main);
  background-color: #fffbea;
  color: #333;
  padding-top: 60px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--force-gold), var(--force-yellow));
  color: #333;
  padding: 50px 20px;
  text-align: center;
  box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}
header h1 {
  font-size: 2em;
  font-weight: 700;
  color: var(--force-red);
  text-shadow: 0 0 4px rgba(255, 76, 76, 0.2);
}
header img.logo {
  width: 100px;
  max-height: 100px;
  object-fit: contain;
}
.caption,
.tagline,
.helpline {
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
}
.caption {
  color: var(--force-red);
}
.tagline {
  color: #333;
}
.helpline {
  color: var(--force-red);
}
.helpline a {
  color: var(--force-red);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.helpline a:hover {
  color: var(--force-hover-red);
  text-shadow: 0 0 3px rgba(255, 76, 76, 0.3);
  text-decoration: underline;
}
.service-areas {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 40px;
  background-color: #fff8e1;
}

.service-areas h2 {
  color: var(--force-red);
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
}

.service-areas .intro,
.service-areas .intro-detail {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  text-align: left;
  margin-bottom: 20px;
}

.service-areas .region {
  margin-bottom: 40px;
}

.service-areas .region h3 {
  color: var(--force-red);
  font-size: 1.4em;
  margin-bottom: 12px;
}

.service-areas .region p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #333;
  text-align: left;
  margin-bottom: 0;
  padding-left: 10px;
}

.service-areas strong {
  display: block;
  margin-bottom: 6px;
  color: var(--force-red);
}

.service-areas hr {
  margin: 30px 0;
  border: none;
  border-top: 2px solid #ccc;
}

/* Call Button */
.call-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(145deg, var(--force-yellow), var(--force-gold));
  color: #333;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid var(--force-hover-red);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}
.call-button:hover {
  background: var(--force-hover-red);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 76, 76, 0.4);
}

/* Sticky Bar */
.sticky-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  padding: 12px 20px;
  background: linear-gradient(90deg, #fff8dc, #ffe680);
  color: #333;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.sticky-bar:hover {
  background: linear-gradient(90deg, #ffe680, #ffd700);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.sticky-bar a {
  color: var(--force-red);
  font-weight: bold;
  text-decoration: none;
}
.sticky-bar a:hover {
  color: var(--force-hover-red);
  text-shadow: 0 0 3px rgba(255, 76, 76, 0.3);
  text-decoration: underline;
}

/* Navigation */
nav {
  background: var(--force-yellow);
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
nav a {
  margin: 0 15px;
  color: var(--force-red);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
nav a:hover {
  color: var(--force-hover-red);
  border-bottom: 2px solid var(--force-hover-red);
}

/* Main Content */
main {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}
section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* Contact Hero Section */
.contact-hero {
  padding: 50px 30px;
  background-color: #ffe5e5;
  border: 2px solid var(--force-red);
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-hero h2 {
  color: var(--force-red);
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-lead {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}
.contact-call-button {
  display: inline-block;
  background-color: var(--force-red);
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.contact-call-button:hover {
  background-color: var(--force-hover-red);
  box-shadow: 0 0 10px rgba(255, 76, 76, 0.3);
}
.contact-quote {
  margin-top: 25px;
  font-size: 1.1em;
  color: #333;
  font-style: italic;
}

/* Contact Services Section */
.contact-services {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.contact-services h2 {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--force-red);
  margin-bottom: 20px;
  text-align: center;
}
.contact-services p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.05em;
  color: #333;
}
.contact-services strong {
  font-weight: 600;
  color: var(--force-red);
}
.contact-inline-call {
  color: var(--force-red);
  font-weight: bold;
  text-decoration: none;
}
.contact-inline-call:hover {
  color: var(--force-hover-red);
  text-decoration: underline;
}
.contact-final-journey {
  margin-top: 30px;
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 1.05em;
  color: #333;
}

/* Floating Icons */
.float-icon {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: var(--force-gold);
}
.call-icon {
  right: 80px;
}
.whatsapp-icon {
  right: 20px;
}
.float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

/* Go to Top Button */
#goTopBtn {
  position: fixed;
  bottom: 90px;
  right: 80px;
  z-index: 999;
  background-color: var(--force-red);
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#goTopBtn:hover {
  background-color: var(--force-hover-red);
  box-shadow: 0 0 12px rgba(255, 76, 76, 0.4);
}
#goTopBtn svg {
  fill: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}
#goTopBtn:hover svg {
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/* Mobile Responsive */
@media (max-width: 600px) {
  header {
    padding: 30px 15px;
  }
  h1 {
    font-size: 1.8em;
  }
  .logo {
    width: 80px;
    max-height: 80px;
    margin-bottom: 10px;
  }
  main {
    padding: 20px 15px;
  }
  section {
    padding: 20px 15px;
  }
  section li {
    font-size: 0.95em;
    padding: 12px 0;
  }
  p {
    font-size: 1em;
    line-height: 1.6;
  }
  .call-button,
  .whatsapp-button,
  .contact-call-button {
    width: 90%;
    font-size: 1em;
    padding: 10px 20px;
  }
  footer {
    font-size: 0.85em;
    padding: 15px;
  }
  .float-icon {
    width: 45px;
    height: 45px;
  }
  .call-icon {
    right: 80px;
    bottom: 20px;
  }
  .whatsapp-icon {
    right: 20px;
    bottom: 20px;
  }
  #goTopBtn {
    right: 80px;
    bottom: 90px;
  }
  nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .contact-hero h2,
  .contact-services h2 {
    font-size: 1.6em;
  }
  .contact-lead,
  .contact-services p,
  .contact-final-journey {
    font-size: 1em;
    line-height: 1.7;
  }
  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
  @media (max-width: 600px) {
    .menu-toggle {
      display: block;
    }

    .mobile-menu.active {
      display: flex;
    }
    .service-areas {
      padding: 30px 15px;
    }

    .service-areas h2 {
      font-size: 1.6em;
    }

    .service-areas .region h3 {
      font-size: 1.2em;
    }

    .service-areas .region p {
      font-size: 1em;
      line-height: 1.7;
      padding-left: 0;
      margin-bottom: 12px;
    }

    .service-areas strong {
      font-size: 1em;
      margin-bottom: 4px;
    }
  }
}
:root {
  --force-yellow: #fff8dc;
  --force-gold: #ffd700;
  --force-red: #cc0000;
  --force-hover-red: #ff4c4c;
  --font-main: "Montserrat", sans-serif;
}
/* ===============================
				GLOBAL RESET & BASE STYLES
				=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
header img.logo {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: #fffbea;
  color: #333;
  padding-top: 60px;
}

/* Sticky Top Bar */
.sticky-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Optional: allows wrapping on small screens */
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  padding: 12px 20px;
  background: linear-gradient(90deg, #fff8dc, #ffe680);
  color: #333;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sticky-bar:hover {
  background: linear-gradient(90deg, #ffe680, #ffd700);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.sticky-bar a {
  color: #cc0000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.sticky-bar a:hover {
  color: #ff4c4c;
  text-shadow: 0 0 3px rgba(255, 76, 76, 0.3);
  text-decoration: underline;
}

/* Navigation */
nav {
  background: var(--force-yellow);
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
nav a {
  margin: 0 15px;
  color: var(--force-red);
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}
nav a:hover {
  color: var(--force-hover-red);
  border-bottom: 2px solid var(--force-hover-red);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--force-gold), var(--force-yellow));
  color: #333;
  padding: 50px 20px;
  text-align: center;
  box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}
header img.logo {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}
/* Header Branding Styles */
h1 {
  font-size: 2em;
  font-weight: 700;
  margin: 6px 0;
  text-align: center;
  text-shadow: 0.5px 0.5px 2px rgba(255, 255, 255, 0.5);
  color: #333;
  font-family: "Montserrat", sans-serif;
}

.caption {
  font-size: 1.1em;
  font-weight: 600;
  color: #cc0000; /* FORCE Red */
  margin: 4px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.tagline {
  font-size: 1.1em;
  font-weight: 600;
  color: #333; /* Neutral black */
  margin: 4px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.helpline {
  font-size: 1.1em;
  font-weight: 700;
  color: #cc0000; /* FORCE Red */
  margin: 6px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.helpline a {
  color: #cc0000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.helpline a:hover {
  color: #ff4c4c;
  text-shadow: 0 0 3px rgba(255, 76, 76, 0.3);
  text-decoration: underline;
}

.call-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(145deg, var(--force-yellow), var(--force-gold));
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 2px solid var(--force-hover-red);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.call-button:hover {
  background: var(--force-hover-red);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 76, 76, 0.4);
}

/* Main Content */
main {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: var(--font-main);
}
button {
  background: var(--force-red);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: var(--force-hover-red);
}

.contact-info p {
  margin: 8px 0;
}

blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid var(--force-red);
  padding-left: 15px;
  margin-top: 20px;
}

/* Footer */
footer {
  padding: 20px;
  font-size: 0.9em;
  color: #555;
  text-align: center;
  background: var(--force-yellow);
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}
#goTopBtn {
  position: fixed;
  bottom: 90px; /* Above call/WhatsApp icons */
  right: 80px; /* Avoids overlap */
  z-index: 999;
  background-color: #cc0000; /* FORCE red */
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#goTopBtn:hover {
  background-color: #ff4c4c;
  box-shadow: 0 0 12px rgba(255, 76, 76, 0.4);
}

#goTopBtn svg {
  fill: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); /* Golden aura glow */
}

#goTopBtn:hover svg {
  filter: drop-shadow(
    0 0 10px rgba(255, 215, 0, 0.8)
  ); /* Brighter glow on hover */
}

/* Floating Icons */
.float-icon {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: var(--force-gold);
}
.call-icon {
  right: 80px;
}
.whatsapp-icon {
  right: 20px;
}
.float-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}
.menu-toggle {
  display: none;
  background-color: #cc0000;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1.2em;
  font-weight: bold;
  width: 100%;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}
/* Responsive */
@media (max-width: 600px) {
  /* Header adjustments */
  .sticky-bar {
    flex-direction: column;
    font-size: 0.95em;
    padding: 8px 10px;
    text-align: center;
  }
  header {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8em;
  }

  .logo {
    width: 80px;
    max-height: 80px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
  }

  /* Main content */
  main {
    padding: 20px 15px;
  }

  section {
    padding: 20px 15px;
  }

  section li {
    font-size: 0.95em;
    padding: 12px;
  }

  p {
    font-size: 1em;
    line-height: 1.6;
  }

  /* Buttons */
  .call-button,
  .whatsapp-button {
    width: 90%;
    font-size: 1em;
    padding: 10px 20px;
  }

  /* Footer */
  footer {
    font-size: 0.85em;
    padding: 15px;
  }

  /* Floating icons */
  .float-icon {
    width: 45px;
    height: 45px;
  }

  .call-icon {
    right: 80px;
    bottom: 20px;
  }

  .whatsapp-icon {
    right: 20px;
    bottom: 20px;
  }

  /* Go to top button */
  #goTopBtn {
    right: 80px;
    bottom: 90px;
  }

  /* Navigation */
  nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff8dc;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .mobile-menu a {
    color: #cc0000;
    text-decoration: none;
    padding: 10px 0;
    font-weight: 600;
    border-bottom: 1px solid #ffd700;
  }

  .mobile-menu a:hover {
    color: #ff4c4c;
  }
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #fff8dc;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.mobile-menu a {
  color: #cc0000;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid #ffd700;
}

.mobile-menu a:hover {
  color: #ff4c4c;
}
