/* ============================================
   FONT IMPORTS
   ============================================ */
@font-face {
  font-family: "Louis George Cafe";
  src: url(../fonts/LouisGeorgeCafe.woff) format("woff"),
    url(../fonts/LouisGeorgeCafe.woff2) format("woff2");
}

@font-face {
  font-family: "Catchye Demo";
  src: url(../fonts/CatchyeDemo.woff) format("woff"),
    url(../fonts/CatchyeDemo.woff2) format("woff2");
}

@font-face {
  font-family: "Metropolis";
  src: url(../fonts/Metropolis-SemiBold.woff) format("woff"),
    url(../fonts/Metropolis-SemiBold.woff2) format("woff2");
}

@font-face {
  font-family: "Montserrat";
  src: url(./fonts/Montserrat-Thin.woff.woff) format("woff"),
    url(./fonts/Montserrat-Thin.woff.woff2) format("woff2");
}


/* ============================================
   GLOBAL RESET & BASICS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Added to match security */
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}


/* ============================================
   NAVIGATION - MATCHING SECURITY.HTML
   ============================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;  /* Added to match security */
  padding: 2em;         /* Already correct */
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 45px;
  margin-top: 0;        /* Already correct */
}

.logo img {
  height: 30px;         /* Match security - was 30px, kept */
  width: auto;
}

.menu-btn {
  cursor: pointer;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 0;        /* Changed from .3em to 0 to match security */
  height: 20px;         /* Already correct */
}


/* ============================================
   HERO SECTION / TOP BANNER
   ============================================ */
.top {
  background-image: url(../img/contact-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding-bottom: 8em;
  margin-bottom: 0;
  overflow: hidden;
}

.heading {
  color: #f2cf00;
  font-family: "Catchye Demo";
  font-size: 5rem;
  margin-top: 0.3em;
}

.subtext {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  font-family: "Louis George Cafe";
}

.cnt-txt {
  font-size: 1.7rem;
  letter-spacing: 0.5mm;
  color: #fff;
}

.cnt-words {
  color: rgba(255, 255, 255, 0.8);
  padding: 2em 0;
  font-size: 1rem;
  font-family: "Louis George Cafe";
  letter-spacing: 0.1mm;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 2em;
  margin-top: -4em;
}

/* ---- Buttons ---- */
.btn-primary {
  margin-top: 2em;
  background: #de9171;
  border: none;
  border-radius: 0;
  padding: 0.75rem 2rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1mm;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #c47a5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(222, 145, 113, 0.3);
  text-decoration: none;
}

.btn-primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* ---- Hide Utility ---- */
.hide {
  display: none;
}


/* ============================================
   CONTACT FORM
   ============================================ */
.cnt-form {
  color: #fff;
  font-family: "Louis George Cafe";
  padding: 0;
}

.cnt-form .form-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cnt-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #fff;
  padding: 0.75rem 1rem;
}

.cnt-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 0.27 !important;
}

.cnt-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #de9171;
  box-shadow: 0 0 0 0.25rem rgba(222, 145, 113, 0.25);
}

.cnt-form .form-control:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cnt-form select.form-control option {
  color: #000;
  background-color: #fff;
}

.cnt-form textarea.form-control {
  min-height: 100px;
}

.validation {
  margin-top: 0.5em;
  color: #f66;
}

/* ---- Alerts ---- */
.alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 10px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


/* ============================================
   SIDEBAR (Placeholder)
   ============================================ */


/* ============================================
   FOOTER
   ============================================ */
