/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --cream: oklch(97% .025 85);
  --cream-dark: oklch(94% .03 85);
  --cream-light: oklch(99% .01 85);
  --saffron: oklch(72% .18 55);
  --leaf: oklch(48% .15 150);
  --maroon: oklch(38% .15 25);
  --gold: oklch(82% .15 88);
  --brown: oklch(38% .05 50);
  --whatsapp: oklch(60% .16 150);
  --white: #ffffff;
  --black: #111111;
  
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow: 0 4px 20px -2px rgba(61, 13, 13, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(61, 13, 13, 0.15);
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(at 10% 0%, rgba(226, 150, 48, 0.08) 0px, transparent 50%), 
    radial-gradient(at 90% 100%, rgba(19, 157, 66, 0.07) 0px, transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex-grow {
  flex-grow: 1;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Styling */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: contain;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: linear-gradient(135deg, #e21a7a, #4e148c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-green {
  color: #139d42;
  -webkit-text-fill-color: initial;
  background: none;
}

.logo-divider {
  display: none;
}

.logo-tagline {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(62% .15 40);
  white-space: nowrap;
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  padding: 8px 16px;
  border-radius: 99px;
  white-space: nowrap; /* Keep links like "Ready Mixes" in one line */
}

.nav-link:hover, .nav-link.active {
  color: var(--maroon);
  background-color: rgba(226, 150, 48, 0.12);
}

.nav-link.active {
  background-color: var(--maroon);
  color: var(--white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--maroon);
}

/* Mobile Sidebar Navigation Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background-color: var(--cream-light);
  box-shadow: var(--shadow-lg);
  z-index: 150;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.32, 1);
}

.mobile-nav.open {
  transform: translateX(280px);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-menu {
  background: none;
  border: none;
  color: var(--maroon);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
}

.mobile-nav-link.active {
  background-color: var(--maroon);
  color: var(--white);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(226, 150, 48, 0.12);
  color: var(--maroon);
  border: 1px solid rgba(226, 150, 48, 0.3);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.hero-desc {
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 36px;
  max-width: 580px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--maroon);
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(128, 0, 32, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(128, 0, 32, 0.4);
  filter: brightness(1.1);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.4);
  filter: brightness(1.05);
}

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

.btn-outline:hover {
  background-color: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

/* USP features in Hero */
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.usp-icon {
  color: var(--leaf);
}

/* Image Showcase styling */
.hero-image-wrapper {
  position: relative;
}

.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(226, 150, 48, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero-card {
  background-color: var(--white);
  padding: 14px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stat-box {
  background-color: var(--cream);
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--maroon);
  font-weight: 800;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brown);
  margin-top: 2px;
}

/* Section Header Layout */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title-wrapper {
  max-width: 600px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 6px;
}

.section-desc {
  margin-top: 8px;
  color: var(--brown);
}

/* Popular categories section */
.categories-section {
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}

.category-emoji {
  font-size: 36px;
  margin-bottom: 20px;
}

.category-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.category-desc {
  font-size: 14px;
  color: var(--brown);
  flex-grow: 1;
  margin-bottom: 24px;
}

.category-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-link:hover {
  gap: 10px;
}

/* Product Cards Grid & Card Styling */
.products-section {
  padding: 80px 0;
  background-color: var(--cream-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background-color: var(--cream);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--saffron);
  color: var(--maroon);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-title {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--maroon);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 13px;
  color: var(--brown);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.btn-card-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.btn-card-whatsapp:hover {
  filter: brightness(1.05);
}

.btn-card-inquiry {
  background-color: transparent;
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
  padding: 9px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.btn-card-inquiry:hover {
  background-color: var(--maroon);
  color: var(--white);
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 0;
}

.why-card {
  background-color: rgba(61, 13, 13, 0.95);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.why-blob-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--saffron);
  opacity: 0.15;
  filter: blur(60px);
  border-radius: 50%;
}

.why-blob-2 {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--gold);
  opacity: 0.1;
  filter: blur(50px);
  border-radius: 50%;
}

.why-title {
  color: var(--saffron);
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 10;
}

.why-item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--saffron);
  transform: translateY(-4px);
}

.why-icon-wrapper {
  color: var(--saffron);
  margin-bottom: 20px;
}

.why-item-title {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* Call to Action WhatsApp Banner */
.cta-banner {
  padding: 20px 0 60px;
}

.cta-card {
  background: linear-gradient(135deg, var(--whatsapp), oklch(50% .18 150));
  color: var(--white);
  padding: 50px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 16px 36px -12px rgba(37, 211, 102, 0.3);
}

.cta-content {
  max-width: 650px;
}

.cta-title {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-card .btn-whatsapp {
  background-color: var(--white);
  color: var(--whatsapp);
  padding: 16px 32px;
  box-shadow: var(--shadow);
}

.cta-card .btn-whatsapp:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* Reviews Page & Layout */
.reviews-section {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 700;
  color: var(--maroon);
  font-size: 14px;
}

/* FAQ Layout */
.faq-section {
  padding: 80px 0;
  background-color: var(--cream-dark);
}

.faq-max-width {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--maroon);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--brown);
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 250px;
}

.faq-item.open .faq-answer-inner {
  border-top-color: var(--border);
}

/* Contact Page Layout & Google Sheets Inquiry Form */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  color: var(--maroon);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.6;
}

