/* ============================================
   JEEL CREATIONS — style.css
   Brand: Deep Maroon #8B2420 | Cream #FAF7F2 | Gold #C9A84C
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary:     #8B2420;
  --primary-dark:#6B1A17;
  --gold:        #C9A84C;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE3;
  --text:        #1A1A1A;
  --text-muted:  #6B6B6B;
  --white:       #FFFFFF;
  --border:      #E2D9CF;
  --card-bg:     #FFFFFF;
  --whatsapp:    #25D366;
  --shadow:      rgba(139,36,32,0.10);
  --radius-lg:   1.25rem;
  --radius-xl:   1.75rem;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

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

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary   { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }
.btn-outline   { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-whatsapp  { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1EBE5D; transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.4rem; font-size: .875rem; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: 50px;
  background: rgba(139,36,32,.1);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }
.reveal-delay-7 { transition-delay: .7s; }

/* ================================================
   NAVBAR
   ================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(12px);
  border-color: var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
}
.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 1.5px solid rgba(139,36,32,.2);
  padding: 2px;
  object-fit: contain;
}
.nav-logo-text h1 { font-size: 1.15rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.nav-logo-text p  { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .85rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn { margin-top: 1rem; justify-content: center; }

/* ================================================
   HERO
   ================================================ */
#home {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 900px;
  width: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  margin-bottom: 2rem;
  object-fit: contain;
  background: white;
  padding: 6px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero-title span { color: var(--gold); }
.hero-tagline {
  font-size: clamp(.95rem, 2.5vw, 1.3rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 2.5rem;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
}

/* ================================================
   ABOUT
   ================================================ */
#about { padding: 7rem 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .badge { margin-bottom: 1.5rem; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.about-text p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.2rem; line-height: 1.8; }
.about-text .btn { margin-top: 1.5rem; }
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139,36,32,.05);
  border-radius: var(--radius-xl);
  transform: translate(16px, 16px);
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-badge-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.about-badge-icon {
  width: 52px; height: 52px;
  background: rgba(139,36,32,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.about-badge-card strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; display: block; }
.about-badge-card span { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }

/* ================================================
   PRODUCTS
   ================================================ */
#products { padding: 7rem 0; background: var(--cream-dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  cursor: default;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
}
.product-icon {
  width: 56px; height: 56px;
  background: rgba(139,36,32,.1);
  border-radius: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.product-card:hover .product-icon {
  background: var(--primary);
  color: var(--white);
}
.product-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--text); }
.product-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ================================================
   WHY CHOOSE US
   ================================================ */
#why-us { padding: 7rem 0; background: var(--primary); color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
#why-us h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; color: var(--white); }
#why-us .intro { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 3rem; }
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.why-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 500;
  font-size: .95rem;
}
.why-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.why-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-images img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 3/4;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.why-images img:first-child { transform: translateY(2rem); }

/* ================================================
   GALLERY
   ================================================ */
#gallery { padding: 7rem 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
#testimonials { padding: 7rem 0; background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 3rem;
  color: rgba(139,36,32,.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: .95rem; margin-bottom: 1.5rem; }
.testimonial-text {
  color: rgba(26,26,26,.75);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: .98rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.author-avatar {
  width: 48px; height: 48px;
  background: rgba(139,36,32,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .95rem; color: var(--text); }
.author-role { font-size: .8rem; color: var(--text-muted); }

/* ================================================
   CONTACT
   ================================================ */
#contact { padding: 7rem 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
#contact h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; color: var(--text); }
#contact .intro { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 52px; height: 52px;
  background: rgba(139,36,32,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.contact-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; color: var(--text); }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }
.contact-item a:hover { color: var(--primary); }
.map-wrap {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* FORM */
.inquiry-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 8px 40px var(--shadow);
}
.inquiry-form-card h3 { font-size: 1.85rem; font-weight: 700; margin-bottom: 2rem; color: var(--text); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: .75rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,36,32,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #e8f8ef;
  color: #1a7a42;
  border: 1px solid #b8e6cc;
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: #111111;
  color: rgba(255,255,255,.75);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand img {
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  margin-bottom: 1.5rem;
  object-fit: contain;
  background: white;
  padding: 4px;
}
.footer-brand p { font-size: .9rem; line-height: 1.8; max-width: 340px; margin-bottom: 1.75rem; }
.footer-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-btns .btn {
  font-size: .8rem;
  padding: .55rem 1.2rem;
  border-radius: 50px;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--transition);
}
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold); }
.footer-hours { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.footer-hours li { display: flex; justify-content: space-between; font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: .85rem; }
.footer-hours .day { color: rgba(255,255,255,.55); }
.footer-hours .time { color: var(--white); font-weight: 500; }
.footer-hours .closed { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.fab-wrap {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.fab-call { background: var(--primary); color: var(--white); display: none; }
.fab-wa   { background: var(--whatsapp); color: var(--white); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-links + a { display: none; }
  .nav-hamburger { display: flex; }

  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-img-wrap { margin-top: 2rem; }
  .about-badge-card { left: 0; bottom: -1.5rem; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }

  .why-images { grid-template-columns: 1fr; }
  .why-images img:first-child { transform: none; }

  .fab-call { display: flex; }

  .inquiry-form-card { padding: 2rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { justify-content: center; }
}
