/* =========================================================
   Warkop M. Aboe Talib — Premium Stylesheet
   Tema: Coklat & Putih (kayu dominan, putih aksen)
   ========================================================= */

:root {
  --coffee-900: #2b1a12;
  --coffee-800: #3d2817;
  --coffee-700: #54351f;
  --coffee-600: #6b4428;
  --coffee-500: #8a5a33;
  --coffee-400: #a97a4a;
  --coffee-300: #c69a63;
  --cream: #fbf6ef;
  --cream-2: #f3ead9;
  --white: #ffffff;
  --gold: #d4a24c;
  --wa: #25d366;
  --wa-dark: #1eb658;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 10px 30px rgba(43, 26, 18, 0.12);
  --shadow-lg: 0 20px 50px rgba(43, 26, 18, 0.2);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--sans);
  color: var(--coffee-800);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--wa));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(212, 162, 76, 0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  background: var(--coffee-800);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(212, 162, 76, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--coffee-800);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(43, 26, 18, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  box-shadow: 0 0 20px rgba(212, 162, 76, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--cream);
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.brand-text small {
  font-size: 0.72rem;
  color: var(--coffee-300);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--coffee-900);
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 162, 76, 0.3);
}

.nav-cta:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 162, 76, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--cream);
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  background:
    linear-gradient(rgba(43, 26, 18, 0.82), rgba(43, 26, 18, 0.88)),
    url('images/logo dan tempat/tempat.PNG') center/cover no-repeat fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 162, 76, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(212, 162, 76, 0.06), transparent 40%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 4px solid var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  animation: pulse-logo 3s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(212, 162, 76, 0.4);
  }
  50% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 20px rgba(212, 162, 76, 0);
  }
}

.hero-eyebrow {
  color: var(--coffee-300);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-title span {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 162, 76, 0.5);
}

.hero-tagline {
  color: var(--cream-2);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 28px;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 162, 76, 0.4);
  padding: 10px 20px;
  border-radius: 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(4px);
  animation: fadeInUp 1s ease 0.8s backwards;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 162, 76, 0.3);
  border-color: var(--gold);
}

.hero-badge .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-badge .rating {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.hero-badge .reviews {
  color: var(--cream-2);
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1s backwards;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--coffee-900);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 162, 76, 0.4);
}

/* ===== SECTION SHARED ===== */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: var(--coffee-300);
  color: var(--coffee-900);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.section-tag:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 162, 76, 0.3);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--coffee-800);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--coffee-500);
  margin-top: 10px;
  font-size: 1rem;
}

/* Wood texture divider */
.section-divider {
  height: 4px;
  max-width: 120px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  to {
    left: 100%;
  }
}

/* ===== ABOUT ===== */
.about {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coffee-800), var(--gold), var(--coffee-800));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-2);
  position: relative;
  transition: all 0.3s ease;
}

.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 162, 76, 0.1), transparent);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.about-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(43, 26, 18, 0.25);
}

.about-img:hover::before {
  opacity: 0;
}

.about-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text p {
  margin-bottom: 16px;
  color: var(--coffee-700);
  font-size: 1.05rem;
}

.about-text .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--coffee-600);
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  margin: 22px 0;
  position: relative;
  transition: all 0.3s ease;
}

.about-text .quote:hover {
  border-left-width: 8px;
  padding-left: 22px;
  color: var(--coffee-800);
}

.about-list {
  list-style: none;
  margin-top: 20px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--coffee-800);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-list li:hover {
  background: var(--cream-2);
  transform: translateX(5px);
}

.about-list li span {
  font-size: 1.3rem;
}

/* ===== MENU ===== */
.menu {
  padding: 90px 0;
  background:
    repeating-linear-gradient(0deg, rgba(139, 90, 51, 0.04) 0 2px, transparent 2px 8px),
    var(--cream-2);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coffee-600), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(43, 26, 18, 0.18);
}

.menu-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.menu-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(43, 26, 18, 0.1));
  pointer-events: none;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card:hover .menu-img img {
  transform: scale(1.08);
}