.contact-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--maroon);
  margin-top: 2px;
}

.contact-val a:hover {
  color: var(--saffron);
}

/* Contact Form styling */
.form-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 14px;
  color: var(--brown);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background-color: var(--cream-light);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--black);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--maroon);
  background-color: var(--white);
}

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

.form-alert {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
}

.form-alert.success {
  background-color: rgba(37, 211, 102, 0.15);
  color: #1b5e20;
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: block;
}

/* Sticky Footer Layout */
.footer {
  background-color: var(--maroon);
  color: var(--cream);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff6eb4, #c993ff); /* Bright colors for dark BG */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-green {
  color: #139d42; /* Green color as per logo */
  -webkit-text-fill-color: initial;
  background: none;
}

.footer-logo-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
}

.footer-desc {
  font-size: 14px;
  color: rgba(253, 251, 247, 0.75);
  line-height: 1.6;
}

.footer-title {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

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

.footer-link-item a {
  color: rgba(253, 251, 247, 0.8);
}

.footer-link-item a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--cream);
}

.social-icon:hover {
  background-color: var(--gold);
  color: var(--maroon);
  transform: translateY(-2px);
}

.map-container {
  width: 100%;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer bottom copyright & developer credit */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(253, 251, 247, 0.6);
  flex-wrap: wrap;
  gap: 12px;
}

.developer-credit {
  font-weight: 600;
}

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

.developer-credit a:hover {
  text-decoration: underline;
}

/* Floating Actions: WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background-color: var(--whatsapp);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whatsapp);
  opacity: 0.4;
  z-index: -1;
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* About Us Layout details */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Tab Filter for Products page */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 99px;
  background-color: var(--white);
  border: 1px solid var(--border);
  color: var(--brown);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

/* Gallery layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0 80px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 13, 13, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Media Queries (Responsive Styling) */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .categories-grid, .products-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .logo-tagline {
    display: none; /* Hide tagline on tablet/mobile viewport to ensure name takes priority */
  }
  
  .logo-divider {
    display: none;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .stat-num {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .categories-grid, .products-grid, .gallery-grid, .footer-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .why-card {
    padding: 40px 20px;
  }
  
  .form-card {
    padding: 24px;
  }
}

/* Navbar Dropdown menu (Desktop hover) */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-icon {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1000;
  list-style: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  text-align: left;
  border-radius: 0;
  background: none;
}

.dropdown-menu a:hover {
  background-color: rgba(226, 150, 48, 0.08);
  color: var(--maroon);
}

.dropdown-menu a.active {
  color: var(--maroon);
  background-color: rgba(226, 150, 48, 0.12);
  font-weight: 700;
}

/* Mobile Submenu (Indented) */
.mobile-submenu {
  list-style: none;
  padding-left: 20px;
  margin-top: 4px;
  margin-bottom: 8px;
  border-left: 2px solid rgba(226, 150, 48, 0.2);
}

.mobile-submenu-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-submenu-link:hover, .mobile-submenu-link.active {
  color: var(--maroon);
  background-color: rgba(226, 150, 48, 0.08);
}

.mobile-submenu-link.active {
  background-color: rgba(226, 150, 48, 0.12);
  font-weight: 600;
}

/* Product Size Selector styles */
.product-size-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 0 4px;
}

.size-select-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  opacity: 0.85;
}

.product-size-select {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  background-color: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.product-size-select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 2px rgba(78, 20, 140, 0.1);
}

/* Footer & About us Logo image additions */
.footer-logo-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: contain;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-logo-img {
  object-fit: contain !important;
  background-color: var(--white);
  padding: 30px;
}

/* Header Navbar WhatsApp Button */
.btn-whatsapp-nav {
  display: none;
}

@media (min-width: 640px) {
  .btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--whatsapp);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
    text-decoration: none;
  }
  .btn-whatsapp-nav svg {
    width: 16px;
    height: 16px;
  }
  .btn-whatsapp-nav:hover {
    background-color: oklch(55% .18 150);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: var(--white);
  }
}

