/* =========================================================
   CONTACT PAGE STYLES — PREMIUM (JS SAFE)
   - Keeps your existing class names & JS hooks
   - Premium glass + subtle gradients + clean spacing
========================================================= */

/* =========================
   LOGO (Sticky-safe)
========================= */
.logo-image{
  height: clamp(46px, 4.6vw, 96px);
  width: auto;
  object-fit: contain;
  display: block;
  transition: height .25s ease, transform .25s ease, opacity .25s ease;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.header.sticky .logo-image{
  height: clamp(44px, 4.2vw, 80px);
}

.footer-logo-image{
  max-height: 150px;
  width: auto;
  margin-bottom: 20px;
}

/* =========================
   HERO (Simple Hero)
========================= */
.simple-hero{
  position: relative;
  padding: 120px 0 92px;
  overflow: hidden;
  color: #fff;
  min-height: 60vh;
  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.66)),
    url('image - 2026-01-04T072020.069.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Premium atmospheric glow */
.simple-hero::before,
.simple-hero::after{
  content:"";
  position:absolute;
  inset:-30%;
  pointer-events:none;
  z-index:0;
  filter: blur(40px);
  opacity: .85;
}

.simple-hero::before{
  background: radial-gradient(circle, rgba(0,107,214,.18), transparent 60%);
  transform: translate(-8%, -12%);
}

.simple-hero::after{
  background: radial-gradient(circle, rgba(251,191,36,.14), transparent 60%);
  transform: translate(18%, -6%);
}

/* Hero content */
.simple-hero .container{
  position: relative;
  z-index: 2;
}

.simple-hero-content{
  max-width: 760px;
}

/* Tag */
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: .85rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);

  margin-bottom: 18px;
}

.simple-hero h1{
  margin: 0 0 14px;
  font-size: clamp(2.45rem, 4.6vw, 3.9rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1px;

  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(251,191,36,.92) 58%,
    rgba(0,107,214,.95) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.simple-hero p{
  margin: 0 0 22px;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255,255,255,.84);
  max-width: 62ch;
}

/* Hero CTA depth */
.simple-hero .btn{
  box-shadow: 0 16px 44px rgba(0,0,0,.30);
  position: relative;
  z-index: 2;
}

/* WhatsApp float positioning */
.whatsapp-float{
  right: 30px;
  bottom: 30px;
  left: auto;
}

/* =========================
   CONTACT SECTION (Premium)
========================= */
.contact-section{
  padding: 86px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,107,214,.06), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(251,191,36,.05), transparent 50%),
    #f8f9fa;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

