/* ═══════════════════════════════════════════════════
   Gift & Award Factory — Burnt Orange + Dark Gold
   ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #3B1A08;
  --navy-light: #5C2D12;
  --navy-mid: #7A3E1A;
  --copper: #E8820C;
  --copper-light: #F5A623;
  --copper-dark: #C56A08;
  --rose-gold: #D4943A;
  --cream: #FFF8F0;
  --off-white: #FDF5ED;
  --text-dark: #2E1A0A;
  --text-mid: #5A4A3A;
  --text-light: #8A7A6A;
  --white: #FFFFFF;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --shadow-sm: 0 2px 8px rgba(59,26,8,0.08);
  --shadow-md: 0 8px 30px rgba(59,26,8,0.12);
  --shadow-lg: 0 20px 60px rgba(59,26,8,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(59,26,8,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,130,12,0.2);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(59,26,8,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo span {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.15rem; color: var(--copper-light);
  letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--copper); border-radius: 2px; transition: var(--transition);
}
.nav-links a:hover { color: var(--copper-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white) !important; padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.5px;
  transition: var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,130,12,0.4); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2.5px; background: var(--copper-light);
  border-radius: 3px; transition: var(--transition);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #4A2210 40%, var(--navy-light) 100%);
  overflow: hidden; padding-top: 72px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: radial-gradient(circle at 25% 25%, var(--copper) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(232,130,12,0.6) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,130,12,0.18) 0%, transparent 70%);
  top: -100px; right: -100px; animation: pulseGlow 6s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,130,12,0.12) 0%, transparent 70%);
  bottom: -50px; left: -50px; animation: pulseGlow 8s ease-in-out infinite reverse;
}
@keyframes pulseGlow { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 1; } }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
  color: var(--copper-light); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white);
  margin-bottom: 20px; font-weight: 800;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero h1 .accent { color: var(--copper-light); }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px;
  max-width: 520px; animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white); padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(232,130,12,0.4); }
.btn-outline {
  border: 2px solid rgba(232,130,12,0.5); color: var(--copper-light);
  padding: 12px 34px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; background: transparent; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  background: rgba(232,130,12,0.15); border-color: var(--copper);
  transform: translateY(-3px);
}

.hero-image {
  position: relative; animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-image img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; height: 460px; object-fit: cover;
}
.hero-image::before {
  content: ''; position: absolute; inset: -12px; border-radius: 20px;
  border: 2px solid rgba(232,130,12,0.2); z-index: -1;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 800; color: var(--copper-light);
}
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ─── SECTION STYLES ─────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); }
.section-cream { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .overline {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  color: var(--copper); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { color: var(--text-mid); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.section-dark .section-header .overline { color: var(--copper-light); }

/* ─── PRODUCT CARDS ──────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
}
.product-card .card-image {
  position: relative; overflow: hidden; height: 260px;
}
.product-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .card-image img { transform: scale(1.08); }
.product-card .card-badge {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white); padding: 5px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.product-card .card-body { padding: 24px; }
.product-card h3 {
  font-size: 1.3rem; margin-bottom: 10px; color: var(--navy);
}
.product-card p {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.7;
}
.product-card .card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px;
}
.product-card .tag {
  background: var(--cream); color: var(--copper-dark);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
}

/* ─── DARK CARDS (for dark sections) ─────────────── */
.products-grid-dark .product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.products-grid-dark .product-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,130,12,0.3);
}
.products-grid-dark .product-card h3 { color: var(--white); }
.products-grid-dark .product-card p { color: rgba(255,255,255,0.6); }
.products-grid-dark .tag {
  background: rgba(232,130,12,0.15); color: var(--copper-light);
}

/* ─── WHY CHOOSE US ──────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,130,12,0.4);
  transform: translateY(-6px);
}
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; color: var(--white);
}
.feature-card h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ─── INQUIRY FORM ───────────────────────────────── */
.inquiry-section { background: var(--cream); }
.inquiry-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}
.inquiry-info h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 16px; }
.inquiry-info p { color: var(--text-mid); margin-bottom: 30px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--copper-light); font-size: 1.1rem;
}
.contact-item .text h5 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; font-family: 'Inter',sans-serif; }
.contact-item .text p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

.inquiry-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}
.inquiry-form-wrap h3 {
  font-size: 1.4rem; color: var(--navy); margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid #E0D8CF; background: var(--off-white);
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  color: var(--text-dark); transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--copper); box-shadow: 0 0 0 3px rgba(232,130,12,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.captcha-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--cream); padding: 12px 16px;
  border-radius: var(--radius-sm); margin-bottom: 18px;
}
.captcha-row .question {
  font-weight: 700; color: var(--navy); font-size: 0.95rem; white-space: nowrap;
}
.captcha-row input { max-width: 80px; text-align: center; }

.btn-submit {
  width: 100%; padding: 14px; border: none; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,26,8,0.3);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
  margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.88rem; display: none;
}
.form-status.success { display: block; background: #E8F5E9; color: #2E7D32; }
.form-status.error { display: block; background: #FFEBEE; color: #C62828; }

/* ─── MAP SECTION ────────────────────────────────── */
.map-section { background: var(--navy); padding: 80px 0 0; }
.map-section .section-header { margin-bottom: 0; }
.map-wrap {
  width: 100%; height: 400px; border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; margin-top: 40px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: #1A0E06; padding: 60px 0 0;
  border-top: 1px solid rgba(232,130,12,0.15);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 14px; line-height: 1.8; }
.footer-col h4 {
  color: var(--copper-light); font-family: 'Inter',sans-serif;
  font-size: 0.88rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--copper-light); padding-left: 4px; }

.footer-bottom {
  margin-top: 40px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE NAV ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none; position: fixed; top: 72px; left: 0; width: 100%;
    background: rgba(59,26,8,0.98); flex-direction: column;
    padding: 24px; gap: 0; border-top: 1px solid rgba(232,130,12,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
  .nav-cta { margin-top: 10px; text-align: center; display: block; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { height: 300px; }

  .products-grid { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero h1 { font-size: 2rem; }
  .inquiry-form-wrap { padding: 24px; }
}

/* ─── WHATSAPP FLOAT ─────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
