/* ===========================
   BLADEHAUS — CSS
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --red: #d4191e;
  --red-dark: #a81216;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

html { 
  scroll-behavior: smooth; 
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.section-pad { padding: 100px 0; }

.text-red { color: var(--red) !important; }

/* ── NAVBAR ── */
#mainNav {
  background: transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(212,25,30,0.2);
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--white) !important;
}
.brand-slash {
  color: var(--red);
  margin-right: 2px;
}
.nav-link {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  padding: 6px 14px !important;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--red) !important; }

/* ── BUTTONS ── */
.btn-red {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: 0;
  padding: 12px 28px;
  transition: all 0.3s ease;
}
.btn-red:hover {
  background: transparent;
  color: var(--red);
}
.btn-outline-light {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  border-width: 2px;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--white);
}
.section-body {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
}
.text-outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* ── SECTION DIVIDER ── */
.section-divider { padding: 0; overflow: hidden; }
.divider-line {
  width: 120px;
  height: 3px;
  background: var(--red);
  margin: 0;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1400&q=80');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  overflow: hidden;
  width: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero-tag {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero-address {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 1px;
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero-ctas { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 14px;
  width: 100%;
}

.hero-scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-scroll-hint span {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}
.hero-arrows {
  position: absolute;
  left: 40px;
  bottom: 60px;
  display: flex;
  gap: 12px;
  z-index: 3;
}
.hero-arrow-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
.hero-arrow-btn:hover {
  border-color: var(--red);
  background: var(--red);
}

/* ── ABOUT ── */
.about-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about-img-wrap {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.about-img-accent {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 55%;
  height: 55%;
  background: var(--red);
  z-index: -1;
}
.about-badge {
  position: absolute;
  left: -10px;
  bottom: 60px;
  background: var(--black);
  border: 2px solid var(--red);
  padding: 20px 24px;
  z-index: 2;
}
.badge-num { display: block; color: var(--red); font-size: 1.1rem; }
.badge-txt { display: block; font-family: var(--font-condensed); font-size: 0.8rem; letter-spacing: 2px; color: var(--gray-light); text-transform: uppercase; }
.about-stats { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.about-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  letter-spacing: 10px;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

/* ── SERVICES ── */
.services-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(212,25,30,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(212,25,30,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
}
.service-name {
  font-family: var(--font-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-price {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.service-price span { color: var(--red); font-weight: 700; }
.service-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  transition: width 0.4s ease;
}
.service-card:hover .service-hover-line { width: 100%; }
.services-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 10px;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  padding: 120px 0 80px;
  background-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=1400&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.88);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 3px;
}
.cta-sub {
  font-size: 1rem;
  color: var(--gray-light);
  font-weight: 300;
}
.cta-opening {
  position: relative;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 50px;
}
.opening-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 900px;
  margin: 0 auto;
}
.opening-item {
  background: rgba(10,10,10,0.7);
  padding: 24px;
  text-align: center;
}
.opening-day {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.opening-time {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}
.opening-item.closed .opening-time { color: var(--red); }

/* ── GALLERY ── */
.gallery-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,25,30,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: all 0.4s ease;
}
.gallery-overlay span {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(212,25,30,0.6); }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); opacity: 1; }
.gallery-item:hover { transform: scale(1.02); z-index: 1; }
.gallery-watermark {
  position: absolute;
  bottom: -10px;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 10px;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

/* ── BOOKING ── */
.booking-section {
  background: var(--dark2);
  position: relative;
}
.booking-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 40px;
  position: relative;
}
.booking-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--red);
}
.form-title {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.form-label-dark {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  display: block;
}
.dark-input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  padding: 12px 16px !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.dark-input:focus {
  border-color: var(--red) !important;
  box-shadow: none !important;
  outline: none !important;
  background: rgba(212,25,30,0.05) !important;
}
.dark-input option { background: var(--dark3); color: var(--white); }
.dark-input::placeholder { color: rgba(255,255,255,0.3) !important; }
.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}
.booking-info { display: flex; flex-direction: column; gap: 24px; }
.binfo-item { display: flex; gap: 16px; align-items: flex-start; }
.binfo-item i { font-size: 1.2rem; margin-top: 2px; }
.binfo-item strong {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 4px;
}
.binfo-item span { font-size: 0.95rem; color: var(--white); }

/* ── CLICKABLE BOOKING INFO ── */
.binfo-item--clickable {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 16px;
  margin: -16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.binfo-item--clickable::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--red);
  transition: height 0.3s ease;
}

.binfo-item--clickable:hover {
  background: rgba(212, 25, 30, 0.08);
  transform: translateX(8px);
}

.binfo-item--clickable:hover::before {
  height: 100%;
}

