/* ─── Reset & Base ──────────────────────────────── */
/* Paste this, check browser, then remove */
/** {*/
/*  outline: 1px solid red;*/
/*}*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #1e1e1e;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ─── TOP INFO BAR ──────────────────────────────── */
.topbar {
  background: #1a0805;
  color: #ccc;
  font-size: 12.5px;
  padding: 7px 20px;
}
.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar span {
  font-weight: 600;
  font-size: 15px;
}
.topbar a { color: #ccc; }
.topbar .whatsapp-btn {
  border: 1px solid #888;
  border-radius: 20px;
  padding: 4px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}
.whatsapp-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity .2s;
}
.whatsapp-btn a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.topbar .whatsapp-btn:hover { background: #25d366; border-color: #25d366; }
.topbar .socials a {
  color: #ccc;
  margin-left: 12px;
  font-size: 20px;
  transition: color .2s;
}
.topbar .socials a:hover { color: #c8a96e; }

.topbar span a {
  color: #ccc;
  text-decoration: none;
  transition: color .2s;
}
.topbar span a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ─── NAVBAR ────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #ffffff;
  padding: 14px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.navbar .navbar-brand {
  font-family: Philosopher;
  font-size: 30px;
  font-weight: 900;
  color: #7b2d1e;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ── Desktop nav links ── */
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .nav-links li { position: relative; }
.navbar .nav-links li a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 10px;
  color: #1e1e1e;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  white-space: nowrap;
}
.navbar .nav-links li a:hover { color: #7b2d1e; }
.navbar .nav-links li a i { font-size: 10px; }
.navbar .nav-links .active > a { color: #7b2d1e; }

/* ── Desktop dropdown ── */
.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border-top: 3px solid #7b2d1e;
  box-shadow: 0 4px 24px rgba(60,20,10,0.12);
  border-radius: 0 0 10px 10px;
  z-index: 999;
  padding: 8px 0;
}
.navbar .dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: #1e1e1e;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.navbar .dropdown-menu a:hover { background: #f5ede4; color: #7b2d1e; }

/* Desktop: hover opens dropdown */
@media (min-width: 993px) {
  .navbar .nav-links li:hover > .dropdown-menu { display: block; }
}

/* Contact button */
.navbar .btn-contact {
  background: #3b1a10;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
  text-decoration: none;
}
.navbar .btn-contact:hover { background: #7b2d1e; color: #fff; }

/* ── Hamburger — hidden on desktop ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #3b1a10;
  padding: 4px 8px;
  margin-left: auto;
  z-index: 1001;
}

/* ── Mobile Floating Contact FAB ── */
.mobile-contact-fab {
  display: none; /* hidden on desktop */
}

/* Active nav link */
.navbar .nav-links .active > a { color: #7b2d1e; }

/* Active submenu link */
.navbar .dropdown-menu a.submenu-active {
  color: #7b2d1e !important;
  font-weight: 700 !important;
  background: #f5ede4 !important;
}

/* ════════════════════════════
   MOBILE — max 992pxnavbar .navbar-inner
════════════════════════════ */
@media (max-width: 992px) {

  /* Hide topbar completely on mobile */
  .topbar { display: none !important; }

  /* Show hamburger */
  .hamburger { display: block; }

  /* Hide contact button on mobile to save space */
  .navbar .btn-contact { display: none; }

  /* Mobile nav links — hidden by default */
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    right: -20px;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(60,20,10,0.15);
    border-top: 3px solid #7b2d1e;
    padding: 8px 0;
    z-index: 1000;
    max-height: 75vh;
    overflow-y: auto;
  }

  /* Show when open class added */
  .navbar .nav-links.open { display: flex; }

  /* Mobile nav items */
  .navbar .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f0ece8;
  }
  .navbar .nav-links li:last-child { border-bottom: none; }

  .navbar .nav-links li a {
    padding: 13px 20px;
    font-size: 13.5px;
    width: 100%;
    justify-content: space-between;
    color: #1e1e1e;
  }
  .navbar .nav-links .active > a { color: #7b2d1e; background: #fdf5f0; }

  /* Mobile dropdown — hidden by default */
  .navbar .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0;
    background: #fdf8f5;
    border-left: 3px solid #7b2d1e;
    margin-left: 20px;
    margin-right: 10px;
    border-radius: 0 0 6px 6px;
  }

  /* Show dropdown when .dropdown-open added to li */
  .navbar .nav-links li.dropdown-open > .dropdown-menu { display: block; }

  .navbar .dropdown-menu a {
    padding: 10px 18px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #ede8e4;
  }
  .navbar .dropdown-menu a:last-child { border-bottom: none; }
  .navbar .dropdown-menu a:hover { background: #f5ede4; color: #7b2d1e; }

  /* Rotate chevron when dropdown open */
  .navbar .nav-links li.dropdown-open > a i.fa-chevron-down {
    transform: rotate(180deg);
    color: #7b2d1e;
  }
  .navbar .nav-links li > a i.fa-chevron-down {
    transition: transform .3s ease;
  }

  .mobile-contact-fab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    /* Fixed floating position — bottom right */
    position: fixed;
    bottom: 28px;
    right: 20px;
    z-index: 9990;

    /* Circle design */
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b2d1e, #3b1a10);
    color: #ffffff;
    text-decoration: none;

    /* Shadow + animation */
    box-shadow:
      0 4px 20px rgba(123, 45, 30, 0.55),
      0 0 0 0 rgba(123, 45, 30, 0.3);
    animation: fabPulse 2.5s ease-in-out infinite;

    transition: transform .2s, box-shadow .2s;
  }

  .mobile-contact-fab i {
    font-size: 20px;
    color: #ffffff;
  }

  .mobile-contact-fab span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.90);
    line-height: 1;
  }

  .mobile-contact-fab:hover {
    transform: scale(1.10);
    box-shadow:
      0 8px 28px rgba(123, 45, 30, 0.65),
      0 0 0 8px rgba(123, 45, 30, 0.12);
    color: #ffffff;
  }

  .mobile-contact-fab:active {
    transform: scale(0.95);
  }

  /* Pulse ring animation */
  @keyframes fabPulse {
    0%   { box-shadow: 0 4px 20px rgba(123,45,30,0.55), 0 0 0 0 rgba(123,45,30,0.30); }
    60%  { box-shadow: 0 4px 20px rgba(123,45,30,0.55), 0 0 0 12px rgba(123,45,30,0.00); }
    100% { box-shadow: 0 4px 20px rgba(123,45,30,0.55), 0 0 0 0 rgba(123,45,30,0.00); }
  }
}

@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .navbar .navbar-brand { font-size: 18px; }
  .hamburger { font-size: 20px; }
  .navbar .navbar-inner {
  gap: 50px;
}
}


