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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Poppins Medium';
  src: url('assets/fonts/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
}
/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: #e0d9c8;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-fallback {
  background: linear-gradient(135deg, #2c3e50 0%, #4a6374 50%, #2c3e50 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.btn-primary {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 44px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: #fff;
  color: #1a1a1a;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  padding: 90px 0 80px;
  background: #fff;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.services-desc {
  text-align: center;
  color: #555;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.service-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.tag {
  background: #1a1a1a;
  color: #fff;
  padding: 9px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ways-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 36px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

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

.way-card {
  text-align: center;
  padding: 24px 24px 36px;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.way-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.way-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.way-card p {
  color: #666;
  font-size: 0.93rem;
  line-height: 1.7;
  flex: 1;
}

/* ===========================
   OUR STORY
   =========================== */
.story {
  position: relative;
  padding: 100px 0;
  background: #2c3e50;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 80px
    );
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(44,62,80,0.8) 100%);
}

.story-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.story-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  font-weight: 400;
}

.story-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.story-body {
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
}

.btn-secondary {
  display: inline-block;
  padding: 13px 42px;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 90px 0 80px;
  background: #f7f6f3;
}

.contact .section-title {
  margin-bottom: 52px;
}

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

.contact-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a1a1a;
}

.contact-block p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.9;
}

.contact-block a {
  color: #555;
  transition: color 0.2s;
  display: block;
}

.contact-block a:hover {
  color: #1a1a1a;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  color: #555;
  font-size: 0.93rem;
}

.hours-table td {
  padding: 4px 0;
  vertical-align: top;
}

.hours-table td:first-child {
  font-weight: 700;
  color: #333;
  width: 50%;
  padding-right: 12px;
}

.closed-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ===========================
   SCROLL INDICATOR (mobile only)
   =========================== */
.scroll-downs {
  display: none;
}

@media (max-width: 768px) {
  .scroll-downs {
    display: block;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 34px;
    height: 55px;
  }

  .mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
  }

  .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
  }

  @keyframes scroll {
    0%   { opacity: 0; }
    10%  { transform: translateY(0);    opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
  }
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================
   WHATSAPP FAB (mobile only)
   =========================== */
.whatsapp-fab {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .whatsapp-fab {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    background: #25D366;
    color: #fff;
    padding: 13px 20px 13px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;

    /* Hidden by default — appears after scrolling past hero */
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .whatsapp-fab.fab-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .whatsapp-fab:active {
    transform: scale(0.96);
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    /* Turns a dark/colored SVG white to match the button text */
    filter: brightness(0) invert(1);
  }

  .whatsapp-label {
    white-space: nowrap;
  }
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  /* Navbar */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    padding: 12px 0;
  }

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

  .nav-links a {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a::after {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  /* Services */
  .ways-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-tags {
    gap: 10px;
  }

  .tag {
    padding: 8px 20px;
    font-size: 0.82rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Story */
  .story {
    padding: 72px 0;
  }

  /* Sections */
  .services,
  .contact {
    padding: 64px 0 56px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 0.08em;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 32px;
    font-size: 0.82rem;
  }

  .way-card {
    padding: 28px 20px;
  }
}
/* Card image */
.card-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  margin-bottom: 8px;
}

/* Payment methods */
.payment-block {
  margin-top: 52px;
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid #e0ddd6;
}

.payment-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-icons img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.payment-icons img:hover {
  opacity: 1;
}