/* ==========================================
   Salim Traders - Main Styling Sheets
   Color Theme: Warm Maroon, Soft Cream, Gold
   ========================================== */

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

/* CSS Variables */
:root {
  --primary-maroon: #800020;
  --primary-light: #a61c3c;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b89326;
  --bg-cream: #faf6f0;
  --bg-white: #ffffff;
  --text-dark: #2c1e1b;
  --text-muted: #6e5e5a;
  --border-light: #e8dfd8;
  --shadow-sm: 0 4px 6px -1px rgba(128, 0, 32, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(128, 0, 32, 0.08), 0 4px 6px -2px rgba(128, 0, 32, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(128, 0, 32, 0.1), 0 10px 10px -5px rgba(128, 0, 32, 0.04);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

button, input, textarea {
  font-family: inherit;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.section-title {
  font-size: 2.25rem;
  color: var(--primary-maroon);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
}

.badge {
  background: rgba(128, 0, 32, 0.08);
  color: var(--primary-maroon);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(128, 0, 32, 0.15);
}

/* Section Spacing */
section {
  padding: 5.5rem 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-maroon);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ==========================================
   Header & Navigation
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 0.25rem 0;
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  background: var(--bg-white);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-maroon);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--accent-gold-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-maroon);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary-maroon);
  color: var(--bg-cream) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-maroon);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Mobile Active Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Hero Section
   ========================================== */
#home {
  padding-top: 130px;
  padding-bottom: 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-cream);
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-maroon);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title span {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
  box-shadow: 0 4px 14px rgba(128, 0, 32, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.5);
}

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

.btn-secondary:hover {
  background-color: rgba(128, 0, 32, 0.05);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  width: 100%;
  max-width: 480px;
  height: 480px;
  position: relative;
}

.hero-blob {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: var(--accent-gold);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blob-bounce 8s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.2;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob-bounce 12s ease-in-out infinite alternate-reverse;
  z-index: 2;
  position: relative;
  border: 8px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
}

@keyframes blob-bounce {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
  }
  100% {
    border-radius: 60% 40% 60% 40% / 40% 50% 50% 60%;
  }
}

/* Quick Features Info Grid */
.hero-quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-top: 4rem;
  position: relative;
  z-index: 5;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.info-icon {
  background-color: rgba(128, 0, 32, 0.08);
  color: var(--primary-maroon);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.info-text h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.info-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   About Us Section
   ========================================== */
#about {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(128, 0, 32, 0.3), transparent);
  z-index: 1;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.about-experience-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  text-align: center;
  z-index: 5;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.exp-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-maroon);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-points {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-point-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

/* ==========================================
   Products & Services Section
   ========================================== */
#products {
  background-color: var(--bg-cream);
}

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

.product-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(128, 0, 32, 0.2);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

.product-details {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-details h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.product-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.product-meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-meta svg {
  width: 16px;
  height: 16px;
}

.product-action-link {
  color: var(--primary-maroon);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-action-link:hover {
  color: var(--primary-light);
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
#why-us {
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

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

.why-card {
  padding: 2.5rem 2rem;
  background-color: var(--bg-cream);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-maroon);
  transition: var(--transition-smooth);
  transform: scaleX(0);
  transform-origin: left;
}

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

.why-card:hover {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: rgba(128, 0, 32, 0.1);
  transform: translateY(-5px);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-maroon);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.why-card:hover .why-icon-box {
  background-color: var(--primary-maroon);
  color: var(--bg-cream);
  transform: rotate(5deg);
}

.why-icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* GST Highlight Box */
.gst-highlight-banner {
  margin-top: 4.5rem;
  background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-light) 100%);
  color: var(--bg-cream);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.gst-highlight-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -30%;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.gst-text-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.gst-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gst-title span {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
}

.gst-desc {
  font-size: 1.05rem;
  opacity: 0.9;
}

.gst-value-box {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  text-align: center;
}

.gst-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.gst-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

/* ==========================================
   Contact Us Section
   ========================================== */
#contact {
  background-color: var(--bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-box {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.contact-card-box h3 {
  font-size: 1.5rem;
  color: var(--primary-maroon);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-cream);
  padding-bottom: 0.75rem;
}

.contact-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-link-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-link-icon {
  background-color: rgba(128, 0, 32, 0.08);
  color: var(--primary-maroon);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-link-text h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-link-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-link-text a:hover {
  color: var(--primary-maroon);
  text-decoration: underline;
}

/* Map Embed styling */
.map-embed-container {
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Form Styling */
.contact-form-container {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form-container h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-cream);
  transition: var(--transition-smooth);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  background-color: var(--bg-white);
  border-color: var(--primary-maroon);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

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

.submit-btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem;
}

/* ==========================================
   Footer Section
   ========================================== */
footer {
  background-color: #1a0f0d;
  color: #dfd8d6;
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--bg-cream);
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-links-column h4 {
  color: var(--bg-cream);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

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

.footer-links a {
  opacity: 0.8;
  font-size: 0.95rem;
}

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

.footer-contact h4 {
  color: var(--bg-cream);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}



/* Success Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 30, 27, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-box {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
  transform: scale(0.85);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-success-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(128, 0, 32, 0.08);
  color: var(--primary-maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--accent-gold);
}

.modal-success-icon svg {
  width: 36px;
  height: 36px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary-maroon);
  margin-bottom: 0.75rem;
}

.modal-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}



select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23800020'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.5rem;
  padding-right: 2.5rem;
  appearance: none;
}

/* ==========================================
   Responsive Media Queries
   ========================================== */

/* Tablet & Mobile Menu Toggle styling */
@media (max-width: 991px) {
  header {
    padding: 0.5rem 0;
  }

  .nav-wrapper {
    height: 60px;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border-light);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 1.25rem;
    display: inline-block;
    padding: 0.75rem 0;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 1rem;
    width: 80%;
    justify-content: center;
  }

  /* Hero Section Grid */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-desc {
    margin: 0 auto 2rem auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-container {
    max-width: 380px;
    height: 380px;
    margin: 0 auto;
  }

  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-experience-card {
    right: 10px;
    bottom: -20px;
    padding: 1.5rem;
  }

  /* GST block */
  .gst-highlight-banner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .gst-value-box {
    width: 100%;
    max-width: 350px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }


}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  /* Hero Quick Info */
  .hero-quick-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-top: 3rem;
  }

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

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }


  

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-image-container {
    max-width: 280px;
    height: 280px;
  }

  .about-experience-card {
    position: static;
    margin-top: 1.5rem;
    border: none;
    box-shadow: var(--shadow-md);
  }

  .gst-number {
    font-size: 1.25rem;
  }


  
  .wholesale-info {
    padding: 1.5rem;
  }


