@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-burgundy: #7A141D;
  --primary-dark-burgundy: #4A080E;
  --accent-gold: #E5A93B;
  --accent-gold-glow: rgba(229, 169, 59, 0.4);
  --header-offset: clamp(96px, 10vw, 118px);
  --bg-cream: #FAF6F0;
  --bg-cream-dark: #F3EAE0;
  --text-dark: #1E1C1A;
  --text-light: #FFFFFF;
  --text-gray: #A39B95;
  --card-bg-white: #FFFFFF;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-inset-glow: inset 0 0 20px rgba(229, 169, 59, 0.15);
  --border-radius-pill: 9999px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* --- Header / Navigation Bar --- */
.header-container {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
  display: flex;
  justify-content: center;
}

/* Shrunk state — floating island */
.header-container.is-shrunk {
  padding: 24px 4%;
}

/* Hidden state — footer is visible */
.header-container.is-hidden {
  opacity: 0;
  transform: translateY(-110%);
  pointer-events: none;
}

/* Default (merged with hero) */
.navbar {
  width: 100%;
  max-width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
  border: none;
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Shrunk state: Island */
.header-container.is-shrunk .navbar {
  width: 100%;
  max-width: 1000px;
  background: linear-gradient(135deg, rgba(74, 8, 14, 0.95) 0%, rgba(36, 4, 7, 0.95) 100%);
  border-radius: 50px;
  padding: 14px 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.header-container.is-shrunk .logo-img {
  height: 34px;
}

.header-container.is-shrunk .nav-item a {
  font-size: 14px;
  letter-spacing: 0.8px;
}

.header-container.is-shrunk .nav-menu {
  gap: 28px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-item a {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 4px;
  transition: var(--transition-smooth);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-item a:hover {
  color: var(--accent-gold);
}

.nav-item.active a {
  color: var(--accent-gold);
}

.nav-item.active a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-gold-glow);
}

/* --- Footer --- */
footer {
  background-color: #610B12;
  color: var(--text-light);
  padding: 80px 4% 40px;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  height: 54px;
  align-self: flex-start;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.7;
}

.badge-certified {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.badge-subtitle {
  font-size: 11px;
  opacity: 0.8;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-circle:hover {
  background: var(--accent-gold);
  color: #610B12;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
}

.contact-item i {
  color: var(--accent-gold);
  font-size: 18px;
  margin-top: 3px;
}

.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-item a:hover {
  color: var(--accent-gold);
}

.gst-num {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* --- Global Premium Utilities --- */
.gradient-hero-bg {
  background: radial-gradient(circle at top, #8d1c25 0%, #3d070b 100%);
  position: relative;
  overflow: hidden;
}

.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #4A080E;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: var(--border-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-bounce);
  box-shadow: 0 10px 25px rgba(229, 169, 59, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(229, 169, 59, 0.6);
  background-color: #f7b743;
}

.btn-premium:active {
  transform: translateY(-1px);
}

/* --- Mobile Menu Styles (Responsive Setup) --- */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 24px;
  }
  .nav-menu {
    gap: 16px;
  }
  .nav-item a {
    font-size: 14px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
