/* ===== GENERAL ===== */
:root {
  --brand-sun: #f18932;
  --brand-sun-strong: #d76416;
  --brand-rose: #ffd7ba;
  --brand-sky: #5c8df5;
  --brand-deep: #0c253a;
  --brand-cloud: #f6f7fb;
  --brand-card: #ffffff;
  --shadow-soft: 0 35px 80px rgba(10, 24, 42, 0.18);
  --shadow-pill: 0 15px 35px rgba(15, 33, 61, 0.25);
  --radius-large: 36px;
  --radius-medium: 22px;
  --radius-small: 14px;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.35);
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", "Nunito", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e2c3d;
  background: var(--brand-cloud);
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER STYLES (MOBILE FIRST) ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6e9ef;
  box-shadow: 0 4px 18px rgba(15, 33, 61, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.6rem 1rem;
  gap: 0.75rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* LOGO + TOGGLE */
.header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
}
.logo {
  height: 44px;
  display: block;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  background: rgba(36, 55, 75, 0.08);
  border-radius: 12px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nav-toggle-box {
  display: flex;
  flex-direction: column;
}
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: #333;
  margin: 3px 0;
  border-radius: 999px;
}
.nav-toggle:hover,
.nav-toggle:focus {
  background: rgba(241, 137, 50, 0.18);
  box-shadow: 0 8px 16px rgba(241, 137, 50, 0.25);
}
.sr-only {
  position: absolute;
  left: -9999px;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.main-nav {
  display: none;
  background: rgba(245, 247, 252, 0.94);
  border-radius: 20px;
  padding: 0.75rem;
  box-shadow: 0 14px 28px rgba(20, 41, 69, 0.16);
}
.main-nav.open {
  display: block;
}
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: #1f2f43;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #f18932;
  background: rgba(241, 137, 50, 0.12);
  border-color: rgba(241, 137, 50, 0.22);
  box-shadow: 0 12px 24px rgba(241, 137, 50, 0.2);
  transform: translateY(-2px);
}

.nav-link {
  background: transparent;
  border-color: transparent;
  color: #1f2f43;
}

.btn-secondary {
  color: #f18932;
  border-color: rgba(241, 137, 50, 0.55);
  background: rgba(241, 137, 50, 0.08);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(241, 137, 50, 0.16);
  border-color: rgba(241, 137, 50, 0.65);
}

