/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: 'Poppins', sans-serif;
}

/* ============================= */
/* 🔥 FINAL NAVBAR (CENTER + RIGHT SEARCH FIX) */
/* ============================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;   /* center menu */
  padding: 15px 40px;
  position: relative;
}

/* LOGO LEFT */
.nav-left {
  position: absolute;
  left: 40px;
}

/* CENTER MENU */
.nav-center {
  display: flex;
  gap: 25px;
  padding: 10px 25px;
  background: rgba(0,0,0,0.6);
  border-radius: 30px;
  border: 1px solid rgba(255,215,0,0.3);
}

/* 🔥 SEARCH FIX (IMPORTANT) */
.nav-search {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%); /* perfectly center vertically */
}

/* SEARCH INPUT */
.nav-search input {
  padding: 10px 15px;
  border-radius: 25px;
  border: 2px solid #d4af37;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 14px;
  outline: none;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* ============================= */
/* 🔥 PREMIUM SEARCH BOX DESIGN */
/* ============================= */

.nav-search {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* SEARCH INPUT */
.nav-search input {
  padding: 10px 18px;
  border-radius: 30px;
  border: 2px solid #d4af37;

  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;

  font-size: 14px;
  outline: none;

  width: 220px;

  box-shadow:
    0 0 8px rgba(255,215,0,0.3),
    inset 0 0 5px rgba(255,215,0,0.2);

  transition: all 0.3s ease;
}

/* PLACEHOLDER FIX (IMPORTANT) */
.nav-search input::placeholder {
  color: #bbb;   /* 🔥 visible grey */
  opacity: 1;
}

/* FOCUS EFFECT */
.nav-search input:focus {
  border-color: #ffd700;

  box-shadow:
    0 0 15px rgba(255,215,0,0.8),
    0 0 25px rgba(255,215,0,0.4);

  background: rgba(0,0,0,0.95);
}

/* ============================= */
/* 🔥 DROPDOWN (SUGGESTIONS FIX) */
/* ============================= */

#suggestions {
  position: absolute;
  width: 100%;
  top: 110%;

  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);

  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.5);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.8),
    0 0 10px rgba(255,215,0,0.2);

  max-height: 220px;
  overflow-y: auto;

  display: none;
  z-index: 99999;
}

