/* Duplicated header/nav styles removed - inherited from common.css */

/* ── MOBILE ── */
/* Navbar styles moved to common.css */
@media (max-width: 991px) {

  .navbar-collapse,
  .nav-link,
  .dropdown-menu {
    text-align: start !important;
  }
}


/* ── HERO ── */
.hero {
  background-color: #333;
  background-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
    url("../../assets/Hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-family: var(--primary-font-family);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-text {
  max-width: 530px;
  font-size: 16px;
  line-height: 35px;
}

.trust-bar {
  background: var(--primary-color);
  font-family: var(--primary-font-family);
  font-weight: 400;
  font-size: 35px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.why-list li {
  margin-bottom: 10px;
}

.btn {
  background-color: #FFF6E5;
  color: #1F3D2B;
  padding: 15px;
}

.btn:hover {
  transition: 0.4s;
  background-color: #2A7A60 !important;
}

.btn-success {
  padding: 23px 20px !important;
  background: #FFF6E5;
  color: #1F3D2B;
}

/* ══════════════════════════════
       ANIMATIONS
    ══════════════════════════════ */

/* Fade up — base state (hidden) */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in — for subtle elements */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Title: slides up, slightly longer */
.hero-title {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* Text: fades up after title */
.hero-text {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

/* Buttons: fade up last */
.hero .mt-2 {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
    height: auto;
  }

  .hero-title {
    font-family: var(--primary-font-family);
    font-size: 40px;
    font-weight: 400;
  }

  .hero-text {
    max-width: 490px;
    font-size: 16px;
    line-height: 35px;
  }

  .trust-bar {
    background: var(--primary-color);
    font-family: var(--primary-font-family);
    font-weight: 400;
    font-size: 30px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
  }

  .why-list li {
    margin-bottom: 10px;
  }

  .btn {
    background-color: #FFF6E5;
    color: #1F3D2B;
    padding: 15px;
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  .hero {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
      url("../../assets/Hero.png") center/cover no-repeat;
    padding: 0px 10px;
    align-items: center;
    display: flex;
  }

  .hero-title {
    font-family: var(--primary-font-family);
    font-size: 32px;
    font-weight: 400;
  }

  .hero-text {
    font-size: 14px;
    line-height: 28px;
    padding: 0px;
    margin: 0px;
  }

  .btn {
    background-color: #FFF6E5;
    color: #1F3D2B;
    padding: 8px;
    font-size: 10px;
  }
}

/* ── Section ── */
.why {
  padding: 60px 0;
}

/* ── Heading ── */
.why h3 {
  font-size: 35px;
  font-weight: 400;
  font-family: var(--primary-font-family);
  color: #000000;
  margin-bottom: 1rem;
}

/* ── Body text ── */
.why p {
  max-width: 500px;
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  color: #000000;
  margin-bottom: 1.25rem;
}

/* ── Sub-heading ── */
.why h4 {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--primary-font-family);
  color: #000000;
  margin-bottom: 0;
}

/* ── List ── */
.why-list {
  margin-top: 20px !important;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.why-list li:last-child {
  border: none;
}

.why-list li img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── Image column ── */
.why-img-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}

.why-img-wrap img {
  width: 100%;
  max-height: 583px;
  object-fit: cover;
  border-radius: 15px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .why-img-wrap {
    margin-top: 2rem;
    height: auto;
    display: flex;
    justify-content: center;
    margin-left: 0px;
  }

  .why-img-wrap img {
    max-height: 500px;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .why {
    padding: 30px 0;
  }

  .why h3 {
    font-size: 28px;
  }

  .why h4 {
    font-size: 18px;
  }

  .why-list li {
    font-size: 14px;
    gap: 10px;
    line-height: 1.4;
  }

  .why-list li img {
    width: 20px;
    height: 20px;
  }

  .why-img-wrap img {
    max-height: 300px;
    border-radius: 10px;
  }
}

/* ══════════════════════════════
       ANIMATION KEYFRAMES
    ══════════════════════════════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Hidden state before animation triggers ── */
.anim {
  opacity: 0;
}

/* ── Active state — triggered by JS via IntersectionObserver ── */
.anim.fade-up {
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim.fade-right {
  animation: fadeRight 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim.fade-left {
  animation: fadeLeft 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Stagger delays for list items ── */
.why-list li.anim:nth-child(1) {
  animation-delay: 0.1s;
}

.why-list li.anim:nth-child(2) {
  animation-delay: 0.25s;
}

.why-list li.anim:nth-child(3) {
  animation-delay: 0.4s;
}

.why-list li.anim:nth-child(4) {
  animation-delay: 0.55s;
}

/* ── Delays for left column elements ── */
.why h3.anim {
  animation-delay: 0s;
}

.why p.anim {
  animation-delay: 0.15s;
}

.why h4.anim {
  animation-delay: 0.3s;
}

/* ── Image delay ── */
.why-img-wrap.anim {
  animation-delay: 0.2s;
}






/* ─── FOOTER SHELL ─── */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 60px 80px 0;
}

/* ─── MAIN ROW ─── */
.footer-main-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

/* ─── BRAND COL ─── */
.footer-col-brand {
  flex: 0 0 auto;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-logo img {
  width: 180px;
  height: 170px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));

}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 24px;
  color: #fff;
  white-space: nowrap;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
  white-space: nowrap;
}

/* ─── VERTICAL DIVIDER ─── */
.v-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  align-self: stretch;
  min-height: 140px;
  margin: 0 60px;
  flex-shrink: 0;
}

/* ─── LINKS & BUSINESS COLS ─── */
.footer-col-links,
.footer-col-business {
  flex: 0 0 auto;
}

.footer-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: #fff;
}

.business-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 12px;
}

/* ─── BOTTOM BAR ─── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */

/* ── Medium tablets (992px – 1199px) ── */
@media (max-width: 1199px) {
  footer {
    padding: 50px 40px 0;
  }

  .v-divider {
    margin: 0 40px;
  }

  .foot-logo img {
    width: 150px;
    height: 140px;
  }

  .brand-text {
    font-size: 21px;
  }

  .footer-tagline {
    font-size: 14px;
  }
}

/* ── Small tablets (768px – 991px) ── */
@media (max-width: 991px) {
  footer {
    padding: 44px 28px 0;
  }

  .footer-main-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px;
  }

  .v-divider {
    display: none;
  }

  .footer-col-brand,
  .footer-col-links,
  .footer-col-business {
    flex: 1 1 200px;
    min-width: 160px;
    max-width: 260px;
  }

  .brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .foot-logo img {
    width: 120px;
    height: 110px;
  }

  .brand-text {
    font-size: 20px;
    white-space: normal;
  }

  .footer-tagline {
    font-size: 13px;
    white-space: normal;
  }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
  footer {
    padding: 36px 20px 0;
  }

  .footer-main-row {
    flex-direction: column;
    align-items: flex-start;
    /* LEFT align all columns */
    text-align: left;
    gap: 28px;
  }

  .footer-col-brand,
  .footer-col-links,
  .footer-col-business {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .footer-col-links,
  .footer-col-business {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 24px;
  }

  /* Brand block: logo + text side by side, left aligned */
  .brand-block {
    flex-direction: row;
    justify-content: flex-start;
    /* LEFT align */
    align-items: center;
    gap: 14px;
  }

  .brand-info {
    text-align: left;
  }

  .brand-text {
    white-space: normal;
    font-size: 19px;
  }

  .footer-tagline {
    white-space: normal;
    font-size: 13px;
  }

  .foot-logo img {
    width: 90px;
    height: 85px;
  }

  /* Links left aligned */
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* LEFT align */
  }

  .footer-bottom {
    margin-top: 32px;
    font-size: 0.8rem;
    text-align: center;
  }
}

/* ── Very small (max 380px) ── */
@media (max-width: 380px) {
  .brand-block {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* still LEFT */
  }

  .brand-info {
    text-align: left;
  }

  .foot-logo img {
    width: 75px;
    height: 70px;
  }

  .brand-text {
    font-size: 17px;
  }
}