footer.footer-btm {
  background-image: url(../img/footer-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 3em 4em;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
}

/* ---- Logo (left aligned) ---- */
.footer-logo-wrapper {
  flex-shrink: 0;
  padding-top: 0.5em;
}

.footer-logo {
  display: block;
}

.ft-logo {
  height: 45px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.ft-logo:hover {
  opacity: 1;
}

/* ---- 4 Divs in the Middle ---- */
.footer-links-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 4em;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 120px;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5mm;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.footer-email {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #de9171;
}

/* ---- Menu List ---- */
.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 6px;
}

.footer-menu-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8mm;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-menu-list li a:hover {
  color: #de9171;
}

/* ---- Dropdown in Menu ---- */
.footer-menu-list .footer-dropdown {
  position: relative;
  display: block;
}

.footer-menu-list .footer-dropbtn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8mm;
  background: none;
  border: none;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.footer-menu-list .footer-dropbtn:hover {
  color: #de9171;
}

.footer-menu-list .footer-caret {
  display: inline-block;
  font-size: 8px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.footer-menu-list .footer-dropdown:hover .footer-caret,
.footer-menu-list .footer-dropdown.active .footer-caret {
  transform: rotate(180deg);
  color: #de9171;
}

/* Dropdown Content */
.footer-menu-list .footer-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 0;
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  min-width: 140px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  margin-top: 2px;
}

.footer-menu-list .footer-dropdown-content li {
  margin: 0;
  padding: 0;
}

.footer-menu-list .footer-dropdown-content a {
  display: block;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.6mm;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.footer-menu-list .footer-dropdown-content a:hover {
  color: #de9171;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #de9171;
}

/* Show dropdown on hover (desktop) */
.footer-menu-list .footer-dropdown:hover .footer-dropdown-content {
  display: block;
}

/* Show dropdown when active (mobile/click) */
.footer-menu-list .footer-dropdown.active .footer-dropdown-content {
  display: block !important;
}

/* ---- Backdrop Overlay ---- */
.footer-dropdown-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.footer-dropdown-overlay.active {
  display: block;
}


/* ============================================
   HONEYPOT (hidden from users, visible to bots)
   ============================================ */
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}


/* ============================================
   RESPONSIVE BREAKPOINTS - MATCHING SECURITY.HTML
   ============================================ */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .footer-links-wrapper {
    gap: 2.5em;
  }

  .footer-col {
    min-width: 100px;
  }
}

/* ---- 992px ---- */
@media (max-width: 992px) {
  .heading {
    font-size: 4rem;
  }

  .col-sm-6 {
    width: 100%;
    max-width: 100%;
  }
}

/* ---- 832px ---- */
@media (max-width: 832px) {
  .col-sm-6 {
    width: 70%;
  }
}

/* ---- 768px - MATCHING SECURITY NAV ---- */
@media (max-width: 768px) {
  /* === NAV MATCHING SECURITY.HTML === */
  .nav {
    padding: 0.5em;  /* Changed to match security */
    margin-top: 1em;
  }

  .logo img {
    height: 30px;  /* Changed from 32px to 22px to match security */
    width: auto;
  }

  .menu-btn {
    height: 19px;  /* Changed from 22px to 16px to match security */
    width: auto;
  }

  .menu-btn text {
    font-size: 16px !important;  /* Changed from 18px to 16px to match security */
  }

  /* === OTHER MOBILE STYLES === */
  .container {
    padding: 0 15px !important;
  }

  .heading {
    font-size: 5rem;
    margin-top: 0.2em;
  }

  .cnt-words {
    font-size: 0.9rem;
    margin-bottom: 1.5em;
    padding: 1em 0;
  }

  .col-sm-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .cnt-form .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  /* ---- Sidebar ----
     Intentionally left to css/sidebar.css (same as design.html)
     so the mobile menu is aligned identically across pages. */

  /* ---- Footer Mobile ---- */
  footer.footer-btm {
    padding: 2em 1.5em;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  .footer-logo-wrapper {
    padding-top: 0;
  }

  .ft-logo {
    height: 35px;
  }

  .footer-links-wrapper {
    justify-content: center;
    gap: 2em 3em;
    width: 100%;
  }

  .footer-col {
    min-width: 120px;
    flex: 0 0 auto;
    text-align: center;
  }

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 1.2mm;
  }

  .footer-col-text {
    font-size: 11px;
  }

  .footer-menu-list li a {
    font-size: 11px;
    letter-spacing: 0.6mm;
  }

  .footer-menu-list .footer-dropbtn {
    font-size: 11px;
    letter-spacing: 0.6mm;
  }

  /* Dropdown on mobile - centered */
  .footer-menu-list .footer-dropdown-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 200px;
    max-width: 85vw;
    z-index: 99999;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .footer-menu-list .footer-dropdown-content li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer-menu-list .footer-dropdown-content a {
    padding: 12px 24px;
    font-size: 14px;
    text-align: center;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
  }

  .footer-menu-list .footer-dropdown-content a:last-child {
    border-bottom: none;
  }

  .footer-menu-list .footer-dropdown-content a:hover {
    border-left: none;
    background: rgba(255, 255, 255, 0.08);
    color: #de9171;
  }

  .footer-menu-list .footer-dropdown.active .footer-dropdown-content {
    display: block !important;
  }

  .footer-menu-list .footer-dropdown.active .footer-caret {
    transform: rotate(180deg);
  }
}

