/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  font-family: 'Lato', sans-serif;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-brand img {
  display: block;
  width: 180px;
  height: auto;
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3;
    animation: fadeIn 0.25s ease;
    opacity: 0;
    visibility: hidden;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav .nav-item{
  padding: 15px 0;
}
.header-nav .nav-item.relative {
  position: relative;
}

.header-nav .nav-button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #334155;
  border-radius: 6px;
  transition: all 0.2s;
  background:none;
  border:none;
  outline:none;
}

.header-nav .nav-button:hover, .header-nav .nav-button.active {
  color: #16a34a;
  background-color: #f0fdf4;
}

.nav-item .dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  z-index: 100;
  display: none;
}
.nav-item .dropdown-menu.mega-menu{
  width: 100%;
  margin-top: -10px;
}
.nav-item:hover .dropdown-menu {
  display: block;
}
.header-nav .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  transition: all 0.15s;
}
.header-nav .dropdown-item:hover {
  background-color: #f0fdf4;
  color: #15803d;
}
.header-nav .dropdown-menu .submega-menu{
  display: flex;
  flex-wrap: wrap;
}
.header-nav .dropdown-menu.mega-menu .mega-menu-column{
  width: 33.33%;
  padding: 0 15px;
}
.submega-menu .mega-menu-column h3{
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.submega-menu .mega-menu-column ul li{
  padding: 0 0 4px;
  list-style: none;
}
.submega-menu .mega-menu-column ul li a{
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #334155;
}
.submega-menu .mega-menu-column ul li a:hover{
  color: #15803d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-inner .menu-toggle {
  width: 42px;
  height: 42px;
  border: none;
  padding: 0;
  border-radius: 10px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  display: none;
  position: relative;
  cursor: pointer;
}
.header-inner .menu-toggle .menu-bars {
  position: absolute;
  display: block;
  width: 23px;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  background: #0f172a;
  height: 2px;
  transition: all 0.5s ease;
}
.header-inner .menu-toggle .menu-bars:before, .header-inner .menu-toggle .menu-bars:after {
  content: "";
  position: absolute;
  right: 0;
  background: #0f172a;
  height: 2px;
  width: 23px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-inner .menu-toggle .menu-bars:before {
  top: -6px;
}
.header-inner .menu-toggle .menu-bars:after {
  bottom: -6px;
}
.header-inner.menu-show .menu-toggle .menu-bars {
  background: transparent;
}
.header-inner.menu-show .menu-toggle .menu-bars:before {
  top: 0;
  transform: rotate(45deg);
}
.header-inner.menu-show .menu-toggle .menu-bars:after {
  top: 0;
  width: 23px;
  transform: rotate(-45deg);
}

/* Buttons */
.sec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.2s;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: #15803d;
  color: white;
  box-shadow: 0 2px 4px rgba(21, 128, 61, 0.2);
}

.btn-primary:hover {
  background-color: #16a34a;
}

.btn-dark {
  background-color: #0f382c;
  color: white;
}

.btn-dark:hover {
  background-color: #134938;
}

.btn-outline {
  background-color: white;
  color: #1e293b;
  border: 1px solid #cbd5e1;
}

.btn-outline:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 1rem;
}

/* Footer */
.site-footer {
  background-color: #07130e;
  color: #cbd5e1;
  padding: 4rem 0 2.5rem;
  border-top: 1px solid #122e23;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 4fr 2fr 2fr 2fr 2fr; } }

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-section .logo-icon-svg {
    width: 24px;
    height: 24px;
}

.footer-brand-section .logo-title {
    color: #ffffff;
}

.footer-brand-section .footer-brand-description {
    font-size: 14px;
    color: #94a3b8;
    line-height: 20px;
    max-width: 360px;
}

.footer-brand-section .footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
}

.footer-brand-section .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #0e241c;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #183d2f;
    transition: all 0.3s ease;
}

.footer-brand-section .social-icon:hover {
    color: #ffffff;
    border-color: #2bb673;
    background-color: #143126;
}

.footer-brand-section .social-icon-svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 14px;
  color: #94a3b8;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: #34d399;
}
.footer-location-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 12px;
    color: #94a3b8;
}

.footer-location-section .location-item .location-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
}

.footer-location-section .location-item .location-title .location-icon {
    width: 14px;
    height: 14px;
    color: #34d399;
    flex-shrink: 0;
}

.footer-location-section .location-item .location-address {
    margin-top: 4px;
    padding-left: 20px;
    font-size: 12px;
    line-height: 18px;
    color: #94a3b8;
}

.footer-location-section .location-item .location-highlight {
    margin-top: 2px;
    padding-left: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #34d399;
}