/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

/* ── Carousel fills full width, images cover height ── */
.hero-carousel {
  position: relative;
  z-index: 0;
}

.hero-img {
  height: 570px;
  object-fit: cover;
  object-position: center;
}

.carousel-item {
  position: relative;
}

/* ── Dark overlay: strong left → fades to transparent right ── */
.carousel-item .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(10, 3, 1, 0.82) 0%,
    rgba(10, 3, 1, 0.55) 38%,
    rgba(10, 3, 1, 0.18) 65%,
    rgba(10, 3, 1, 0.0) 100%
  );
}

/* ── Content positioned above center ── */
.carousel-item .hero-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-bottom: 60px;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-content h1 span {
  color: #c8a96e;
}

.btn-explore {
  display: inline-block;
  background: rgba(100, 35, 20, 0.80);
  border: 1.5px solid #c8a96e;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
}

.btn-explore:hover {
  background: #c8a96e;
  color: #3b1a10;
}

/* ── Indicator dots — override Bootstrap defaults ── */
.hero-dots {
  
  /* just above ticker */
  z-index: 4;
}

.hero-dots button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.65) !important;
  opacity: 1 !important;
  transition: background .3s, transform .3s !important;
  margin: 0 5px !important;
}

.hero-dots button.active {
  background-color: #ffffff !important;
  transform: scale(1.25) !important;
}

