/* =========================
   Font Imports
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Lato:wght@400;700&display=swap');

/* =========================
   CSS Variables: Amber Theme
========================= */
:root {
  --primary-amber: #FF9A3C;
  --primary-orange: #FFD6A0;
  --accent-gold: #FFD166;
  --deep-brown: #5E371B;
  --text-main: #442511;
  --text-muted: #B88A4C;
  --section-bg: #FFF6E9;
  --card-bg: #FFF;
  --footer-bg: #442511;
  --font-heading: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

/* =========================
   Reset and Base Styles
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  /* Orange gradient background for the whole page */
  background: linear-gradient(120deg, var(--primary-amber) 0%, var(--primary-orange) 100%);
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-main);
  overflow-x: hidden;
}


h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--deep-brown);
}

h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 10px;
}

p, ul, li {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-amber);
  text-decoration: none;
  transition: color 0.18s;
}

a:hover {
  color: var(--deep-brown);
}

/* =========================
   Navbar
========================= */
.navbar {
  width: 100%;
  padding: 24px 5vw 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 99;
}


.logo img {
  height: 80px;
  width: auto;
  vertical-align: middle;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--deep-brown);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
}

.nav-links li a {
  font-size: 1.07rem;
  font-family: var(--font-heading);
  color: var(--deep-brown);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  background: none;
}

.nav-links li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2.5px;
  background: var(--primary-amber);
  border-radius: 2px;
  transition: width 0.2s;
  margin-top: 2px;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    padding: 14px 4vw 10px 4vw;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100vw;
    min-height: 44vh;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px) saturate(170%);
    z-index: 110;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border: 1.3px solid rgba(255, 154, 60, 0.10);
    transition: opacity 0.18s;
    animation: slideDown 0.23s;
    padding-top: 6px;
    padding-bottom: 12px;
    overflow: hidden;
  }
  .nav-menu.active {
    display: block;
    animation: slideDown 0.22s;
  }
  @keyframes slideDown {
    from { transform: translateY(-45px) scale(0.97); opacity: 0.85;}
    to { transform: translateY(0) scale(1); opacity: 1;}
  }
  .nav-links {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: center;
    padding: 26px 0 8px 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links li a {
    font-size: 1.13rem;
    color: var(--deep-brown);
    padding: 13px 0 6px 0;
  }
  .nav-links li a::after {
    margin: 0 auto;
    width: 0%;
    height: 2.5px;
    margin-top: 4px;
  }
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 65%;
  }
}

/* =========================
   Hero Section
========================= */
.hero {
  color: var(--card-bg);
  padding: 70px 0 50px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 18px 0 rgba(255, 154, 60, 0.11);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 92vw;
  gap: 44px;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 510px;
  min-width: 310px;
}

.hero-text h1 {
  color: #fff;
}
.hero-tagline {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: var(--deep-brown);
  font-weight: 400;
}
.cta-btn {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--deep-brown);
  font-weight: bold;
  padding: 13px 34px;
  border-radius: 24px;
  font-size: 1.13rem;
  box-shadow: 0 3px 20px 0 rgba(255, 154, 60, 0.13);
  transition: background 0.19s, color 0.19s, box-shadow 0.23s;
  margin-top: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-btn:hover {
  background: var(--card-bg);
  color: var(--primary-amber);
  box-shadow: 0 8px 28px 0 rgba(255, 154, 60, 0.13);
}

.hero-animation {
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   Bridge Section
========================= */
.bridge-section {
  background: var(--section-bg);
  padding: 55px 0 36px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bridge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.bridge-text {
  color: var(--deep-brown);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.bridge-image img {
  width: 520px;          /* Increased from 380px */
  max-width: 96vw;
  height: 340px;         /* Give a fixed height for consistency */
  object-fit: cover;
  border-radius: 28px;   /* Even more modern look */
  box-shadow: 0 6px 24px 0 rgba(255, 154, 60, 0.13);
}
.bridge-image {
  max-width: 560px;
  margin: 0 auto;
}
.bridge-swiper {
  width: 100%;
  height: 370px;
  margin: 0 auto;
}
.swiper-button-next,
.swiper-button-prev {
  color: #FF9A3C; /* Match your amber theme */
}


/* =========================
   Process Section
========================= */
.process-section {
  background: var(--card-bg);
  padding: 70px 0 40px 0;
  text-align: center;
}
.process-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--deep-brown);
}
.process-text h2 {
  color: var(--primary-amber);
  margin-bottom: 16px;
}
.process-text p {
  margin-bottom: 12px;
  color: var(--text-main);
}
.process-text .cta-btn {
  margin-top: 16px;
}

/* =========================
   How It Works Section
========================= */
.how-section {
  background: var(--section-bg);
  padding: 70px 0 40px 0;
  text-align: center;
}

.how-section h2 {
  color: var(--primary-amber);
  margin-bottom: 7px;
}
.subtitle {
  color: var(--text-muted);
  font-size: 1.07rem;
  margin-bottom: 20px;
}

.how-columns {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.how-col {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 4px 32px 0 rgba(255, 154, 60, 0.09);
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.how-col i {
  color: var(--primary-amber);
  margin-bottom: 13px;
}
.how-col h3 {
  color: var(--deep-brown);
  margin-bottom: 9px;
  margin-top: 6px;
  font-size: 1.08rem;
}
.how-col ul {
  margin-top: 8px;
  list-style: none;
  padding-left: 0;
}
.how-col ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 17px;
}
.how-col ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-amber);
  font-size: 1rem;
}
.how-col:hover {
  box-shadow: 0 14px 38px 0 rgba(255, 154, 60, 0.16);
  transform: translateY(-6px) scale(1.035);
}