/* Cards */
.contact-info,
.contact-form{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 42px;

  box-shadow:
    0 18px 55px rgba(2, 8, 23, .10),
    0 1px 0 rgba(255,255,255,.65) inset;

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-info:hover,
.contact-form:hover{
  transform: translateY(-6px);
  box-shadow:
    0 26px 70px rgba(2, 8, 23, .14),
    0 1px 0 rgba(255,255,255,.70) inset;
  border-color: rgba(0,107,214,.18);
}

/* =========================
   FORM (Matches JS validation)
========================= */
.form-group{
  margin-bottom: 22px;
  position: relative;
}

.form-label{
  display:block;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(15,23,42,.88);
  font-size: .95rem;
  letter-spacing: .15px;
}

.form-control{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;

  border: 1px solid rgba(15,23,42,.14);
  background: rgba(248,250,252,.92);
  color: rgba(15,23,42,.92);

  font-family: 'Jost', sans-serif;
  font-size: 1rem;

  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.form-control::placeholder{
  color: rgba(15,23,42,.40);
}

.form-control:focus{
  outline: none;
  border-color: rgba(0,107,214,.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,107,214,.14);
}

.form-control.error{
  border-color: rgba(255,56,96,.80);
  box-shadow: 0 0 0 4px rgba(255,56,96,.10);
}

textarea.form-control{
  min-height: 150px;
  resize: vertical;
}

/* Optional: make the form submit button feel premium if it exists */
.contact-form .btn{
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* =========================
   CONTACT INFO ITEMS
========================= */
.contact-item{
  display:flex;
  align-items:flex-start;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.contact-item:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;

  background:
    linear-gradient(135deg, rgba(0,107,214,.15), rgba(0,107,214,.06));
  border: 1px solid rgba(0,107,214,.18);

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
  color: #006bd6;
  font-size: 1.2rem;

  box-shadow: 0 12px 26px rgba(0,107,214,.12);
}

.contact-details h4{
  margin: 0 0 8px;
  color: rgba(15,23,42,.92);
  font-size: 1.08rem;
  letter-spacing: .1px;
}

.contact-details p{
  color: rgba(15,23,42,.68);
  margin: 0 0 6px;
  font-size: .98rem;
  line-height: 1.55;
}

.contact-details a{
  color: #006bd6;
  transition: color .2s ease, text-decoration-color .2s ease;
  text-decoration: underline;
  text-decoration-color: rgba(0,107,214,.22);
  text-underline-offset: 3px;
}

.contact-details a:hover{
  color: #dbae26;
  text-decoration-color: rgba(219,174,38,.45);
}

/* =========================
   MAP
========================= */
.map-container{
  margin-top: 50px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 55px rgba(2, 8, 23, .10);
}

.map-container iframe{
  width: 100%;
  height: 420px;
  border: 0;
}

/* =========================
   OFFICE HOURS
========================= */
.office-hours{
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;

  background:
    linear-gradient(180deg, rgba(0,107,214,.06), rgba(0,107,214,.03));
  border: 1px solid rgba(0,107,214,.14);
}

.office-hours h4{
  color: #006bd6;
  margin: 0 0 14px;
  font-size: 1.18rem;
  letter-spacing: .15px;
}

.hours-item{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(15,23,42,.18);
  font-size: .95rem;
}

.hours-item:last-child{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

.hours-item span:first-child{
  color: rgba(15,23,42,.88);
  font-weight: 700;
}

.hours-item span:last-child{
  color: rgba(15,23,42,.62);
}

/* =========================
   RESPONSE TIME (Premium panel)
========================= */
.response-time{
  margin-top: 26px;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(135deg, rgba(0,107,214,1), rgba(0,82,163,1));
  box-shadow: 0 20px 60px rgba(0,107,214,.20);
}

.response-time i{
  color:#fff;
  font-size: 2.4rem;
  margin-bottom: 12px;
  opacity: .92;
}

.response-time h4{
  color:#fff;
  margin-bottom: 8px;
  letter-spacing: .15px;
}

.response-time p{
  color: rgba(255,255,255,.90);
  margin: 0;
  font-size: .98rem;
  line-height: 1.55;
}

/* =========================
   FAQ (Accordion — JS toggle)
========================= */
.faq-wrap{
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item{
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  overflow: hidden;

  box-shadow:
    0 14px 45px rgba(2, 8, 23, .08),
    0 1px 0 rgba(255,255,255,.70) inset;

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.faq-item:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(2, 8, 23, .12),
    0 1px 0 rgba(255,255,255,.75) inset;
  border-color: rgba(0,107,214,.16);
}

.faq-question{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;

  padding: 20px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;

  font-weight: 700;
  font-size: 1.03rem;
  color: rgba(15,23,42,.90);

  transition: background .2s ease, color .2s ease;
}

.faq-item.active{
  border-color: rgba(0,107,214,.24);
  box-shadow: 0 24px 70px rgba(2, 8, 23, .14);
}

.faq-item.active .faq-question{
  color: #006bd6;
  background: rgba(0,107,214,.04);
}

.faq-chevron{
  font-size: .95rem;
  color: rgba(15,23,42,.55);
  transition: transform .25s ease, color .25s ease;
}

.faq-item.active .faq-chevron{
  transform: rotate(180deg);
  color: #006bd6;
}

.faq-answer{
  padding: 0 22px 20px;
  display: none;
}

.faq-item.active .faq-answer{
  display: block;
  animation: fadeIn .28s ease;
}

.faq-answer p{
  margin: 0;
  color: rgba(17, 24, 39, 0.78);
  line-height: 1.75;
  font-size: 1rem;
}

@keyframes fadeIn{
  from{ opacity:0; transform: translateY(-8px); }
  to{ opacity:1; transform: translateY(0); }
}

/* =========================
   MOBILE MENU (JS toggle safe)
   Uses: .nav-toggle.active + .nav-menu.active
========================= */
.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 26px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;

  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-toggle span{
  display:block;
  height: 2px;
  width: 100%;
  background-color: rgba(255,255,255,.92);
  border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease;
}

.header.sticky .nav-toggle span{
  background-color: rgba(255,255,255,.92);
}

.nav-toggle.active span:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2){
  opacity: 0;
}
.nav-toggle.active span:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

/* base */
.nav-menu{
  display:flex;
  align-items:center;
  transition: all .3s ease;
}

@media (max-width: 992px){
  .nav-toggle{ display:flex; }

  .nav-menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;

    background:
      radial-gradient(circle at 20% 10%, rgba(251,191,36,.12), transparent 45%),
      linear-gradient(135deg, rgba(0,107,214,1) 0%, rgba(0,82,163,1) 100%);

    flex-direction: column;
    padding: 120px 26px 26px;
    transition: right .3s ease;
    overflow-y: auto;
    z-index: 1000;

    border-left: 1px solid rgba(255,255,255,.14);
    box-shadow: -24px 0 70px rgba(0,0,0,.35);
    display: none;
  }

  .nav-menu.active{
    right: 0;
    display: flex;
  }

  .nav-list{
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-item{
    width: 100%;
  }

  .nav-link{
    color: rgba(255,255,255,.95);
    display:block;
    padding: 14px 2px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 1.05rem;
    transition: padding-left .2s ease, color .2s ease, background .2s ease;
  }

  .nav-link:hover{
    color: #f7c948;
    padding-left: 12px;
  }

  .nav-link.active{
    color: #f7c948;
    border-left: 3px solid #f7c948;
    padding-left: 12px;
  }

  .cta-nav{
    margin-top: 18px;
    width: 100%;
  }

  .cta-nav .btn{
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,.96);
    color: #006bd6;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.35);
  }

  .nav-menu.active::before{
    content:"";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.52);
    z-index: -1;
  }

  body.menu-open{
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px){
  .simple-hero{
    padding: 96px 0 66px;
    min-height: 55vh;
    background-attachment: scroll;
  }

  .simple-hero .container{
    display:flex;
    align-items:center;
    min-height: 55vh;
  }

  .simple-hero-content{
    max-width: 100%;
    padding: 18px 16px;
    border-radius: 18px;

    background: rgba(0,0,0,.26);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }

  .simple-hero h1{
    font-size: clamp(2.05rem, 7.8vw, 2.75rem);
    line-height: 1.06;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
  }

  .simple-hero p{
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 16px;
    color: rgba(255,255,255,.82);
  }

  .simple-hero .btn{
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(0,0,0,.28);
  }

  .contact-info,
  .contact-form{
    padding: 30px 20px;
    border-radius: 16px;
  }

  .whatsapp-float{
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 576px){
  .simple-hero{ min-height: 50vh; }

  .contact-item{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon{
    margin-right: 0;
  }
}

@media (max-width: 380px){
  .simple-hero-content{
    padding: 16px 14px;
    border-radius: 16px;
  }
}

/* =========================================
   MOBILE HEADER + TOGGLE FIX (PREMIUM)
   Paste at END of CSS
========================================= */

@media (max-width: 992px) {

  /* Make header feel premium (not tiny) */
  .header{
    padding: 12px 0 !important;       /* taller */
  }
  .header.sticky{
    padding: 10px 0 !important;       /* still compact but not tiny */
  }

  /* Ensure navbar items align nicely */
  .navbar{
    gap: 12px;
  }

  /* Logo sizing on mobile */
  .logo-image,
  .logo-img{
    height: clamp(46px, 10vw, 62px) !important;
    max-width: 160px;
  }

  /* Toggle button premium glass + visible */
  .nav-toggle{
    display: flex !important;
    width: 44px;
    height: 42px;
    padding: 10px !important;

    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    border-radius: 14px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 10002 !important; /* above menu */
  }

  /* The hamburger sticks (WHITE for visibility) */
  .nav-toggle span{
    background-color: rgba(255,255,255,0.95) !important;
    height: 2.5px !important;
    border-radius: 999px;
  }

  /* If you also use FontAwesome icon inside toggle, force it visible */
  .nav-toggle i,
  .nav-toggle .fa,
  .nav-toggle .fas,
  .nav-toggle .fa-bars{
    color: #fff !important;
    font-size: 22px !important;
    display: inline-block !important;
    line-height: 1;
  }
}

@media (max-width: 768px) {
  /* Slightly more breathing room on small phones */
  .header{
    padding: 14px 0 !important;
  }
  .header.sticky{
    padding: 12px 0 !important;
  }

  /* Keep toggle easy to tap */
  .nav-toggle{
    width: 46px;
    height: 44px;
  }
}