.binfo-item--clickable:hover i {
  font-size: 1.4rem;
  transform: scale(1.15);
  transition: all 0.3s ease;
}

.binfo-item--clickable:hover strong {
  color: var(--red);
}

.binfo-item--clickable:hover span {
  color: var(--red-dark);
}

/* ── FOOTER ── */
.footer-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.footer-top { padding: 80px 0 60px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--white) !important;
  text-decoration: none;
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-heading {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  letter-spacing: 10px;
  color: rgba(255,255,255,0.02);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ── ANIMATIONS ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.9s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1.1s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .about-img-wrap { height: 400px; margin-top: 20px; }
  .opening-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; height: 300px; }
  .gallery-item { height: 200px; }
  .hero-arrows, .hero-scroll-hint { display: none; }
  .booking-form-wrap { padding: 28px 20px; }
  .hero-title { font-size: clamp(6.5rem, 15vw, 5.7rem); }
  .section-title { font-size: clamp(3.8rem, 5vw, 5rem); }
  .cta-title { font-size: clamp(3.8rem, 6vw, 5rem); }
  .service-card { padding: 24px 20px; }
  .hero-section { background-attachment: scroll; }
  .cta-section { background-attachment: scroll; }
}

@media (max-width: 768px) {
  html { width: 100%; }
  body { width: 100%; }
  .container { width: 100%; padding-left: 15px; padding-right: 15px; }
  .hero-ctas { 
    flex-direction: column; 
    width: 100%;
  }
  .hero-ctas .btn { 
    text-align: center;
    width: 100%;
  }
  .hero-address {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .gallery-item.large { height: 240px; }
  .gallery-item { height: 160px; }
  .opening-grid { grid-template-columns: repeat(2, 1fr); }
  .opening-item { padding: 18px 12px; }
  .navbar-brand { font-size: 1.4rem; }
  .hero-title { font-size: clamp(4.2rem, 9vw, 4.8rem); }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.8rem); }
  .cta-title { font-size: clamp(1.8rem, 6vw, 3.5rem); }
  .section-pad { padding: 70px 0; }
  .cta-opening { margin-top: 50px; padding-top: 40px; }
  .hero-sub { font-size: 0.98rem; }
  .service-card { padding: 24px 18px; }
  .hero-content { padding-left: 0; padding-right: 0; }
  .btn-lg { padding: 12px 24px !important; font-size: 0.8rem !important; }
  .about-img-wrap { height: 350px; }
  .footer-top { padding: 60px 0 40px; }
}

@media (max-width: 600px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { 
    width: 100%;
    padding: 10px 16px !important;
    font-size: 0.75rem !important;
  }
  .opening-grid { grid-template-columns: 1fr; }
  .opening-item { padding: 16px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 4px; }
  .gallery-item.large { grid-column: span 1; height: 200px; }
  .gallery-item { height: 150px; }
  .navbar-brand { font-size: 1.2rem; letter-spacing: 2px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .section-title { font-size: clamp(1.4rem, 4.5vw, 2.5rem); }
  .cta-title { font-size: clamp(1.5rem, 5.5vw, 3rem); }
  .section-pad { padding: 60px 0; }
  .cta-opening { margin-top: 40px; padding-top: 30px; }
  .hero-sub { font-size: 0.9rem; }
  .service-card { padding: 18px 14px; }
  .about-img-wrap { height: 280px; }
  .booking-form-wrap { padding: 24px 16px; }
  .btn-lg { padding: 10px 18px !important; font-size: 0.72rem !important; }
  .nav-link { font-size: 0.8rem; padding: 4px 10px !important; }
  .footer-socials { gap: 8px; }
  .social-btn { width: 34px; height: 34px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .hero-ctas { flex-direction: column; gap: 8px; }
  .hero-ctas .btn { 
    text-align: center;
    width: 100%;
    padding: 9px 14px !important;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; height: 180px; }
  .gallery-item { height: 130px; }
  .navbar-brand { font-size: 1.1rem; }
  .hero-title { font-size: clamp(4.2rem, 7vw, 3.2rem); }
  .section-title { font-size: clamp(2rem, 4vw, 1.5rem); }
  .cta-title { font-size: clamp(2.5rem, 5vw, 2.8rem); }
  .section-pad { padding: 50px 0; }
  .hero-sub { font-size: 0.85rem; }
  .service-card { padding: 16px 12px; }
  .about-img-wrap { height: 250px; }
  .booking-form-wrap { padding: 20px 14px; }
  .footer-socials { gap: 6px; }
  .social-btn { width: 30px; height: 30px; font-size: 0.75rem; }
  .btn-lg { padding: 8px 16px !important; font-size: 0.7rem !important; }
  .nav-link { font-size: 0.75rem; }
}