/* ── Ticker ── */
.ticker-wrap {
  position: relative;
  z-index: 4;
  background: #783F2E;
  border-top: 1px solid rgba(200, 169, 110, .3);
  padding: 10px 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker span {
  color: #FFF4F3;
  font-weight: 500;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker span::before {
  content: '⦿';
  color: #FFF4F3;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-img {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-img {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 22px;
  }
}


.section {
  padding: 40px 0;
}

.section-label {
  display: inline-block;
  background: #f5ede4;
  color: #7b2d1e;
  border: 1px solid rgba(123, 45, 30, .2);
  border-radius: 20px;
  padding: 5px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}


/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 60px 0;
}

.about-section .about-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #7F3319;
  margin-bottom: 18px;
}

.about-section .about-text p {
  color: #000000;
  line-height: 33px;
  margin-bottom: 14px;
  /*font-weight: 600;*/
  text-align: justify;
  font-size: 16px;
}

.about-section .btn-readmore {
  display: inline-block;
  background: #3b1a10;
  color: #ffffff;
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
  transition: background .2s;
}

.about-section .btn-readmore:hover {
  background: #7b2d1e;
}

/* ─── COLLAGE WRAPPER ─── */
.about-section .about-images {
  position: relative;
  width: 100%;
}

.about-section .about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

/* ─── EACH CELL — icon sits behind, img sits on top ─── */
.about-section .img-cell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon always visible as fallback */
.about-section .img-icon {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.35);
  z-index: 1;
  position: absolute;
}

/* Image sits on top of icon — covers it when loaded */
.about-section .img-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ─── BORDER SHAPES ─── */

/* Left — tall pill shape */
.about-section .img-left {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 80px 0 80px 80px;
}

/* Top right — rounded top */
.about-section .img-right-top {
  grid-column: 2;
  grid-row: 1;
  border-radius: 80px 80px 80px 20px;
}

/* Bottom right — rounded bottom */
.about-section .img-right-bottom {
  grid-column: 2;
  grid-row: 2;
  border-radius: 20px 80px 80px 80px;
}

/* ─── BADGE — centered at intersection of 3 images ─── */
.about-section .badge-years {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #7b2d1e;
  color: #ffffff;
  border-radius: 50%;
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  z-index: 10;
  text-align: center;
  border: 5px solid #ffffff;
}

.about-section .badge-years small {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 576px) {
  .about-section .about-collage {
    grid-template-rows: 160px 160px;
  }
  .about-section .badge-years {
    width: 75px;
    height: 75px;
    font-size: 17px;
  }
  .about-section .badge-years small {
    font-size: 8px;
  }
}


/* ─── PRACTICE AREAS ────────────────────────────── */
.practice-bg {
  padding: 40px 0;
  background: #faf5f2;
}

.practice-bg .practice-header {
  text-align: center;
}

.practice-bg .section-label {
  display: inline-block;
  background: #f5ede4;
  color: #7b2d1e;
  border: 1px solid rgba(123, 45, 30, .2);
  border-radius: 20px;
  padding: 5px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.practice-bg .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}

