/* ========================================
   RAJ METAL INDUSTRIES — Premium Design System
   Dark Theme + Gold/Brass Accents
   ======================================== */

/* ---------- Google Fonts ---------- */
/* Google Fonts loaded via <link> in HTML for non-blocking performance */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --primary: #ffffff;
  --primary-light: #f8f9fa;
  --primary-dark: #f1f3f5;
  --gold: #c59728;
  --gold-light: #d4a843;
  --gold-dark: #9e7518;
  --copper: #b26829;
  --brass: #b8922e;

  /* Surface Colors */
  --surface: #ffffff;
  --surface-elevated: #fcfbfa;
  --surface-card: rgba(255, 255, 255, 0.9);
  --surface-glass: rgba(255, 255, 255, 0.85);

  /* Text Colors */
  --text-primary: #101c2d;
  --text-secondary: #8c6a1c;
  --text-muted: #4e5d73;
  --text-gold: #c59728;

  /* Borders */
  --border-color: rgba(197, 151, 40, 0.15);
  --border-gold: rgba(197, 151, 40, 0.35);

  /* Gradients */
  --gradient-dark: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f5 100%);
  --gradient-gold: linear-gradient(135deg, #d4a843 0%, #e8c76a 50%, #b8922e 100%);
  --gradient-gold-text: linear-gradient(90deg, #9e7518, #c59728, #9e7518);
  --gradient-hero: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.95) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(197, 151, 40, 0.1);
  --shadow-gold-lg: 0 8px 40px rgba(197, 151, 40, 0.15);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
  --topbar-height: 0px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--gold);
  color: var(--primary);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ---------- Section ---------- */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: linear-gradient(90deg, #060e1a, #0a1628);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-sm) 0;
  font-size: 0.82rem;
  position: relative;
  z-index: 1001;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.topbar-item:hover {
  color: var(--gold);
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.topbar-social {
  display: flex;
  gap: var(--space-sm);
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(212,168,67,0.1);
  color: var(--gold);
  transition: all var(--transition-fast);
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.topbar-social a svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
  height: var(--nav-height);
}

.navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
  background-color: #ffffff;
  transition: transform var(--transition-slow) cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition-base);
}

.nav-logo:hover img {
  transform: rotate(360deg);
  box-shadow: 0 0 25px rgba(212, 168, 67, 0.7);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.nav-logo-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.5px;
  z-index: 1;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.15);
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--transition-base);
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link.active {
  color: var(--gold-light);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-gold);
  color: var(--primary) !important;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-left: var(--space-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--primary) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--nav-height) + var(--topbar-height));
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 18px;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hero-title .gradient-text {
  background: none !important;
  -webkit-text-fill-color: var(--gold-dark) !important;
  color: var(--gold-dark) !important;
}

.hero-subtitle {
  font-size: 0.65em;
  font-weight: 600;
  color: var(--gold-dark);
  text-shadow: none;
  margin-top: var(--space-sm);
  display: block;
}

.hero-title .line {
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--border-gold);
}

.btn-outline:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* =============================================
   ABOUT PREVIEW SECTION
   ============================================= */
.about-preview {
  background: var(--gradient-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-lg);
  z-index: 2;
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  text-align: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--gold);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-highlight-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section {
  background: var(--surface);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.product-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.8) 100%);
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition-base);
}

.product-card-link:hover {
  gap: 12px;
}

.product-card-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: transform var(--transition-base);
}

.product-card-link:hover svg {
  transform: translateX(4px);
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.why-card {
  background: var(--surface-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  background: var(--gradient-gold);
  border-color: transparent;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
  transition: fill var(--transition-base);
}

.why-card:hover .why-icon svg {
  fill: var(--primary);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   STATS / COUNTERS
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
}

.footer-main {
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.footer-contact-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-text strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: var(--space-lg) 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-credit {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--gold);
}

.footer-gst {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-gst svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.footer-gst strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* =============================================
   PAGE BANNER (About, Products, etc.)
   ============================================= */
.page-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--nav-height) + var(--topbar-height));
  overflow: hidden;
  background: var(--surface);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--surface) 50%, var(--primary-dark) 100%);
}