/* ITEMS */
.suggestion-item {
  padding: 12px 15px;
  color: #ffd700;
  font-family: 'Cinzel';

  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.suggestion-item:hover {
  background: rgba(255,215,0,0.15);
  color: #ffffff;
}
/* LOGO */
.logo {
  font-family: 'Cinzel';
  color: #d4af37;
}

/* CENTER MENU BOX */
.nav-center {
  display: flex;
  gap: 25px;
  padding: 10px 25px;
  background: rgba(0,0,0,0.6);
  border-radius: 30px;
  border: 1px solid rgba(255,215,0,0.3);
}

/* LINKS */
.nav-center a {
  text-decoration: none;
  color: #d4af37;
  font-family: 'Cinzel';
  padding: 6px 12px;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
}

/* HOVER */
.nav-center a:hover {
  background: linear-gradient(45deg,#d4af37,#ffd700);
  color: black;
  box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

/* ================= ACTIVE NAV LINK ================= */
.nav-center a.active {
  background: linear-gradient(45deg,#d4af37,#ffd700);
  color: black;
  box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

.nav-center a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: #ffd700;
  margin-top: 4px;
  box-shadow: 0 0 8px #ffd700;
}

/* SEARCH */
/* ============================= */
/* 🔥 FINAL CLEAN NAVBAR FIX */
/* ============================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}

/* NAVBAR LAYOUT */
.navbar {
  position: relative;
  height: 70px;
}

/* LOGO LEFT */
.nav-left {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================= */
/* 🔥 CONTACT PAGE STYLING */
/* ============================= */

.contact-section {
  padding: 120px 20px 60px;
  text-align: center;
  color: white;
}

/* TITLE */
.contact-title {
  font-family: 'Cinzel';
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 10px;

  text-shadow: 0 0 15px rgba(255,215,0,0.6);
}

/* SUBTEXT */
.contact-sub {
  color: #ccc;
  margin-bottom: 40px;
}

/* ============================= */
/* 🔥 CONTACT PAGE FIXED */
/* ============================= */

.contact-section {
  padding: 120px 20px 60px;
  text-align: center;
}

/* TITLE */
.contact-title {
  font-family: 'Cinzel';
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 10px;
}

/* SUBTEXT */
.contact-sub {
  color: #bbb;
  margin-bottom: 50px;
}

/* CONTAINER FIX */
.contact-container {
  display: flex;
  justify-content: center;   /* 🔥 CENTER FIX */
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARDS */
/* 🔥 SAME SIZE CONTACT CARDS */
.contact-card {
  width: 280px;
  height: 260px;   /* 🔥 FIXED HEIGHT */

  display: flex;
  justify-content: center;
  align-items: center;
}

/* ANDAR KA CONTENT CENTER */
.contact-card a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 15px rgba(255,215,0,0.5),
    0 0 30px rgba(255,215,0,0.2);
}

/* ICON */
.contact-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* HEADINGS */
.contact-card h2 {
  color: gold;
  margin-bottom: 10px;
  font-family: 'Cinzel';
}

/* TEXT */
.contact-card p,
.contact-card a {
  color: #ddd;
  text-decoration: none;
  word-break: break-word; /* 🔥 FIX FOR EMAIL OVERFLOW */
}

/* LINK HOVER */
.contact-card a:hover {
  color: #ffd700;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 0 15px rgba(255,215,0,0.5),
    0 0 30px rgba(255,215,0,0.3);
}

/* HEADINGS */
.contact-card h2 {
  color: gold;
  margin-bottom: 10px;
  font-family: 'Cinzel';
}

/* TEXT */
.contact-card p,
.contact-card a {
  color: #ddd;
  text-decoration: none;
}

/* INSTAGRAM LINK HOVER */
.contact-card a:hover {
  color: #ffd700;
}

/* 🔥 ICON IMAGE STYLE (EMOJI SIZE LIKE) */
.contact-icon-img {
  width: 32px;     /* 🔥 emoji size */
  height: 32px;

  object-fit: contain;

  margin-bottom: 10px;

  filter: drop-shadow(0 0 5px rgba(255,215,0,0.5)); /* premium glow */
}
/* CENTER MENU */
.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  gap: 25px;
  padding: 10px 25px;

  background: rgba(0,0,0,0.6);
  border-radius: 30px;
  border: 1px solid rgba(255,215,0,0.3);
}

/* RIGHT SEARCH (FIXED) */
.nav-search {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* SEARCH INPUT (VISIBLE + PREMIUM) */
.nav-search input {
  width: 220px;
  padding: 10px 18px;

  border-radius: 30px;
  border: 2px solid #d4af37;

  background: rgba(0,0,0,0.9);
  color: #fff;

  outline: none;

  box-shadow:
    0 0 10px rgba(255,215,0,0.3),
    inset 0 0 5px rgba(255,215,0,0.2);

  transition: 0.3s;
}

/* PLACEHOLDER */
.nav-search input::placeholder {
  color: #bbb;
}

/* FOCUS */
.nav-search input:focus {
  box-shadow:
    0 0 15px rgba(255,215,0,0.8),
    0 0 30px rgba(255,215,0,0.3);
}

/* DROPDOWN FIX */
#suggestions {
  position: absolute;
  top: 110%;
  width: 100%;

  background: rgba(10,10,10,0.95);
  border-radius: 12px;

  border: 1px solid rgba(255,215,0,0.5);

  box-shadow: 0 10px 25px rgba(0,0,0,0.8);

  max-height: 220px;
  overflow-y: auto;

  display: none;
  z-index: 99999;
}

/* ITEMS */
.suggestion-item {
  padding: 12px;
  color: #ffd700;
  cursor: pointer;
  transition: 0.3s;
}

.suggestion-item:hover {
  background: rgba(255,215,0,0.2);
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom, #000000, #1a1a1a);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
}

.brand {
  font-family: 'Cinzel';
  font-size: 50px;
  color: #d4af37;
}

.tagline {
  color: #b08d57;
}

.about-text {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.8;
}

/* PRODUCTS */
.product-section {
  padding: 60px;
  text-align: center;
}

.section-title {
  color: gold;
  margin-bottom: 40px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 40px;
}

/* CARD */
.card {
  width: 220px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: all 0.4s ease;
  border-radius: 15px;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.card h3 {
  font-size: 16px;
  min-height: 40px;
  color: white;
}

.card p {
  color: #d4af37;
  font-weight: bold;
}

/* HOVER */
.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 0 10px rgba(255,215,0,0.5),
    0 0 25px rgba(255,215,0,0.4),
    0 0 50px rgba(255,215,0,0.3);
}

.card:hover img {
  transform: scale(1.08);
  transition: 0.4s;
}

/* PRODUCT PAGE */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  padding: 60px 40px;
}

.product-card {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow:
    0 0 10px rgba(255,215,0,0.1),
    inset 0 0 10px rgba(255,215,0,0.05);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 15px rgba(255,215,0,0.6),
    0 0 30px rgba(255,215,0,0.4);
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card h3 {
  font-family: 'Cinzel';
  color: #d4af37;
  margin: 12px 0 6px;
}

.product-card p {
  color: #bbb;
  font-size: 13px;
  min-height: 40px;
}

.product-card h4 {
  color: #fff;
  margin: 10px 0;
}

.product-card a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid gold;
  color: gold;
  text-decoration: none;
  font-family: 'Cinzel';
  transition: 0.3s;
}

.product-card a:hover {
  background: linear-gradient(45deg,#d4af37,#ffd700);
  color: black;
  box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

/* ============================= */
/* 🔥 ABOUT PAGE FINAL FIX */
/* ============================= */

/* BODY */
body {
  background: #000;
  padding-top: 90px; /* navbar space */
  font-family: 'Poppins', sans-serif;
}

/* SECTION */
.about-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-text {
  color: #f5c542; /* premium gold */
  font-size: 20px;
  font-style: italic;
  text-align: center;
  margin-bottom: 15px;
}

.address {
  color: #ffffff; /* pure white for visibility */
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
  opacity: 0.9;
}

.map-link {
  display: block;
  text-align: center;
  color: #f5c542;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.map-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #f5c542;
  transform: scale(1.05);
}

.contact-address {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  margin-top: 15px;
  line-height: 1.6;
}

.contact-map-link {
  color: #f5c542; /* gold */
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* underline animation */
.contact-map-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #f5c542;
  transition: 0.3s;
}

/* hover effect */
.contact-map-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #f5c542;
}

.contact-map-link:hover::after {
  width: 100%;
}

/* MAIN TITLE */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  color: #d4af37; /* GOLD */
  margin-bottom: 30px;

  text-shadow: 0 0 15px rgba(255,215,0,0.6);
}

/* SUB TITLES */
.sub-title {
  font-family: 'Cinzel', serif;
  color: #ffd700;
  font-size: 24px;
  margin-top: 40px;
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* FORCE SHOW SOCIAL BAR */
.social-sidebar {
  position: fixed !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  z-index: 9999 !important;
}

/* ICON STYLE */
.social-sidebar .icon {
  width: 50px;
  height: 50px;
  background: black;
  color: gold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  border: 2px solid gold;
}

/* HOVER */
.social-sidebar .icon:hover {
  background: gold;
  color: black;
}
/* Individual hover glow (premium feel) */
.whatsapp:hover { box-shadow: 0 0 15px #25D366; }
.insta:hover { box-shadow: 0 0 15px #E1306C; }
.map:hover { box-shadow: 0 0 15px #4285F4; }
.call:hover { box-shadow: 0 0 15px #FFD700; }
/* PARAGRAPH TEXT */
.about-text {
  color: #e0e0e0;   /* 🔥 FIXED (VISIBLE LIGHT TEXT) */
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-list li {
  color: #f5f5f5;
  margin: 10px 0;
  font-size: 15px;
}

/* CLOSING TEXT */
.closing {
  margin-top: 40px;
  font-style: italic;
  color: #d4af37;
  font-size: 16px;
}
.map-img {
  width: 35px !important;
  height: 35px !important;
  object-fit: contain;
}

/* ============================= */
/* 🔒 SAFE SOCIAL SIDEBAR (NO CONFLICT) */
/* ============================= */

.social-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}

/* ICON BASE */
.social-sidebar .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  text-decoration: none;

  background: rgba(0, 0, 0, 0.85);
  border: 1.5px solid rgba(255, 215, 0, 0.5);

  transition: all 0.3s ease;
}

/* COLORS */
.social-sidebar .whatsapp { color: #25D366; }
.social-sidebar .insta { color: #E1306C; }
.social-sidebar .map { color: #4285F4; }
.social-sidebar .call { color: #C9B037; }

/* HOVER */
.social-sidebar .icon:hover {
  transform: scale(1.1);
}

/* HOVER BACKGROUND */
.social-sidebar .whatsapp:hover {
  background: #25D366;
  color: black;
}

/* ============================= */
/* 🔥 MAP ICON FIX (CONTACT PAGE) */
/* ============================= */

.map-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 10px;

  filter: drop-shadow(0 0 5px rgba(255,215,0,0.5));
}

.social-sidebar .insta:hover {
  background: #E1306C;
  color: white;
}

.social-sidebar .map:hover {
  background: #4285F4;
  color: white;
}

.social-sidebar .call:hover {
  background: #FFD700;
  color: black;
}

/* 🔥 GLASS BACKGROUND (VERY IMPORTANT FOR VISIBILITY) */
.about-section {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 20px;
  padding: 60px 30px;

  box-shadow: 0 0 30px rgba(255,215,0,0.1);
}