/* ─── CARD ─── */
.practice-bg .pcard {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(60, 20, 10, 0.08);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.practice-bg .pcard:hover {
  background: #7D361C;
  transition: background-color 0.5s ease;
  box-shadow: 0 4px 24px rgba(60, 20, 10, 0.15);
}

/* ─── CARD HOVER — text + button color changes ─── */

/* Title → white on hover */
.practice-bg .pcard:hover .pcard-body h3 {
  color: #ffffff;
}

/* Description → white on hover */
.practice-bg .pcard:hover .pcard-body p {
  color: rgba(255, 255, 255, 0.85);
}

/* Learn more button → white bg, brown text on hover */
.practice-bg .pcard:hover .learn-more {
  background: #ffffff;
  color: #7b2d1e;
  border-color: #ffffff;
}

/* ─── CARD IMAGE AREA ─── */
.practice-bg .pcard-img {
  height: 150px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon — sits behind image as fallback */
.practice-bg .pcard-icon {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.30);
  position: absolute;
  z-index: 1;
}

/* Image — covers icon when loaded */
.practice-bg .pcard-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* ─── CARD BODY ─── */
.practice-bg .pcard-body {
  padding: 20px;
}

.practice-bg .pcard-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.practice-bg .pcard-body p {
  font-size: 16px;
  color: #000000;
  line-height: 33px;
  margin-bottom: 16px;
  text-align: justify;
}

/* ─── LEARN MORE BUTTON — beige pill like image ─── */
.practice-bg .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5ede4;
  color: #7b2d1e;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(123, 45, 30, 0.18);
  transition: background .2s, gap .2s, color .2s;
  text-decoration: none;
}

.practice-bg .learn-more:hover {
  background: #7b2d1e;
  color: #ffffff;
  gap: 10px;
}


/* ─── SOCIAL RESPONSIBILITY ─── */
.social-resp-section {
  padding: 40px 0;
  background: #f5f5f5;
}

/* Rounded bordered box */
.social-resp-box {
  background: #ffffff;
  border: 1.5px solid #d8d0cc;
  border-radius: 16px;
  overflow: hidden;
}

/* Left column */
.social-resp-left {
  padding: 48px 40px;
}

.social-resp-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #7b2d1e;
  line-height: 1.25;
  margin-bottom: 0;
}

.social-resp-left .divider {
  width: 100px;
  height: 5px;
  background: #7b2d1e;
  margin-top: 20px;
  border-radius: 2px;
}

/* Vertical separator line */
.social-resp-separator {
  width: 1.5px;
  background: #ddd;
  align-self: stretch;
  min-height: 100%;
  margin: 40px 0;
}

/* Right column */
.social-resp-right {
  padding: 40px 44px;
}

.social-resp-right p {
  font-size: 16px;
  color: #000000;
  line-height: 33px;
  margin-bottom: 20px;
  text-align: justify;
}

.social-resp-right p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .social-resp-left {
    padding: 32px 24px 20px;
    border-bottom: 1.5px solid #ddd;
  }
  .social-resp-right {
    padding: 24px;
  }
  .social-resp-left h2 {
    font-size: 28px;
  }
}

/* ─── TEAM ─── */
.team-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* BG image + brown overlay — covers full section */
.team-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(45, 15, 5, 0.82), rgba(45, 15, 5, 0.82)),
    url('../images/team-bg.png') center / cover no-repeat;
}

/* Both columns sit above the overlay */
.team-section .container-fluid {
  position: relative;
  z-index: 1;
}

/* ─── LEFT SIDE — no bg color, transparent ─── */
.team-left {
  background: transparent;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  height: 100%;
}

.team-left p {
  color: #c8a96e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.team-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.team-left h2 span {
  color: #c8a96e;
}

.team-left .btn-readmore {
    color: white;
}

/* ─── RIGHT SIDE — carousel, unchanged ─── */
.team-carousel-wrap {
  padding: 40px 40px;
  overflow: hidden;
  position: relative;
}

.team-carousel {
  display: flex;
  transition: transform .4s ease;
}

.team-card {
  flex: 0 0 200px;
  text-align: center;
}

/* Avatar box — icon as fallback, img on top */
.team-card .avatar {
  width: 130px;
  height: 150px;
  border-radius: 10px;
  margin: 0 auto 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Icon fallback */
.team-card .avatar i {
  font-size: 48px;
  color: rgba(255, 255, 255, .5);
  position: absolute;
  z-index: 1;
}

/* Image covers icon when loaded */
.team-card .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 2;
}