.page-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,168,67,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-full {
  background: var(--gradient-dark);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.about-story-content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.mv-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.mv-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.mv-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Owner Section */
.owners-section {
  background: var(--surface);
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 800px;
  margin: 0 auto;
}

.owner-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.owner-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.owner-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.owner-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.owner-card .role {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.owner-card .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.owner-card .phone svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-full {
  background: var(--gradient-dark);
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.product-page-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-page-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.product-page-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.product-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-page-card:hover .product-page-image img {
  transform: scale(1.08);
}

.product-page-body {
  padding: var(--space-xl);
}

.product-page-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.product-page-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.product-tag {
  padding: 4px 12px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section {
  background: var(--gradient-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10001;
}

.lightbox-close:hover {
  background: var(--gold);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  transition: fill var(--transition-base);
}

.lightbox-close:hover svg {
  fill: var(--primary);
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-nav:hover {
  background: var(--gold);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: fill var(--transition-base);
}

.lightbox-nav:hover svg {
  fill: var(--primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--gradient-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-cards {
  display: grid;
  gap: var(--space-lg);
}

.contact-card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.contact-card-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-card-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-card-text a {
  color: var(--gold);
  transition: color var(--transition-fast);
}

.contact-card-text a:hover {
  color: var(--gold-light);
}

/* Contact Form */
.contact-form {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 60px;
  height: 60px;
  fill: var(--gold);
  margin-bottom: var(--space-md);
}

.form-success h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--text-muted);
}

/* Map */
.contact-map {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) contrast(1.1);
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: float-pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 45px;
  height: 45px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: fill var(--transition-base);
}

.back-to-top:hover svg {
  fill: var(--primary);
}

/* =============================================
   PRODUCT LIST (Inside Products Page)
   ============================================= */
.product-list-section {
  background: var(--surface);
  padding: var(--space-3xl) 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.product-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.product-list-item:hover {
  border-color: var(--border-gold);
  background: rgba(212, 168, 67, 0.05);
}

.product-list-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

.product-list-item span {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .about-grid,
  .about-story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-highlight-item {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-xl) var(--space-xl);
    transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--border-color);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  .nav-link {
    width: 100%;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 500px;
    max-height: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .owners-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .page-banner {
    height: 300px;
  }

  .contact-map {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .topbar-right {
    display: none;
  }

  /* Hero Mobile */
  .hero {
    min-height: 85vh;
    height: auto;
    max-height: none;
    padding: var(--space-3xl) 0;
  }

  .hero-content {
    max-width: 100%;
    padding-top: var(--space-xl);
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.75em;
  }

  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    letter-spacing: 1.5px;
  }

  .hero-controls {
    bottom: 20px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  /* Stats Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-item {
    padding: var(--space-md);
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* About Mobile */
  .about-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image img {
    height: 280px;
  }

  .about-experience-badge {
    width: 85px;
    height: 85px;
    bottom: -10px;
    right: -10px;
  }

  .about-experience-badge .number {
    font-size: 1.3rem;
  }

  .about-experience-badge .label {
    font-size: 0.5rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  /* Products Mobile */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    height: 180px;
  }

  .product-page-image {
    height: 200px;
  }

  /* Why Choose Mobile */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: var(--space-xl);
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  /* Contact Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .contact-form {
    padding: var(--space-xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
    margin-top: var(--space-xl);
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  /* Mission/Vision Mobile */
  .mission-vision-grid,
  .owners-grid {
    grid-template-columns: 1fr;
  }

  /* Page Banner Mobile */
  .page-banner {
    height: 250px;
  }

  .page-banner h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .breadcrumb {
    font-size: 0.8rem;
  }

  /* CTA Mobile */
  .cta-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-content h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  /* Section Headers Mobile */
  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px;
  }

  /* Lightbox Mobile */
  .lightbox img {
    max-width: 95%;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav svg {
    width: 16px;
    height: 16px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  /* Float Buttons Mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .back-to-top {
    right: 82px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .back-to-top svg {
    width: 16px;
    height: 16px;
  }

  /* Product List Mobile */
  .product-list {
    grid-template-columns: 1fr;
  }

  /* GST Footer Mobile */
  .footer-gst {
    font-size: 0.75rem;
    margin-top: var(--space-sm);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
    letter-spacing: 1px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .stat-item {
    padding: var(--space-sm);
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .about-image img {
    height: 220px;
  }

  .about-experience-badge {
    width: 70px;
    height: 70px;
  }

  .about-experience-badge .number {
    font-size: 1.1rem;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .owner-avatar {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }

  .page-banner {
    height: 200px;
  }

  .page-banner h1 {
    font-size: 1.3rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .product-card-image {
    height: 160px;
  }

  .product-page-image {
    height: 180px;
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .nav-menu {
    width: 85%;
  }

  .nav-logo img {
    height: 40px;
    width: 40px;
  }

  .nav-logo-title {
    font-size: 1.05rem;
  }

  .nav-logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .footer-contact-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .lightbox {
    padding: var(--space-md);
  }

  .lightbox img {
    max-width: 100%;
    border-radius: var(--radius-sm);
  }

  .contact-map {
    height: 250px;
  }

  .why-icon {
    width: 55px;
    height: 55px;
  }

  .why-icon svg {
    width: 26px;
    height: 26px;
  }
}