/* =========================
   Services Grid Section
========================= */
.services-section {
  background: var(--card-bg);
  padding: 70px 0 50px 0;
  text-align: center;
}
.services-section h2 {
  color: var(--primary-amber);
}
.services-grid {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.card {
  background: var(--section-bg);
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(255, 154, 60, 0.10);
  padding: 30px 22px 24px 22px;
  min-width: 210px;
  max-width: 300px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
  text-align: left;
}
.card h3 {
  color: var(--primary-amber);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.card p {
  color: var(--text-main);
}
.card:hover {
  box-shadow: 0 10px 30px 0 rgba(255, 154, 60, 0.17);
  transform: translateY(-5px) scale(1.03);
}

/* =========================
   CTA Banner
========================= */
.cta-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* Full-bleed edge-to-edge banner */
  margin-right: calc(50% - 50vw);
  background: linear-gradient(90deg, #ffd6a0 0%, #ff9a3c 100%);
  padding: 46px 0 38px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  border: none;
  min-height: unset;
  margin-bottom: 0;
}

.cta-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  width: 100%;
  max-width: 800px;
  justify-content: center;
}

.cta-head {
  font-size: 2.1rem;
  font-weight: 700;
  color: #442511;
  letter-spacing: 0.2px;
}

.cta-btn {
  background: #ffd166;
  color: #442511;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1.13rem;
  padding: 14px 38px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.17s;
  box-shadow: 0 2px 12px 0 rgba(255, 154, 60, 0.09);
  margin-left: 0;
}

.cta-btn:hover {
  background: #ff9a3c;
  color: #fff;
  box-shadow: 0 7px 24px 0 rgba(255, 154, 60, 0.16);
}

@media (max-width: 700px) {
  .cta-content {
    flex-direction: column;
    gap: 20px;
  }
  .cta-head {
    font-size: 1.25rem;
  }
  .cta-banner {
    padding: 26px 0 18px 0;
  }
}




/* =========================
   Contact Section
========================= */
.contact-section {
  background: var(--card-bg);
  padding: 68px 0 46px 0;
  text-align: center;
}

.contact-section h2 {
  color: var(--primary-amber);
  margin-bottom: 13px;
}

.contact-form {
  margin: 0 auto 22px auto;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  border: 1.4px solid var(--primary-amber);
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 1rem;
  resize: vertical;
  transition: border 0.17s, box-shadow 0.18s;
  color: var(--deep-brown);
  background: var(--section-bg);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 2px 12px 0 rgba(255, 154, 60, 0.08);
}
.contact-form button {
  background: var(--primary-amber);
  color: var(--card-bg);
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  font-size: 1.09rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.16s, color 0.18s, box-shadow 0.18s;
  margin-top: 6px;
}
.contact-form button:hover {
  background: var(--accent-gold);
  color: var(--deep-brown);
  box-shadow: 0 8px 22px 0 rgba(255, 154, 60, 0.15);
}

.contact-details {
  margin-top: 13px;
  color: var(--text-muted);
  font-size: 1.01rem;
}

.contact-details strong {
  color: var(--primary-amber);
}

.contact-details a {
  color: var(--deep-brown);
  text-decoration: underline dotted;
  transition: color 0.16s;
}
.contact-details a:hover {
  color: var(--primary-amber);
}

.contact-subheading {
  font-family: var(--font-body);
  font-size: 1.14rem;
  color: var(--text-main);
  font-weight: 400;
  margin: 0 auto 29px auto;
  max-width: 700px;
  line-height: 1.7;
  opacity: 0.95;
}

/* =========================
   Footer
========================= */
.footer {
  background: var(--footer-bg);
  color: var(--card-bg);
  text-align: center;
  padding: 24px 0 8px 0;
  font-size: 1.03rem;
  letter-spacing: 0.1px;
  margin-top: 0;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  height: 45px;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 1.05rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
}
.footer-bottom {
  font-size: 0.97rem;
  color: var(--accent-gold);
  margin-top: 10px;
}

/* =========================
   Floating Button
========================= */
.floating-btn {
  position: fixed;
  right: 20px;
  bottom: 26px;
  background: var(--accent-gold);
  color: var(--deep-brown);
  padding: 13px 15px 10px 15px;
  border-radius: 50%;
  box-shadow: 0 4px 20px 0 rgba(255, 154, 60, 0.18);
  font-size: 1.27rem;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.14s, box-shadow 0.17s;
}
.floating-btn:hover {
  background: var(--deep-brown);
  color: var(--accent-gold);
  box-shadow: 0 9px 34px 0 rgba(255, 154, 60, 0.18);
}

/* =========================
   Fade-In Animations
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInMoveUp 0.75s ease-out forwards;
}
@keyframes fadeInMoveUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Responsive Styles: Layout & Nav
================================ */
@media (max-width: 1200px) {
  .hero-content,
  .services-grid,
  .team-grid {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 1050px) {
  .hero-content,
  .how-columns,
  .services-grid,
  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .card,
  .how-col,
  .team-card {
    max-width: 92vw;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    gap: 13px;
    padding: 11px 2vw 8px 2vw;
  }
  .logo img {
    height: 44px;
  }
  .footer-logo {
    height: 35px;
  }
  .cta-banner {
    flex-direction: column;
    gap: 18px;
    padding: 28px 0;
    border-radius: 12px;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  .hero,
  .how-section,
  .bridge-section,
  .process-section,
  .services-section,
  .team-section,
  .contact-section {
    padding: 33px 0 22px 0;
    min-height: unset;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 21px;
    width: 98vw;
    max-width: 100vw;
  }
  .hero-text {
    max-width: 96vw;
    min-width: unset;
    text-align: center;
    padding: 0 2vw;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-animation {
    width: 100%;
    min-width: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-animation lottie-player {
    width: 95vw !important;
    max-width: 250px !important;
    height: auto !important;
    margin: 0 auto;
    display: block;
  }
  .hero-text p {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .bridge-image img {
    width: 95vw;
    max-width: 95vw;
  }
  .services-grid,
  .how-columns,
  .team-grid {
    gap: 13px;
  }
  .card,
  .how-col,
  .team-card {
    min-width: 70vw;
    max-width: 97vw;
    margin: 0 auto 14px auto;
  }
}

@media (max-width: 500px) {
  .navbar { padding: 6px 1vw 6px 1vw; }
  .hero { padding: 16px 0 13px 0; }
  .cta-btn,
  .contact-form button {
    padding: 10px 13px;
    font-size: 1.04rem;
  }
  .cta-banner {
    padding: 13px 0;
    border-radius: 8px;
  }
  .footer { padding: 13px 0 5px 0; }
  .footer-tagline { font-size: 0.94rem; }
}

@media (max-width: 400px) {
  .hero-text { font-size: 0.95rem; }
  .card, .how-col, .team-card { padding: 12px 7px; }
  .footer { font-size: 0.91rem; }
}

/* ===========================
   Hide scrollbar for nav-menu
=========================== */
.nav-menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav-menu::-webkit-scrollbar {
  display: none;
}

/* ================================
   Utility Classes (Optional)
================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mb-1 { margin-bottom: 12px; }
.mb-2 { margin-bottom: 24px; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.rounded { border-radius: 20px; }

.navbar {
  box-shadow: none !important;
  border-bottom: none !important;
  background: transparent !important;
}

/* Remove any top border/shadow from hero or first section */
.hero,
.hero-section,
.main-content,
.page-content {
  border-top: none !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/* ==== Bridge Section: Modern Integrated Style ==== */
.bridge-section {
  background: #fffaf4;          /* soft off-white, matches your site vibe */
  padding: 0;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Optional: light fade top and bottom, looks premium */
  box-shadow: 0 1px 0 #f6e3c7, 0 -1px 0 #f6e3c7;
}

.bridge-image {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Slight breathing room, not stuck to the top/bottom */
  padding: 40px 0 36px 0;
}

.bridge-swiper {
  width: 100%;
  max-width: 850px;
  height: 360px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bridge-swiper img {
  width: 100%;
  height: 360px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;     /* slight, not heavy, so it’s not harsh */
  box-shadow: 0 6px 32px 0 rgba(34,34,34,0.07);
  transition: box-shadow 0.18s, transform 0.18s;
}

.bridge-swiper img:hover {
  box-shadow: 0 16px 36px 0 rgba(255, 154, 60, 0.09);
  transform: scale(1.012);
}

/* ==== Swiper Pagination Dots: Modern & Clean ==== */
.swiper-pagination-bullets {
  bottom: 18px !important;
}

.swiper-pagination-bullet {
  background: #ebd7c3; /* soft beige for inactive */
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: background 0.2s, transform 0.15s;
}

.swiper-pagination-bullet-active {
  background: #ff9a3c; /* your main accent */
  transform: scale(1.25);
  box-shadow: 0 2px 10px #ffd16633;
}