.team-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.team-card span {
  font-size: 12px;
  color: #c8a96e;
}

/* ─── NAV BUTTONS ─── */
.carousel-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  transition: background .2s, border-color .2s;
}

.carousel-btn:hover {
  background: #7b2d1e;
  color: #ffffff;
  border-color: #7b2d1e;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .team-left {
    padding: 40px 24px 30px;
  }
  .team-carousel-wrap {
    padding: 30px 20px;
  }
}


/* ─── SECTION BG ─── */
.testi-news-section {
  background: #f0eeec;
  padding: 40px 0;
}

/* ─── SHARED TITLE WITH UNDERLINE ─── */
.section-sub-title {
  font-size: 20px;
  font-weight: 700;
  color: #555555;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

/* Short underline below title */
.section-sub-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2.5px;
  background: #555555;
  margin-top: 8px;
  border-radius: 2px;
}

/* ─── TESTIMONIAL WRAPPER ─── */
.testi-wrap {
  position: relative;
  margin-top: 24px;
}

/* Nav < > buttons — top right */
.testi-nav {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.testi-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid #ccc;
  background: #ffffff;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.testi-btn:hover {
  background: #7b2d1e;
  color: #ffffff;
  border-color: #7b2d1e;
}

/* Avatar + bubble row */
.testi-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* Avatar — outside card, left side */
.testi-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin-top: -10px;
  margin-right: 10px;
  position: relative;
  z-index: 1;
}

/* Speech bubble card */
.testi-card {
  background: #ffffff;
  border: 1px solid #e0dbd8;
  border-radius: 10px;
  padding: 22px 24px;
  position: relative;
  flex: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* Speech bubble arrow pointing left toward avatar */
.testi-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 10px solid #e0dbd8;
}

.testi-card::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 9px solid #ffffff;
}

/* Card content */
.testi-heading {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.testi-card p {
  color: #000000;
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: justify;
}

/* Star rating */
.testi-stars i {
  color: #f5a623;
  font-size: 14px;
}

.testi-stars .far.fa-star {
  color: #cccccc;
}

/* ─── TESTIMONIAL SLIDES ─── */
.testi-slide {
  display: none;
  animation: testi-fade 0.4s ease;
}

.testi-slide.active {
  display: block;
}

@keyframes testi-fade {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Author name below stars */
.testi-name {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1e1e1e;
}

.testi-name span {
  font-weight: 400;
  color: #888;
  font-size: 12px;
}

/* ─── DOT INDICATORS ─── */
.testi-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background .3s, transform .3s;
  display: inline-block;
}

.testi-dot.active {
  background: #7b2d1e;
  transform: scale(1.3);
}

/* ─── RECENT NEWS ─── */
.news-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  align-items: flex-start;
}

/* Full-width gray divider between items */
.news-divider {
  margin: 0;
  border: none;
  border-top: 1px solid #d8d4d0;
}

/* Date box */
.news-date {
  flex: 0 0 52px;
  background: #7b2d1e;
  color: #ffffff;
  border-radius: 8px;
  padding: 5px 6px;
  text-align: center;
  line-height: 1.3;
}

.news-date strong {
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.news-date span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* News text */
.news-content { flex: 1; }

.news-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #7b2d1e;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.news-desc {
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
}

/* Read All link */
.readall {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #7b2d1e;
  font-style: italic;
  text-decoration: none;
  transition: color .2s;
}

.readall:hover {
  color: #3b1a10;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 576px) {
  .testi-row { flex-direction: column; }
  .testi-avatar { margin: 0 0 12px 0; }
  .testi-card::before,
  .testi-card::after { display: none; }
}


