* { margin:0; padding:0; box-sizing:border-box; font-family:'Montserrat',sans-serif;}
body { background:#fff; color:#111; scroll-behavior:smooth;}
a { text-decoration:none; color:inherit; }

html{
    scroll-behavior: smooth;
}

 .highlight {
      color: #0097d3;
      font-weight: 600;
    }

/* NAVBAR */
nav { display:flex; justify-content:space-between; align-items:center; padding:20px 10%; background: rgba(255,255,255,0.95); position:sticky; top:0; z-index:100; box-shadow:0 2px 10px rgba(0,0,0,0.05);}
nav .logo { font-weight:700; font-size:1.8rem; color:var(--green);}
nav ul { display:flex; gap:30px; font-family:'Montserrat',sans-serif;}
nav ul li { list-style:none; font-weight:600; position:relative; cursor:pointer; font-family:'Montserrat',sans-serif;}
nav ul li.nav-btn::after{
  display: none;
}
/* ACTIVE LINK */
nav ul li a.active{
  color:#111;
}

/* underline stays visible */
nav ul li a.active::after{
  width: 100%;
}

/* FIX: apply underline to link instead of li */
nav ul li a{
  position: relative;
}

nav ul li a::after{
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #2563eb;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav ul li a:hover::after{
  width: 100%;
}

nav ul li a.active::after{
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 200;
}

/* LINES */
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: all 0.35s ease;
}

/* HOVER EFFECT (desktop only) */
.hamburger:hover span:nth-child(2) {
  width: 70%;
}

/* ACTIVE (X ANIMATION) */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* LOGO STYLING */
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #111;
}

.logo img{
  height: 60px;
  width: auto;
  object-fit: cover;
  transition: 0.3s;
}

/* slightly smaller on mobile */
@media (max-width: 768px){
  .logo img{
    height: 50px;
  }
}


.logo img{
  transition: 0.3s;
}

.logo:hover img{
  transform: rotate(-5deg) scale(1.05);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 12px;
  padding: 8px 0;

  display: flex;
  flex-direction: column;

  box-shadow: 0 15px 40px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.25s ease;
   z-index: 999;
}

/* ITEMS */
.dropdown-menu li {
  list-style: none;
  transition: all 0.25s ease, visibility 0.25s;
}

/* LINKS */
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: 0.25s;
}

/* HOVER EFFECT */
.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: #1f8bb4;
  padding-left: 25px; /* subtle slide effect */
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown:hover > a::after {
  width: 0;
}


/* MOBILE NAV */
@media (max-width: 900px){

  nav{
    padding: 15px 6%;
  }

  .dropdown-menu {
  position: static;
  box-shadow: none;
  opacity: 1;
  pointer-events: all;
  transform: none;
  display: none;
  width: 100%;
}

.dropdown.active .dropdown-menu {
  display: block;
}

  /* SHOW HAMBURGER */
  .hamburger{
    display: flex;
  }

  /* HIDE DESKTOP MENU */
  nav ul{
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    
    background: white;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px 30px;
    gap: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  /* WHEN OPEN */
  nav ul.show{
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* NAV ITEMS */
  nav ul li{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  nav ul li:last-child{
    border-bottom: none;
  }

  /* LINKS */
  nav ul li a{
    display: block;
    width: 100%;
    font-size: 1rem;
  }

}

/*------------------------------------------------------------------------------------*/

/* =======================
   CONTACT SECTION WRAPPER
======================= */
.contact-section {
  margin: 50px auto; /* less big space */
  padding: 40px;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
 
  flex-wrap: wrap;
  font-family:'Inter',sans-serif;
}

/* LEFT COLUMN */
.contact-left {
  flex: 1;
  min-width: 280px;
  border-right: 1px solid #e5e7eb;
  padding-right: 30px;
}

.contact-left h2 {
  font-size: 1.8rem;
  color: #001f3f;
  margin-bottom: 25px;
  font-family:'Montserrat',sans-serif;
  margin-top: 55px;
}

.contact-left p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family:'Inter',sans-serif;
}

/* RIGHT COLUMN */
.contact-right {
  flex: 2;
  min-width: 300px;
 
    min-width: 300px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  
}

/* HEADER IMAGE */
.form-header-image {
  width: 100%;
  max-width: 450px;   /* prevents overflow */
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
 
}

.form-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* MAP STYLING */
.contact-right iframe {
  width: 100%;
  height: 800px;
  border: 0;
  border-radius: 12px;
  margin-top: 20px;
  
}

/* =======================
   RESPONSIVE BREAKPOINT
======================= */
@media (max-width: 768px) {

  .contact-section {
    flex-direction: column;
    padding: 20px;
  }

  .contact-left {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .contact-right {
    padding-left: 0;
  }

  .form-header-image {
    max-width: 300px;
  }

  .contact-right iframe {
    height: 900px; /* taller for mobile scrolling */
  }
}

    

    /* ======================= FAQ SECTION ======================== */
.faq-section {
  padding: 80px 10%;
  background: #f9fafc;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-align: center;
  color:#0097d3;
}

.faq-subtext {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
   font-family: "Inter", sans-serif;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #555;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}




/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px; /* increased for mobile + long answers */
}

.faq-item.active .icon {
  transform: rotate(45deg);
}



/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 768px) {

  .faq-section {
    padding: 60px 20px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-subtext {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 18px 0;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {

  .faq-section {
    padding: 50px 15px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-question .icon {
    font-size: 1.3rem;
  }
}

/* --------------------
   FOOTER
-------------------- */

.footer {
  background: #0f172a;
  color: #fff;
  padding: 80px 8% 30px 8%;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-branding img {
  width: 250px;
  margin-bottom: 20px;
}

.footer-tagline {
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 16px;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
}

.footer-column a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.footer-small {
  margin-top: 12px;
  font-size: 13px;
  color: #fff;
}

/* Social Links */
.footer-socials a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
}

.footer-socials a:hover {
  color: #2563eb;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 25px 0;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fff;
}

.footer-legal a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #2563eb;
}

/* =============================
   FOOTER RESPONSIVE
============================= */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer {
    padding: 70px 6% 30px 6%;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-branding img {
    margin: 0 auto 20px auto;
  }

  .footer-tagline {
    margin: 0 auto 20px auto;
  }

  .footer-column a {
    transform: none;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-socials a {
    margin: 0 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 60px 5% 25px 5%;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }
}