:root {
  --deep-blue: #1b2a41;
  --coral-red: #ff6b6b;
  --light-bg: #f7f7f7;
  --text-muted: #64748b;
  --card-bg: #f9fafb;
  --border-soft: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: var(--deep-blue);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

/* =========================
   Global Header
========================= */

.site-header {
  background: #ffffff;
}

.header-content {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 40px;
  height: 80px;
}

/* Logo */
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #ff6b6b;
}

/* Contact Button */
.btn-contact {
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,
    #1b2a41 100%
  );
  color: #f7f7f7;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ---------------- SECTION BASE ---------------- */
section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

/* ---------------- CTA BUTTON ---------------- */
.btn-primary {
  background: linear-gradient(135deg, var(--deep-blue), var(--coral-red));
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--deep-blue); /* single source of truth */
  color: #e5e7eb;
}
.site-footer a {
  color: #e5e7eb;
  font-size: 13px;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--coral-red);
}

/* CTA strip */
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-cta-inner {
  max-width: 1200px;
  margin: auto;
  padding: 72px 40px; /* increased vertical spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-cta-inner h2 {
  font-size: 34px;
  font-weight: 700;
}


.footer-cta-btn {
  background: #ffffff;
  color: #1b2a41 !important;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  opacity: 1; /* force visibility */
}


/* Main footer */
.footer-main {
  padding: 72px 40px; /* more vertical balance */
}


.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 170px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff6b6b;
}

/* Social */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons img {
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1) contrast(1.2);
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-icons img:hover {
  transform: translateY(-3px);
  opacity: 1;
}


/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE OVERLAY MENU */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: #000; /* 🔥 smoother than pure black */
  backdrop-filter: none;      /* 🔥 premium feel */

  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔥 pushes CTA to bottom */

  padding: 100px 32px 50px;

  z-index: 999;

  will-change: transform;

  transform: translateX(100%); /* 🔥 animation base */
  transition: transform 0.25s ease;
}

@media (min-width: 769px) {
  .mobile-overlay {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
  }
}

.mobile-overlay.active {
  transform: translateX(0); /* 🔥 smooth slide-in */
}

/* CLOSE BUTTON */
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;

  font-size: 26px;
  color: #fff;

  background: none;
  border: none;
  cursor: pointer;

  z-index: 1000; /* 🔥 important */
}

.close-menu {
  opacity: 0.7;
  transition: all 0.25s ease;
}

.close-menu:hover {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
}

/* MOBILE LINKS */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 22px;

  width: 100%;
  max-width: 320px;

  align-items: flex-start;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;

  color: #fff;
  text-decoration: none;

  padding-bottom: 10px;
  width: 100%;

  border-bottom: 1px solid rgba(255,255,255,0.05);

  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--coral-red);
  transform: translateX(4px); /* subtle interaction */
}

.mobile-menu a:last-child {
  border-bottom: none;
}
/* CONTACT BUTTON */
.mobile-cta {
  margin-top: 24px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;

  display: inline-flex;
  justify-content: center;

  width: auto; /* 🔥 prevents stretching */
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-content .btn-contact {
    display: none; /* only hide header button */
  }

  .mobile-cta {
    display: inline-flex; /* show in menu */
  }
/* CONTACT BUTTON (MOBILE MENU FIX) */
.mobile-overlay .mobile-cta {
  margin-top: 24px;
  padding: 12px 28px; /* Classic, tighter button size */
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;

  display: inline-flex; /* Prevents it from stretching across the screen */
  justify-content: center;
  align-items: center;

  /* Restores the exact desktop gradient */
  background: linear-gradient(90deg, #ff6b6b 0%, #1b2a41 100%) !important; 
  color: #ffffff !important;
  
  width: auto; /* Overrides the previous 100% width */
  max-width: none;
  
  /* Subtle border so the dark blue side doesn't vanish into the black background */
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.18) !important;
}

  .header-content {
    padding: 12px 16px;
  }

}

.mobile-menu a {
  opacity: 0;
  transform: translateY(10px);
}

.mobile-overlay.active .mobile-menu a {
  animation: fadeUp 0.4s ease forwards;
}

.mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.3s; }

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

@media (max-width: 768px) {

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
  }

  .footer-cta-inner h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .footer-cta-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

}

@media (max-width: 768px) {

  .footer-main {
    padding: 40px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 12px;
  }

  .footer-brand address {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.7;
  }

}

@media (max-width: 768px) {

  .footer-links {
    align-items: center;
    gap: 8px;
  }

  .footer-links a {
    font-size: 13px;
  }

}

@media (max-width: 768px) {

  .footer-social h4 {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
    gap: 16px;
  }

  .social-icons img {
    height: 18px;
    width: 18px;
  }

}
@media (max-width: 768px) {

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 12px;
    padding: 12px 16px;
  }

}
@media (max-width: 768px) {

  .footer-inner {
    text-align: left;   /* 🔥 change from center */
    align-items: flex-start;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-links {
    align-items: flex-start;
  }

}

@media (max-width: 768px) {

  .footer-logo {
    margin: 0 0 12px 0; /* remove center */
    width: 140px;
  }

  .footer-brand {
    text-align: left;
  }

}