/* ─── CONTACT / BOOKING ─────────────────────────── */
/* .contact-bg {
  background: #f5ede4;
}

.form-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: #1e1e1e;
  background: #ffffff;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7b2d1e;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-booking {
  background: #7b2d1e;
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}

.btn-booking:hover {
  background: #3b1a10;
}

.consult-box {
  padding: 10px 0;
}

.consult-label {
  display: inline-block;
  background: #7b2d1e;
  color: #ffffff;
  padding: 5px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.consult-box h2 {
  font-size: 30px;
  color: #7b2d1e;
  margin-bottom: 10px;
}

.consult-box p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.contact-info-item i {
  width: 36px;
  height: 36px;
  background: #7b2d1e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
} */

/* =============================================
   CONSULTATION SECTION
============================================= */
.consult-section {
  position: relative;
  overflow: visible;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  min-height: 100%;     /* ← ensures section stretches full */
  margin-bottom: 100px;
}

.consult-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;         /* ← fills full section height */
  object-fit: cover;
  object-position: center top;  /* ← shows full image from top */
  z-index: 0;
}

/* Brown shade overlay — matches your image exactly */
.consult-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(100, 35, 15, 0.82);
  z-index: 1;
}

/* Container above overlay */
.consult-container {
  position: relative;
  z-index: 2;
}

/* =============================================
   FORM CARD
============================================= */
.consult-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 30px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  margin-bottom: -130px;
}

/* ── FIELD ── */
.consult-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consult-field label {
  font-size: 13px;
  font-weight: 700;
  color: #222;
}

.consult-field input,
.consult-field textarea {
  width: 100%;
  background: #ebebeb;
  border: none;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: #333;
  outline: none;
  transition: background .2s;
}

.consult-field input:focus,
.consult-field textarea:focus {
  background: #e0dede;
}

.consult-field input::placeholder,
.consult-field textarea::placeholder {
  color: #aaa;
}

.consult-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── SELECT ── */
.consult-select-wrap {
  position: relative;
  width: 100%;
}

.consult-select-wrap select {
  width: 100%;
  background: #ebebeb;
  border: none;
  border-radius: 8px;
  padding: 11px 40px 11px 14px;
  font-size: 13.5px;
  color: #333;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.consult-select-wrap select:focus {
  background: #e0dede;
}

.consult-select-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* ── BOOK BUTTON — brown ── */
.consult-book-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  background: #7b2d1e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background .2s, transform .2s;
}

.consult-book-btn:hover {
  background: #5a1e10;
  transform: translateY(-2px);
}

/* =============================================
   RIGHT CONTENT
============================================= */
.consult-content {
  padding-left: 44px;
  color: #ffffff;
}

/* ── Pill — white with brown text ── */
.consult-pill {
  display: inline-block;
  background: #ffffff;
  color: #3b1a10;
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ── Heading ── */
.consult-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 5px;
}

/* ── Description ── */
.consult-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 33px;
  margin-bottom: 32px;
}

/* ── Info boxes ── */
.consult-info-boxes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.consult-info-box {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 5px 16px 5px 5px;
  border-radius: 7px;
  text-decoration: none;
  color: #ffffff;
  /* flex: 1 1 180px; */
  min-width: 0;
  transition: transform .2s, opacity .2s;
}

.consult-info-box:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: #ffffff;
}

/* Phone box — white border only */
.consult-box-phone {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

/* Email box — solid brown-red bg */
.consult-box-email {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

/* Icon circles */
.consult-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* ── Icon image size inside boxes ── */
.consult-info-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.consult-icon-phone {
  background: #FFFFFF;
  color: #ffffff;
}

.consult-icon-email {
  background: #CA3E0D;
  color: #7b2d1e;
}

/* Info text */
.consult-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.consult-info-text small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.consult-info-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  line-height: 1.4;
  /* white-space: nowrap;   ← keeps all numbers on one line */
}

.consult-info-text strong a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity .2s;
}
.consult-info-text strong a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* =============================================
   RESPONSIVE â€” LAPTOP (993px â€“ 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .consult-content {
        padding-left: 32px;
    }

    .consult-form-card {
        padding: 26px 24px 24px;
    }

    .consult-heading {
        font-size: 32px;
    }

    .consult-info-box {
        flex: 1 1 100%;
    }
}