.menu-info {
  padding: 22px 24px;
}

.menu-info h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--coffee-800);
  margin-bottom: 8px;
}

.menu-desc {
  color: var(--coffee-500);
  font-size: 0.92rem;
  margin: 8px 0 16px;
}

.menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coffee-600);
  position: relative;
}

.menu-price::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-price::after {
  transform: scaleX(1);
}

.menu-order {
  background: var(--coffee-700);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-order::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.menu-order:hover::before {
  width: 200px;
  height: 200px;
}

.menu-order:hover {
  background: var(--gold);
  color: var(--coffee-900);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 162, 76, 0.4);
}

.menu-note {
  text-align: center;
  margin-top: 34px;
  color: var(--coffee-500);
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coffee-800), var(--gold), var(--coffee-800));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 162, 76, 0.2), transparent);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
  background: rgba(43, 26, 18, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  font-weight: 300;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 0;
  background:
    linear-gradient(rgba(43, 26, 18, 0.92), rgba(43, 26, 18, 0.96)),
    url('images/logo dan tempat/tempat 1.PNG') center/cover fixed;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonials .section-tag {
  background: var(--gold);
  box-shadow: 0 4px 15px rgba(212, 162, 76, 0.4);
}

.testimonials .section-title {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-family: var(--serif);
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testi-stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.testi-card blockquote {
  color: var(--cream);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testi-card figcaption {
  color: var(--coffee-300);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== LOCATION ===== */
.location {
  padding: 90px 0;
  background: var(--cream-2);
  position: relative;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coffee-800), var(--gold), var(--coffee-800));
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.loc-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.loc-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(43, 26, 18, 0.2);
}

.loc-info h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--coffee-800);
  margin-bottom: 18px;
}

.loc-info p {
  margin-bottom: 16px;
  color: var(--coffee-700);
  font-size: 1rem;
}

.loc-info .btn {
  margin-top: 10px;
}

.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
  transition: all 0.3s ease;
}

.loc-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(43, 26, 18, 0.2);
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coffee-800), var(--gold), var(--coffee-800));
}

.contact-card {
  background:
    linear-gradient(rgba(43, 26, 18, 0.9), rgba(43, 26, 18, 0.9)),
    url('images/Menu/kopi saring.PNG') center/cover;
  border-radius: 20px;
  text-align: center;
  padding: 60px 30px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.1), transparent 70%);
  animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(43, 26, 18, 0.3);
}

.contact-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.contact-card p {
  color: var(--cream-2);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--coffee-900);
  color: var(--cream-2);
  padding-top: 60px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--coffee-600), var(--gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo {
  box-shadow: 0 0 20px rgba(212, 162, 76, 0.6);
  transform: rotate(5deg);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--coffee-300);
}

.footer-col h4 {
  font-family: var(--serif);
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--coffee-300);
}

.footer-col a {
  display: block;
  color: var(--coffee-300);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-col a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-col a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 162, 76, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--coffee-400);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--wa);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  background: var(--wa-dark);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-img img {
    height: 360px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    flex-direction: column;
    background: var(--coffee-800);
    width: min(280px, 80vw);
    padding: 24px;
    gap: 18px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-radius: 0 0 0 14px;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 110px 0 60px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .back-to-top {
    bottom: 90px;
    right: 16px;
    width: 45px;
    height: 45px;
  }
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-text small {
    display: none;
  }
  .hero-badge {
    flex-direction: column;
    gap: 5px;
    padding: 12px 16px;
  }
  .hero-badge .reviews {
    font-size: 0.75rem;
  }
}

/* ===== LOADING ANIMATION ===== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== SMOOTH TRANSITIONS ===== */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* ===== SELECTION STYLE ===== */
::selection {
  background: var(--gold);
  color: var(--coffee-900);
}

::-moz-selection {
  background: var(--gold);
  color: var(--coffee-900);
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--coffee-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 6px;
  border: 3px solid var(--coffee-900);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--coffee-400);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--coffee-900);
}