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

:root {
  --yellow: #f5c518;
  --yellow-dark: #d4a800;
  --black: #0a0a0a;
  --black-soft: #111;
  --black-card: #161616;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 3px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  transition: 0.4s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
  padding: 14px 6%;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 2px;
  text-decoration: none;
}

.logo span {
  color: var(--white);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: 0.35s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  padding: 18px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s;
}

.mobile-drawer a:hover {
  color: var(--yellow);
}

.mobile-drawer .drawer-cta {
  background: var(--yellow);
  color: var(--black) !important;
  margin-top: 20px;
  border-radius: 2px;
  border: none;
  font-size: 1rem !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif !important;
  font-weight: 700 !important;
  width: calc(100% - 80px);
  text-align: center;
  padding: 16px 40px !important;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  /* Row 1: spacer nav | Row 2: main content | Row 3: stats bar */
  grid-template-rows: 80px 1fr auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    url("https://images.unsplash.com/photo-1562322140-8baeececf3df?w=1600&q=80")
      center/cover;
}

.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
}

/* The actual content sits in row 2, centred vertically */
.hero-content {
  position: relative;
  z-index: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 6% 48px;
  max-width: 720px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 197, 24, 0.4);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.06;
  font-weight: 900;
  margin-bottom: 22px;
}

.gold {
  color: var(--yellow);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-p {
  background: var(--yellow);
  color: var(--black);
  padding: 15px 34px;
  border: none;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 28px rgba(245, 197, 24, 0.35);
  transition: 0.3s;
  display: inline-block;
}

.btn-p:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(245, 197, 24, 0.45);
}

.btn-o {
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-o:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* Stats — always in row 3, full width */
.hero-stats {
  position: relative;
  z-index: 2;
  grid-row: 3;
  display: flex;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  flex: 1;
  text-align: center;
  padding: 22px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-l {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 5px;
  line-height: 1.4;
}

/* ── SECTIONS ── */
section {
  padding: 90px 6%;
}

.lbl {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 10px;
}

.h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}

.desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
}

.divider {
  width: 44px;
  height: 2px;
  background: var(--yellow);
  margin: 16px 0;
}

/* ── ABOUT ── */
#about {
  background: var(--black-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 4px;
  display: block;
  filter: brightness(0.88);
}

.img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  color: var(--black);
  padding: 20px 26px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
}

.img-badge .big {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.img-badge .sm {
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feat-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.feat h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.feat p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ── SERVICES ── */
#services {
  background: var(--black);
  padding: 90px 0;
}

.svc-header {
  padding: 0 6% 48px;
}

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

.svc-card {
  background: var(--black-card);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.svc-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  transform: translateY(-3px);
}

.svc-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(245, 197, 24, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.svc-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.svc-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 14px;
}

.svc-price {
  font-size: 0.84rem;
  color: var(--yellow);
  font-weight: 600;
}

/* ── GALLERY ── */
#gallery {
  background: var(--black-soft);
  padding: 90px 0;
}

.gallery-hdr {
  padding: 0 6% 44px;
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-slide {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.c-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s,
    filter 0.4s;
  filter: brightness(0.82) saturate(0.85);
}

.c-slide:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.slide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.c-slide:hover .slide-ov {
  opacity: 1;
}

.slide-tag {
  background: var(--yellow);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.c-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0 6%;
}

.c-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  background: transparent;
  color: var(--yellow);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.dots {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}

.dot {
  width: 7px;
  height: 7px;
  background: rgba(245, 197, 24, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.dot.active {
  background: var(--yellow);
  transform: scale(1.35);
}

/* ── TEAM ── */
#team {
  background: var(--black);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.team-card {
  border-radius: 4px;
  background: var(--black-card);
  overflow: hidden;
}

.team-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition:
    filter 0.4s,
    transform 0.4s;
}

.team-card:hover .team-img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.team-info {
  padding: 18px 16px;
}

.team-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.role {
  font-size: 0.68rem;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 0;
  font-family: "Playfair Display", serif;
  font-size: 26rem;
  color: rgba(245, 197, 24, 0.04);
  pointer-events: none;
  line-height: 1;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.testi-card {
  background: var(--black-card);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.testi-card:hover {
  border-color: rgba(245, 197, 24, 0.2);
  transform: translateY(-3px);
}

.stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 197, 24, 0.3);
}

.author-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.author-tag {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── BOOKING ── */
#booking {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-ico {
  width: 40px;
  height: 40px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.c-item span {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-box {
  background: var(--black-card);
  padding: 40px 36px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.form-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.form-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 26px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.f-group label {
  display: block;
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 7px;
}

.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 12px 14px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--yellow);
}

.f-group select option {
  background: #1a1a1a;
}

.f-group textarea {
  resize: vertical;
  min-height: 84px;
}

.f-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  padding: 15px;
  border: none;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 4px;
}

.f-submit:hover {
  background: var(--yellow-dark);
}

/* ── FOOTER ── */
footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 6% 32px;
}

.ft {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.fb p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 260px;
}

.fsoc {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.fsoc a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.fsoc a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.fc h4 {
  font-size: 0.67rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 16px;
}

.fc ul {
  list-style: none;
}

.fc li {
  margin-bottom: 9px;
}

.fc a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}

.fc a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── WHATSAPP ── */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  z-index: 9999;
  background: var(--yellow);
  color: var(--black);
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.4s,
    opacity 0.4s;
  opacity: 0;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none !important;
  }

  /* Hero mobile: stack content then stats */
  #hero {
    grid-template-rows: 70px 1fr auto;
  }

  .hero-content {
    padding: 24px 5% 36px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 9vw, 3.4rem);
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .stat-n {
    font-size: 1.6rem;
  }

  .stat-l {
    font-size: 0.55rem;
  }

  section {
    padding: 68px 5%;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-img-wrap {
    margin-bottom: 40px;
  }

  .img-badge {
    right: 12px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  #services {
    padding: 68px 0;
  }

  .svc-header {
    padding: 0 5% 36px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    padding: 28px 5%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }

  .svc-card::before {
    right: 0;
    bottom: auto;
    top: 0;
    height: 3px;
  }

  .svc-left {
    flex-shrink: 0;
  }

  .svc-num {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .svc-icon {
    font-size: 1.4rem;
    margin-bottom: 0;
    margin-top: 4px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  #booking {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-p,
  .btn-o {
    width: 100%;
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .ft {
    grid-template-columns: 1fr;
  }
}
