
/* ═══════════════════════════════════════════
   ROOT TOKENS
═══════════════════════════════════════════ */
:root {
  --orange: #ff7b00;
  --orange-light: #ff9a3c;
  --orange-dim: rgba(255,123,0,0.12);
  --dark: #111111;
  --nav: #1a1a1a;
  --text: #222222;
  --muted: #666666;
  --bg: #f9f7f4;
  --white: #ffffff;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--white); letter-spacing: 1px;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  color: #ccc; font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--orange-dim); }
.nav-links a.admin-link { color: var(--orange); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ── SECTIONS ───────────────────────────── */
section { padding: 100px 40px 80px; max-width: 1200px; margin: 0 auto; }
section:first-of-type { padding-top: 0; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-align: center; margin-bottom: 12px;
}
.section-sub {
  text-align: center; color: var(--muted);
  font-size: 1rem; margin-bottom: 56px;
}
.section-title span { color: var(--orange); }
.divider {
  width: 60px; height: 3px;
  background: var(--orange);
  margin: 14px auto 0; border-radius: 2px;
}

/* ── HERO ───────────────────────────────── */
#home {
  padding: 0; max-width: 100%;
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(255,123,0,0.15) 0%, transparent 50%),
    linear-gradient(to bottom, #111 0%, #1a1a1a 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,123,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,123,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 100px 40px 60px;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid var(--orange-dim);
  padding: 6px 18px; border-radius: 20px;
  margin-bottom: 28px;
  background: rgba(255,123,0,0.06);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--orange); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #aaa; font-weight: 300;
  letter-spacing: 0.5px; margin-bottom: 44px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 36px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  border: 2px solid var(--orange);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 36px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: #555; font-size: 0.8rem; letter-spacing: 2px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll i { color: var(--orange); font-size: 1rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ── PACKAGES ───────────────────────────── */
#packages { background: transparent; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.pkg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.pkg-card:hover { border-color: var(--orange-dim); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff9f4, #fff);
}
.pkg-card.featured::before { transform: scaleX(1); }
.pkg-badge {
  position: absolute; top: 16px; right: -1px;
  background: var(--orange); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 14px; text-transform: uppercase;
  border-radius: 4px 0 0 4px;
}
.pkg-icon { font-size: 2rem; margin-bottom: 16px; }
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  margin-bottom: 8px;
}
.pkg-price {
  font-size: 2.2rem; font-weight: 800; color: var(--orange);
  line-height: 1; margin-bottom: 4px;
}
.pkg-price small { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pkg-divider { height: 1px; background: #eee; margin: 20px 0; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pkg-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
}
.pkg-features li i { color: var(--orange); font-size: 0.75rem; flex-shrink: 0; }
.pkg-cta {
  display: block; text-align: center;
  margin-top: 28px;
  background: var(--orange); color: #fff;
  padding: 12px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.pkg-cta:hover { background: var(--orange-light); }

/* ── PORTFOLIO ──────────────────────────── */
#portfolio { background: var(--white); border-radius: 24px; padding: 80px 40px; }
.portfolio-filters {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px; border-radius: 20px; font-size: 0.85rem; font-weight: 500;
  border: 1.5px solid #e0e0e0; background: transparent; cursor: pointer;
  transition: var(--transition); color: var(--muted);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange); border-color: var(--orange);
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.portfolio-item {
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative; cursor: pointer;
  aspect-ratio: 4/3;
  background: #eee;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-text { color: #fff; }
.portfolio-overlay-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.portfolio-overlay-text span {
  font-size: 0.75rem; background: var(--orange);
  padding: 2px 10px; border-radius: 12px;
}
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #aaa; gap: 8px; font-size: 0.85rem;
  background: #f5f5f5;
}
.portfolio-placeholder i { font-size: 2rem; }

/* ── SHOP ───────────────────────────────── */
#shop { background: transparent; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--card-shadow); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.product-img {
  width: 100%; height: 200px; object-fit: cover;
  background: #f0eded;
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 2.5rem;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 20px; }
.product-cat {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px;
}
.product-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price { font-size: 1.4rem; font-weight: 800; color: var(--orange); }
.btn-cart {
  background: var(--dark); color: var(--white);
  border: none; padding: 9px 18px; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.btn-cart:hover { background: var(--orange); }

/* ── CONTACT ────────────────────────────── */
#contact {
  background: var(--dark);
  border-radius: 24px; color: var(--white);
  max-width: 100%; margin: 0;
  padding: 100px 40px 80px;
}
#contact .section-title { color: var(--white); }
#contact .section-sub { color: #999; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; max-width: 1000px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid rgba(255,123,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #777; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: #ddd; }
.contact-item a { color: var(--orange-light); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.9rem; font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,123,0,0.06);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-msg { font-size: 0.85rem; padding: 10px 14px; border-radius: 6px; display: none; }
.form-msg.success { background: rgba(0,200,100,0.15); color: #4caf50; border: 1px solid rgba(0,200,100,0.2); display: block; }
.form-msg.error   { background: rgba(255,80,80,0.15);  color: #f44336; border: 1px solid rgba(255,80,80,0.2);  display: block; }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: #0d0d0d; color: #666;
  text-align: center; padding: 32px 40px;
  font-size: 0.85rem;
}
footer a { color: var(--orange); }

/* ── ADMIN ──────────────────────────────── */
#admin { background: var(--white); border-radius: 24px; }
#admin-login {
  max-width: 420px; margin: 0 auto;
  text-align: center;
}
.admin-login-box {
  background: var(--bg); border-radius: var(--radius);
  padding: 48px 36px; box-shadow: var(--card-shadow);
}
.admin-login-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; margin-bottom: 8px;
}
.admin-login-box p { color: var(--muted); margin-bottom: 28px; font-size: 0.9rem; }
.admin-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px; font-family: inherit;
  font-size: 0.95rem; outline: none;
  transition: var(--transition);
  margin-bottom: 12px;
  background: var(--white);
}
.admin-input:focus { border-color: var(--orange); }
.btn-admin-login {
  width: 100%; background: var(--orange); color: #fff;
  border: none; padding: 14px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-admin-login:hover { background: var(--orange-light); }
#admin-panel { display: none; }
.admin-tabs {
  display: flex; border-bottom: 2px solid #eee;
  margin-bottom: 36px; gap: 4px;
}
.admin-tab {
  padding: 12px 24px; cursor: pointer;
  font-size: 0.88rem; font-weight: 600;
  border-radius: 8px 8px 0 0; color: var(--muted);
  transition: var(--transition); border: none; background: none;
  font-family: inherit;
}
.admin-tab:hover { color: var(--orange); }
.admin-tab.active { color: var(--orange); border-bottom: 2px solid var(--orange); margin-bottom: -2px; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-form {
  background: var(--bg); border-radius: var(--radius);
  padding: 32px; margin-bottom: 40px;
}
.admin-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 24px;
}
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form-group { display: flex; flex-direction: column; gap: 6px; }
.admin-form-group.full { grid-column: 1 / -1; }
.admin-form-group label { font-size: 0.8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; }
.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  padding: 10px 14px; border: 1.5px solid #e0e0e0;
  border-radius: 8px; font-family: inherit;
  font-size: 0.9rem; outline: none;
  transition: var(--transition); background: var(--white);
}
.admin-form-group input:focus,
.admin-form-group textarea:focus { border-color: var(--orange); }
.admin-form-group textarea { resize: vertical; min-height: 80px; }
.img-preview-box {
  border: 2px dashed #ddd; border-radius: 8px;
  overflow: hidden; min-height: 120px;
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 0.85rem; flex-direction: column; gap: 6px;
  cursor: pointer; transition: var(--transition);
}
.img-preview-box:hover { border-color: var(--orange); color: var(--orange); }
.img-preview-box img { max-height: 180px; object-fit: cover; }
.btn-submit {
  background: var(--orange); color: var(--white);
  border: none; padding: 12px 32px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); font-family: inherit;
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit:hover { background: var(--orange-light); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.admin-list { display: flex; flex-direction: column; gap: 12px; }
.admin-list-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg); border-radius: 10px;
  padding: 14px 18px;
}
.admin-list-item img {
  width: 60px; height: 60px; object-fit: cover;
  border-radius: 6px; flex-shrink: 0;
  background: #eee;
}
.admin-list-item .item-info { flex: 1; }
.admin-list-item .item-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.admin-list-item .item-info p { font-size: 0.8rem; color: var(--muted); }
.btn-delete {
  background: #fff0f0; color: #e53935;
  border: 1.5px solid #ffcdd2;
  padding: 7px 16px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: inherit;
  white-space: nowrap;
}
.btn-delete:hover { background: #e53935; color: #fff; border-color: #e53935; }
.enquiry-card {
  background: var(--bg); border-radius: 10px;
  padding: 20px 24px; border-left: 3px solid var(--orange);
}
.enquiry-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.enquiry-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.enquiry-card .msg { font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.enquiry-card .ts { font-size: 0.75rem; color: #bbb; margin-top: 10px; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 600; }
.badge-new { background: rgba(255,123,0,0.12); color: var(--orange); }
.upload-progress {
  height: 4px; background: #eee; border-radius: 2px;
  margin-top: 6px; overflow: hidden; display: none;
}
.upload-progress-bar {
  height: 100%; background: var(--orange);
  transition: width 0.3s; border-radius: 2px; width: 0%;
}
.status-msg {
  padding: 10px 14px; border-radius: 6px; font-size: 0.85rem;
  margin-top: 10px; display: none;
}
.status-msg.success { background: rgba(0,200,100,0.1); color: #388e3c; display: block; }
.status-msg.error   { background: rgba(255,80,80,0.1);  color: #c62828; display: block; }
.empty-state {
  text-align: center; color: var(--muted);
  padding: 60px 20px; font-size: 0.9rem;
}
.empty-state i { font-size: 2.5rem; margin-bottom: 12px; color: #ddd; }

/* ── MODAL LIGHTBOX ─────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: #fff; font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ── TOAST ──────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  background: var(--dark); color: #fff;
  padding: 14px 22px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(20px); opacity: 0;
  transition: all 0.3s; pointer-events: none;
  display: flex; align-items: center; gap: 10px;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid #4caf50; }
.toast.error   { border-left: 3px solid #f44336; }

/* ── WHATSAPP FLOAT ─────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); background: #20ba5a; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--nav); flex-direction: column; padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 70px 20px 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 90px 24px 60px; }
  #contact { padding: 80px 24px 60px; }
}
@media (max-width: 600px) {
  .packages-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}