/* ---- 480px - MATCHING SECURITY NAV ---- */
@media (max-width: 480px) {
  /* === NAV MATCHING SECURITY.HTML === */
  .logo img {
    height: 25px;  /* Changed from 26px to 18px to match security */
    width: auto;
    margin-left: 1em;
  }

  .menu-btn {
    margin-top: -.2em;
    height: 25px;  /* Changed from 18px to 12px to match security */
    width: auto;   /* Changed from 45px to 35px to match security */
  }

  .menu-btn text {
    font-size: 12px !important;  /* Changed from 16px to 12px to match security */
  }

  /* === OTHER SMALL MOBILE STYLES === */
  .heading {
    font-size: 3.2rem;
  }

  .cnt-words {
    font-size: 0.8rem;
    padding: 0.5em 0;
  }

  .cnt-form {
    padding: 0;
  }

  .cnt-form .form-control {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
  }

  .cnt-form .form-label {
    font-size: 0.85rem;
  }

  .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  /* ---- Sidebar ----
     Intentionally left to css/sidebar.css (same as design.html)
     so the mobile menu is aligned identically across pages. */

  /* ---- Footer ---- */
  footer.footer-btm {
    padding: 1.5em 0.8em;
  }

  .ft-logo {
    height: 28px;
  }

  .footer-links-wrapper {
    gap: 1.2em 1.5em;
  }

  .footer-col {
    min-width: 80px;
  }

  .footer-col-title {
    font-size: 8px;
    letter-spacing: 0.8mm;
    margin-bottom: 6px;
    padding-bottom: 4px;
  }

  .footer-col-text {
    font-size: 9px;
    line-height: 1.5;
  }

  .footer-menu-list li a {
    font-size: 9px;
    letter-spacing: 0.4mm;
  }

  .footer-menu-list .footer-dropbtn {
    font-size: 9px;
    letter-spacing: 0.4mm;
  }

  .footer-menu-list .footer-dropdown-content {
    min-width: 160px;
    max-width: 92vw;
    padding: 6px 0;
  }

  .footer-menu-list .footer-dropdown-content a {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* ---- 360px (Extra Small) - MATCHING SECURITY NAV ---- */
@media (max-width: 360px) {
  /* === NAV MATCHING SECURITY.HTML === */
  .logo img {
    height: 25px;  /* Adjusted to scale proportionally */
    width: auto;
  }

  

  .menu-btn {
    height: 18px;  /* Adjusted to scale proportionally */
    width: auto;   /* Adjusted to scale proportionally */
    margin-top: .1em;
  }

  .menu-btn text {
    font-size: 20px !important;
  }

  /* === OTHER STYLES === */
  .heading {
    font-size: 3.2rem;
    margin-bottom: .3em;
  }
}

/* ---- Landscape Mobile - MATCHING SECURITY NAV ---- */
@media (max-height: 600px) and (orientation: landscape) {
  .top {
    min-height: auto;
    padding-bottom: 3em;
  }

  .heading {
    font-size: 2.5rem;
    margin-top: 0.1em;
  }

  .nav {
    padding: 0.5em;  /* Changed to match security */
  }

  .cnt-form .form-control {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }

  .cnt-form textarea.form-control {
    min-height: 80px;
  }
}