/* =============================================
   RESPONSIVE â€” TABLET LANDSCAPE (768px â€“ 992px)
   Two columns still visible but tighter
============================================= */
@media (max-width: 992px) {
    .consult-section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .consult-form-card {
        padding: 26px 22px 22px;
        border-radius: 20px;
        /* No negative margin on tablet â€” stacks naturally */
        margin-bottom: 0;
    }

    .consult-content {
        padding-left: 0;
        padding-top: 8px;
        text-align: center;
    }

    .consult-pill {
        margin-bottom: 16px;
    }

    .consult-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .consult-features {
        align-items: center;
        margin-bottom: 26px;
    }

    .consult-info-boxes {
        justify-content: center;
    }

    .consult-info-box {
        flex: 0 0 auto;
    }
}

/* =============================================
   RESPONSIVE â€” TABLET PORTRAIT (576px â€“ 767px)
============================================= */
@media (max-width: 767px) {
    .consult-section {
        padding-top: 46px !important;
        padding-bottom: 46px !important;
    }

    .consult-form-card {
        padding: 22px 18px 20px;
        border-radius: 18px;
    }

    .consult-form-header h3 {
        font-size: 16px;
    }

    .consult-field label {
        font-size: 11.5px;
    }

    .consult-field input,
    .consult-field textarea,
    .consult-select-wrap select {
        font-size: 13px;
        padding: 9px 12px;
    }

    .consult-select-wrap select {
        padding: 9px 36px 9px 12px;
    }

    .consult-book-btn {
        font-size: 14px;
        padding: 12px 18px;
    }

    .consult-content {
        padding-left: 0;
        padding-top: 0;
        text-align: center;
    }

    .consult-heading {
        font-size: 28px;
    }

    .consult-desc {
        font-size: 14px;
    }

    .consult-features {
        align-items: center;
    }

    .consult-feature-item {
        font-size: 13.5px;
    }

    .consult-info-boxes {
        justify-content: center;
        gap: 12px;
    }

    .consult-info-box {
        flex: 0 1 calc(50% - 6px);
        min-width: 180px;
    }
}

