/* ============================================================
   ROYALSWAD — DEEPA Enterprises | style.css
   ============================================================
   CUSTOMISATION GUIDE:
   - Change brand colors in :root (top of file)
   - Change fonts: search "font-family" and update Google Fonts link in index.html too
   - Change section backgrounds: search the section ID e.g. #about, #products
   ============================================================ */

/* ===== THEME VARIABLES — edit these to rebrand ===== */
:root {
  --gold:        #C9A84C;   /* Primary accent — buttons, highlights */
  --gold-light:  #E8C97A;   /* Hover state of gold */
  --gold-dark:   #8B6914;   /* Deep gold for gradients */
  --dark:        #0D0B08;   /* Main dark background */
  --dark2:       #1A1610;   /* Products section background */
  --cream:       #F5EFE0;   /* Light cream */
  --cream2:      #FAF6EE;   /* Page background */
  --spice:       #8B2500;   /* Deep red/spice accent */
  --spice-light: #C43800;   /* Lighter red accent */
  --text:        #2C2416;   /* Main body text */
  --text-light:  #6B5D45;   /* Muted body text */
  --white:       #FFFFFF;
  --nav-h:       80px;      /* Navbar height */
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--cream2);
  color: var(--text);
  overflow-x: hidden;
  cursor: none; /* Custom cursor — remove this line if you want default cursor */
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CUSTOM CURSOR (desktop only) ===== */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}
.cursor.hover   { width: 40px; height: 40px; background: var(--gold-light); mix-blend-mode: normal; opacity: 0.5; }
.cursor-ring.hover { width: 70px; height: 70px; opacity: 0.3; }
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  background: #25D366; color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  z-index: 900;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
nav.scrolled {
  background: rgba(13,11,8,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  transition: transform 0.3s;
}
.nav-logo img:hover { transform: rotate(5deg) scale(1.05); }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); letter-spacing: 1px; line-height: 1;
}
.nav-brand span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 4px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.nav-links .nav-featured {
  background: var(--gold);
  color: var(--dark);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(201,168,76,0.35);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.nav-links .nav-featured::after { display: none; }
.nav-links .nav-featured:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-contact { display: flex; align-items: center; gap: 1.5rem; }
.nav-contact a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 6px; transition: color 0.3s;
}
.nav-contact a i { color: var(--gold); font-size: 0.8rem; }
.nav-contact a:hover { color: var(--gold); }
/* Language switcher — EN | HI | MR */
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 1px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.65);
  padding: 0.32rem 0.6rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lang-btn:hover,
.lang-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lang-switcher-mobile { margin-top: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px;
}
.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,11,8,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem; z-index: 899;
  flex-direction: column; gap: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  transform: translateY(-20px); opacity: 0; transition: all 0.3s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; color: #fff; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .nav-featured {
  background: var(--gold);
  color: var(--dark);
  border-radius: 999px;
  text-align: center;
  border-bottom: none;
  padding: 0.75rem 1rem;
}
.mobile-menu .mob-contact { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; }
.mobile-menu .mob-contact a { font-size: 0.85rem; display: flex; align-items: center; gap: 8px; border-bottom: none; }
.mobile-menu .mob-contact a i { color: var(--gold); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/image5.jpg') center/cover no-repeat;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
  animation: hero-ken 12s ease-in-out infinite alternate;
}
/* Change the hero image above ↑ */
@keyframes hero-ken {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.1)  translateX(-2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,8,0.1) 0%,
    rgba(13,11,8,0.3) 40%,
    rgba(13,11,8,0.85) 80%,
    var(--dark) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 6vw 8vh;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.hero-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  color: var(--gold); letter-spacing: 5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 900; line-height: 0.92;
  color: var(--white); letter-spacing: -2px;
}
.hero-heading em { font-style: italic; color: var(--gold); display: block; }
.hero-heading span { display: block; opacity: 0; animation: fadeUp 0.9s forwards; }
.hero-heading span:nth-child(1) { animation-delay: 0.5s; }
.hero-heading span:nth-child(2) { animation-delay: 0.7s; }
.hero-heading span:nth-child(3) { animation-delay: 0.9s; }
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.65);
  max-width: 480px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s 1.1s forwards;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.3s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; opacity: 0; animation: fadeIn 1s 2s forwards;
}
.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; color: rgba(255,255,255,0.4);
  letter-spacing: 3px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s infinite;
}
@keyframes scroll-pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 1rem 2.4rem;
  cursor: pointer; transition: all 0.3s;
  border: none; display: inline-block;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

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

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; padding: 5rem 4vw 3rem; }
.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  color: var(--gold); letter-spacing: 5px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 1.2rem;
}
.section-tag::before, .section-tag::after {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.15; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--spice); }
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--text-light);
  margin-top: 1rem; max-width: 560px; margin-inline: auto; line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
#about {
  background: var(--dark);
  padding: 5rem 6vw;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6vw; align-items: center;
}
.about-text .section-tag { justify-content: flex-start; }
.about-text .section-tag::before { display: none; }
.about-text .section-title { text-align: left; color: var(--white); }
.about-text .section-title em { color: var(--gold); }
.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-top: 1.5rem;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.stat { border-left: 2px solid var(--gold); padding-left: 1.5rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; color: rgba(255,255,255,0.45);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 0.4rem;
}
.about-image { position: relative; }
.about-image img { width: 100%; height: 540px; object-fit: cover; object-position: center; }
.about-image::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold); z-index: -1;
}
.about-image-tag {
  position: absolute; bottom: -1px; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.9), transparent);
  padding: 2rem 1.5rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic; color: var(--gold);
}