.btn-primary {
  color: #ffffff;
  border: none;
  background: linear-gradient(135deg, #ff9f56 0%, #f18932 48%, #df6f1b 100%);
  box-shadow: 0 14px 28px rgba(241, 137, 50, 0.28);
}
.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff;
  border: none;
  background: linear-gradient(135deg, #ffb169 0%, #f18932 58%, #d26416 100%);
  box-shadow: 0 20px 32px rgba(241, 137, 50, 0.3);
}
/* PHONE + LANGUAGE */
.contact-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
  flex-shrink: 0;
}
.phone {
  color: #3c4a5f;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(36, 55, 75, 0.08), rgba(241, 137, 50, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 6px 18px rgba(25, 45, 72, 0.12);
}
.phone::before {
  content: '\260E';
  font-size: 0.9rem;
  color: #f18932;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.language-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  padding: 0;
}
.lang-switch .lang {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(35, 50, 72, 0.08);
  background: linear-gradient(145deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 8px 18px rgba(15, 33, 61, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lang-switch .lang:hover,
.lang-switch .lang:focus {
  border-color: #f18932;
  box-shadow: 0 10px 20px rgba(241, 137, 50, 0.28);
  transform: translateY(-1px);
}
.language-flag:hover {
  box-shadow: none;
}

.main-nav .btn-modern {
  /* all: unset; Remove all conflicting nav styles */
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f18932, #e85a19);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.main-nav .btn-modern:hover,
.main-nav .btn-modern:focus {
  background: linear-gradient(135deg, #e85a19, #f18932);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  outline: none;
}

/* Apply modern button styling globally */
.btn-modern {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f18932, #e85a19);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.btn-modern:hover,
.btn-modern:focus {
  background: linear-gradient(135deg, #e85a19, #f18932);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  outline: none;
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.75rem 2.25rem;
  }

  .header-left {
    flex: 0 0 auto;
    justify-content: flex-start;
    width: auto;
    gap: 1rem;
  }

  .header-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .main-nav {
    display: block !important;
    background: transparent;
    box-shadow: none;
    padding: 0;
    flex: 1 1 auto;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .main-nav a {
    width: auto;
    padding: 0.45rem 0.95rem;
  }

  .main-nav a:not(.btn-primary):not(.btn-secondary):not(.btn-modern) {
    background: transparent;
    border-color: transparent;
  }

  .contact-lang {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 1rem;
    text-align: left;
    justify-content: flex-end;
  }

  .phone {
    padding: 0.35rem 0.85rem;
    background: transparent;
    box-shadow: none;
    font-size: 0.95rem;
  }

 .btn-modern {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f18932, #e85a19);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
} 

/* Hover State */
.btn-modern:hover {
  /* background: linear-gradient(135deg, #e85a19, #f18932); */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid red;
} 

/* Focus State */
.btn-modern:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(241, 137, 50, 0.3);
}



  .phone::before {
    font-size: 1rem;
  }

  .lang-switch {
    gap: 0.6rem;
  }

  .lang-switch .lang {
    box-shadow: 0 4px 12px rgba(15, 33, 61, 0.12);
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0.65rem 3rem;
    gap: 2.5rem;
  }

  .main-nav ul {
    gap: 1.75rem;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .contact-lang {
    gap: 1.1rem;
  }

  .phone {
    font-size: 1rem;
  }

  .lang-switch .lang {
    width: 36px;
    height: 36px;
  }

  .language-flag {
    width: 26px;
    height: 26px;
  }
}
.footer {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  border-top: 1px solid rgba(35, 50, 72, 0.08);
  box-shadow: 0 -8px 24px rgba(23, 43, 70, 0.06);
  padding: 0;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #1f2f43;
}

.footer__logo img {
  max-width: 160px;
  height: auto;
}

.footer__tagline {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(31, 47, 67, 0.72);
}

.footer__links-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
}

.footer__heading {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  color: #1f2f43;
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer__column li {
  display: flex;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 260px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 137, 50, 0.45);
  background: rgba(241, 137, 50, 0.08);
  color: #f18932;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  margin: 0;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(241, 137, 50, 0.18);
  border-color: rgba(241, 137, 50, 0.65);
  box-shadow: 0 12px 26px rgba(241, 137, 50, 0.16);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(35, 50, 72, 0.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: rgba(31, 47, 67, 0.65);
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__links-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__column ul {
    gap: 0.65rem;
  }

  .footer__brand {
    align-items: center;
  }

  .btn-secondary {
    justify-content: center;
    margin: 0 auto;
  }

  .footer__column a:hover,
  .footer__column a:focus {
    transform: translateX(0);
  }
  .footer__column .btn-modern {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0.4rem auto;
    text-align: center;
  }
}
/* === Modern Hero & Search Experience === */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 70vh, 640px);
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1rem, 6vw, 4.75rem);
  color: #fff;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 55%), var(--hero-background, url("../img/banner.jpg"));
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: var(--radius-large);
  border-bottom-right-radius: var(--radius-large);
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto clamp(2rem, 6vw, 4rem);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(8, 20, 41, 0.95) 0%,
      rgba(10, 30, 58, 0.7) 45%,
      rgba(22, 51, 95, 0.55) 100%
    ),
    linear-gradient(120deg, rgba(241, 137, 50, 0.25), transparent 50%);
  z-index: 0;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  justify-items: stretch;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.home-hero__eyebrow {
  letter-spacing: 0.35rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.home-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.home-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
}

.home-hero__quick-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-hero__quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home-hero__quick-links a:hover,
.home-hero__quick-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.55);
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.85rem;
}

.hero-stat {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  text-align: left;
  transition: transform 0.25s ease;
}

.hero-stat span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-stat small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.hero-stat:hover {
  transform: translateY(-4px);
}

.glass-panel {
  background: rgba(15, 33, 61, 0.48);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-soft);
}

/* === Home Highlights & Sections === */
.home-highlights {
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  padding: 0 clamp(1rem, 6vw, 4.5rem);
}

.home-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.home-highlights__card {
  background: var(--brand-card);
  border-radius: var(--radius-medium);
  padding: clamp(1.2rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 33, 61, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-highlights__eyebrow {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: #8893a7;
}

.home-highlights__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: #1e2c3d;
}

.home-highlights__card p {
  margin: 0;
  color: #4a5668;
}

.home-highlights__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 60px rgba(12, 37, 58, 0.15);
}

.home-sections {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  padding: 0 clamp(1rem, 6vw, 4.5rem) clamp(3rem, 6vw, 4.5rem);
}

.home-section {
  background: var(--brand-card);
  border-radius: var(--radius-large);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 39, 68, 0.05);
  animation: fadeUp 0.6s ease both;
}

.home-section__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.8rem);
}

.home-section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.78rem;
  color: #97a3b8;
}

.home-section__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #101c2b;
}

.home-section__header p {
  margin: 0;
  color: #49566c;
  max-width: 720px;
}

.home-section__summary {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 720px;
}

.home-section__actions {
  margin-top: 0.5rem;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 33, 61, 0.1);
  text-decoration: none;
  color: #1f2f43;
  background: rgba(15, 33, 61, 0.04);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-pill:hover,
.btn-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pill);
  border-color: rgba(241, 137, 50, 0.45);
  color: #f18932;
}

.home-section__content {
  width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 620px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-highlights__card,
  .home-hero__quick-links a,
  .btn-pill,
  .hero-stat {
    transition: none;
  }
}