/* =============================================
   RESPONSIVE â€” MOBILE (â‰¤575px)
   Full single column, all elements stack
============================================= */
@media (max-width: 575px) {
    .consult-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    /* On mobile: form first, content below */
    .consult-form-card {
        padding: 20px 16px 18px;
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    .consult-form-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .consult-form-header h3 {
        font-size: 15px;
    }

    .consult-form-header p {
        font-size: 12px;
    }

    /* On mobile: stack the two col-6 into full width */
    .consult-field label {
        font-size: 11px;
    }

    .consult-field input,
    .consult-field textarea,
    .consult-select-wrap select {
        font-size: 13px;
        padding: 9px 11px;
        border-radius: 9px;
    }

    .consult-select-wrap select {
        padding: 9px 34px 9px 11px;
    }

    .consult-book-btn {
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 10px;
    }

    /* Right content */
    .consult-content {
        padding-left: 0;
        padding-top: 4px;
        text-align: center;
    }

    .consult-pill {
        font-size: 10px;
        padding: 6px 16px;
        margin-bottom: 14px;
    }

    .consult-heading {
        font-size: 24px;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }

    .consult-desc {
        font-size: 13.5px;
        margin-bottom: 18px;
    }

    .consult-features {
        align-items: flex-start;
        display: inline-flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 22px;
        text-align: left;
    }

    .consult-feature-item {
        font-size: 13px;
    }

    .cf-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    /* Stack info boxes on mobile */
    .consult-info-boxes {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .consult-info-box {
        width: 100%;
        max-width: 300px;
        flex: unset;
        padding: 9px 14px 9px 9px;
        border-radius: 12px;
    }

    .consult-info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 8px;
    }

    .consult-info-icon img {
        width: 19px;
        height: 19px;
    }

    .consult-info-text strong {
        font-size: 13px;
    }

    .consult-info-text small {
        font-size: 9.5px;
    }
}

/* =============================================
   RESPONSIVE â€” VERY SMALL (â‰¤380px)
============================================= */
@media (max-width: 380px) {
    .consult-section {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .consult-form-card {
        padding: 16px 13px 15px;
        border-radius: 14px;
    }

    .consult-heading {
        font-size: 21px;
    }

    .consult-desc {
        font-size: 13px;
    }

    /* Force col-6 pair to full width on tiny screens */
    .consult-form-card .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .consult-info-box {
        max-width: 100%;
    }
}


/* ─── FOOTER ─── */
footer {
  background: #7b2d1e;
  color: rgba(255, 255, 255, 0.80);
  padding: 55px 0 0;
}

/* ── Brand ── */
.footer-brand {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* ── Description — NO fixed width ── */
footer p {
  font-size: 16px;
  line-height: 33px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;         /* ← fixed: was 450px, now full width */
  max-width: 100%;     /* ← prevents any overflow */
  text-align: justify;    /* ← justify looks bad on mobile */
}

/* ── Column headings ── */
.footer-heading {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

/* ── Quick Links & Useful Links ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 0;        /* cancel old padding-left animation */
}

/* ── Address ── */
.footer-address {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.85;
  margin-bottom: 16px;
  width: 100%;
}

/* ── Sub headings ── */
.footer-sub-heading {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  margin-top: 2px;
  width: 100%;
}

/* ── Contact & address links ── */
.footer-address a,
.footer-info a {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
  transition: color .2s;
}
.footer-address a:hover,
.footer-info a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ── Contact info text ── */
.footer-info {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.75;
  margin-bottom: 14px;
  width: 100%;
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 15px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Social Icons ── */
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  transition: color .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-social a:hover {
  color: #ffffff;
  transform: scale(1.18);
}

/* ── Arrow icon on Quick Links & Useful Links ── */
.footer-links a::before {
  content: '✔';
  font-size: 11px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.60);
  flex-shrink: 0;
  transition: color .2s;
}

/* Underline line — starts at 0 width, expands on hover */
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: #ffffff;
  transition: width 0.35s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  footer { padding: 36px 0 0; }
  .footer-brand { font-size: 18px; letter-spacing: 1px; }
  .footer-heading { font-size: 14px; margin-bottom: 14px; }
  .footer-links a { font-size: 13px; }
  footer p { font-size: 13px; text-align: left; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 15px;
  }
  .footer-social { gap: 18px; }
}

/* ─── DISCLAIMER MODAL ──────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 3, 1, .8);
  z-index: 9999;
  display: none; /* ← hidden by default, JS will show it */
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

/* Show class added by JS */
.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: linear-gradient(160deg, #7b2d1e 0%, #4a1005 100%);
  border: 1.5px solid rgba(200, 169, 110, .35);
  border-radius: 14px;
  padding: 44px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

.modal-box h2 {
  color: #c8a96e;
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.modal-box p {
  color: rgba(255, 255, 255, .85);
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-box h3 {
  color: #c8a96e;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.declaration-item {
  border: 1px solid rgba(200, 169, 110, .35);
  border-radius: 6px;
  padding: 12px 18px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  text-align: left;
}

.btn-agree {
  background: #c8a96e;
  color: #3b1a10;
  border: none;
  padding: 13px 50px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 24px;
  letter-spacing: 1px;
  transition: background .2s, transform .15s;
}

.btn-agree:hover {
  background: #dbb97e;
  transform: scale(1.03);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HAMBURGER ─────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #3b1a10;
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(60, 20, 10, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .navbar-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .section {
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .topbar {
    font-size: 11px;
  }

  .team-left {
    padding: 40px 20px;
  }

  .team-carousel-wrap {
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 26px;
  }
}