*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #d4451a;
  --primary-btn: #ff5e2e;
  --accent: #2d5a27;
  --bg: #ffffff;
  --surface: #f8f7f4;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e5e2dc;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ── HERO ── */
/* Hero styles are provided by css/styles.css so the section matches index.html */

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary-btn);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-badge.light {
  background: #fff4f0;
  color: var(--primary);
}

/* ── PACKAGES ── */
.packages {
  padding: 80px 20px;
  background: var(--surface);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-top: 12px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pkg-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.pkg-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.pkg-card.popular {
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(212, 69, 26, 0.15);
}
.popular-badge {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px;
}
.pkg-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-guests {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pkg-name {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.pkg-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.pkg-price {
  margin-bottom: 20px;
}
.pkg-price strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.pkg-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 4px;
}
.pkg-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.pkg-features li i {
  color: var(--accent);
  font-size: 0.85rem;
}
.pkg-btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
}

.pkg-btn:hover,
.pkg-card.popular .pkg-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pkg-card.popular .pkg-btn:hover {
  background: var(--primary-btn);
  border-color: var(--primary-btn);
}

/* ── GALLERY ── */
.gallery {
  padding: 80px 20px;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item:nth-child(1) {
  grid-row: span 2;
}
.gallery-item:nth-child(6) {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-row: span 1;
  }
}

/* ── ENQUIRY ── */
.enquiry {
  padding: 80px 20px;
  background: var(--surface);
}
.enquiry-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .enquiry-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.enquiry-info h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 12px 0;
  line-height: 1.3;
}
.enquiry-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.contact-detail i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-full {
  grid-column: 1 / -1;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 2px;
}
.form-submit {
  width: auto;
  margin-top: 6px;
}
.success-msg {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25d366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.whatsapp-fab:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* ── FOOTER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  transition: background-color 150ms ease;
}
.social-links a:hover {
  background-color: var(--primary-btn);
}
.footer-links h4,
.footer-newsletter h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 150ms ease;
}
.footer-links a:hover {
  color: var(--primary-btn);
}
.footer-newsletter > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 150ms ease;
}
.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