/* ===== CATEGORIES (Page 2) ===== */
#categories { background: var(--cream2); padding-bottom: 5rem; }
.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin: 0 4vw;
}
.category-card { position: relative; overflow: hidden; height: 70vh; cursor: pointer; }
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.6) saturate(0.9);
}
.category-card:hover img { transform: scale(1.08); filter: brightness(0.4) saturate(0.7); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  padding: 2.5rem 2rem; text-align: center;
}
.category-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--white); line-height: 1.2; transition: transform 0.4s;
}
.category-card:hover .category-label { transform: translateY(-10px); }
.category-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: rgba(255,255,255,0.8);
  line-height: 1.6; margin-top: 1rem;
  max-height: 0; overflow: hidden;
  opacity: 0; transition: all 0.4s ease;
}
.category-card:hover .category-desc { max-height: 200px; opacity: 1; }
.category-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem; margin-top: 1rem;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s 0.1s; display: inline-block;
}
.category-card:hover .category-btn { opacity: 1; transform: translateY(0); }
.category-btn:hover { background: var(--gold); color: var(--dark); }
.category-number {
  position: absolute; top: 2rem; left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,0.08); line-height: 1; pointer-events: none;
}

/* ===== PRODUCTS GRID ===== */
#products { background: var(--dark2); padding-bottom: 6rem; }
#products .section-title { color: var(--white); }
#products .section-sub { color: rgba(255,255,255,0.5); }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; padding: 0 4vw;
}
.section-cta {
  display: flex; justify-content: center;
  padding: 2.5rem 4vw 5rem;
}
.product-card {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.product-card-img { width: 100%; height: 280px; overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 1.5rem; }
.product-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--white); margin-bottom: 0.6rem;
}
.product-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.product-card-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); transition: all 0.3s;
}
.product-card:hover .product-card-arrow { border-color: var(--gold); color: var(--gold); transform: rotate(45deg); }

/* ===== WHY US ===== */
#why { background: var(--cream2); padding: 5rem 6vw; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.why-card {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: var(--white);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.08); transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem; color: var(--white);
}
.why-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--dark); margin-bottom: 0.75rem; }
.why-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--text-light); line-height: 1.7; }

/* ===== ENQUIRY SECTION ===== */
#enquiry {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0800 50%, var(--spice) 100%);
  padding: 6rem 6vw;
  text-align: center; position: relative; overflow: hidden;
}
#enquiry::before {
  content: 'ROYALSWAD'; /* Change this watermark text */
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: 18vw; font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none; white-space: nowrap;
}
.enquiry-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--white); position: relative;
}
.enquiry-title em { color: var(--gold); font-style: italic; }
.enquiry-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: rgba(255,255,255,0.6);
  margin: 1rem auto 2.5rem; max-width: 500px;
}
.enquiry-form {
  display: flex; gap: 1rem; max-width: 500px;
  margin: 0 auto; flex-wrap: wrap; justify-content: center; position: relative;
}
.enquiry-form input, .enquiry-product-input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 1rem 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  outline: none; transition: border-color 0.3s;
}
.enquiry-form input::placeholder, .enquiry-product-input::placeholder { color: rgba(255,255,255,0.4); }
.enquiry-form input:focus, .enquiry-product-input:focus { border-color: var(--gold); }
.enquiry-product-wrap { max-width: 500px; margin: 1rem auto 0; position: relative; }
.enquiry-product-input { width: 100%; }
.enquiry-send-wrap { text-align: center; margin-top: 1.5rem; position: relative; }
.enquiry-contact {
  margin-top: 3rem; position: relative;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.enquiry-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.enquiry-contact-item i { color: var(--gold); font-size: 1rem; }
.enquiry-contact-item a { color: inherit; transition: color 0.3s; }
.enquiry-contact-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 5rem 6vw 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-brand img {
  width: 80px; height: 80px;
  border-radius: 50%; border: 2px solid var(--gold);
  object-fit: cover; margin-bottom: 1.2rem;
}
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.footer-brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; color: rgba(255,255,255,0.3);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 300px;
}
.footer-cta { margin-top: 1.6rem; display: inline-block; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: rgba(255,255,255,0.5);
  transition: all 0.3s; display: inline-block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 1rem; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact-item span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 4rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; color: rgba(255,255,255,0.25); letter-spacing: 1px;
}
.footer-bottom a { color: var(--gold); transition: opacity 0.3s; }
.footer-bottom a:hover { opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 50vh; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  #about { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 350px; }
  .about-image::before { display: none; }
  .nav-links, .nav-contact { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  nav { padding: 0 5vw; }
  .mobile-menu { padding: 1.4rem 1.2rem; gap: 1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .hero-heading { font-size: clamp(3rem, 14vw, 5rem); letter-spacing: -1px; }
  .categories-grid { gap: 0; }
  .category-card { height: 40vh; }
  .category-desc { display: none; }
  .category-card:hover .category-btn { display: none; }
  .enquiry-form { flex-direction: column; }
  .enquiry-form input, .enquiry-product-input { min-width: unset; width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #about { padding: 3rem 4vw; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 1.5rem 1rem; }
  .nav-logo img { width: 58px; height: 58px; }
  .nav-brand span:first-child { font-size: 1.3rem; }
  .nav-brand span:last-child { font-size: 0.62rem; letter-spacing: 3px; }
  #enquiry { padding: 4rem 4vw; }
  #enquiry::before { font-size: 28vw; }
  .enquiry-contact { gap: 1.5rem; flex-direction: column; align-items: center; }
}
@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
