/* ==========================================================================
   THALVORA EXPORTS PRIVATE LIMITED - PREMIUM SAGE GREEN & MEGA DROPDOWN SYSTEM
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* 2. Custom CSS Custom Properties (Variables) */
:root {
  /* Colors */
  --primary: #1E40AF;         /* Premium Royal Blue primary */
  --primary-light: #3B82F6;   /* Vibrant Blue */
  --primary-dark: #0F172A;    /* Deep Midnight Blue for gradient base */
  --primary-rgb: 30, 64, 175;
  
  --secondary: #D4A373;       /* Warm Earthy Gold */
  --secondary-light: #E9C46A;
  
  --accent: #E76F51;          /* Terracotta Red */
  
  --bg-main: #F8FAF7;         /* Warm Soft Off-White with Sage tint */
  --bg-card: #FFFFFF;
  --text-dark: #1C2520;       /* Deep Charcoal for high contrast */
  --text-muted: #5A665F;      /* Muted Sage Slate */
  --text-light: #F8FAF7;
  
  --border-color: rgba(139, 174, 102, 0.12);
  --border-light: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(139, 174, 102, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(139, 174, 102, 0.06), 0 8px 16px -8px rgba(139, 174, 102, 0.06);
  --shadow-lg: 0 20px 40px -10px rgba(139, 174, 102, 0.1), 0 12px 20px -12px rgba(139, 174, 102, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(139, 174, 102, 0.06);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.7s cubic-bezier(0.25, 1, 0.5, 1);

  /* Borders & Spacing */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-asym: 8px 32px 8px 32px;
  --radius-full: 9999px;
  --container-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

::selection {
  background-color: var(--primary);
  color: var(--text-dark);
}

/* 4. Utility Classes - ENFORCING EQUAL REDUCED SPACING */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }

/* Reduced padding heights for more compact layout */
.section-padding {
  padding: 60px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-dark);
}
.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Section Titles */
.section-header {
  max-width: 650px;
  margin: 0 auto 40px;
}
.section-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}
.section-title {
  font-size: 2.75rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.section-title::after {
  content: '';
  display: block;
  width: 45px;
  height: 3px;
  background: var(--secondary);
  margin: 15px auto 0;
  border-radius: var(--radius-full);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

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

/* Decorative Section Divider - styled with primary #8BAE66 color */
.divider-clip {
  background: var(--primary);
  height: 40px;
  width: 100%;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  margin-top: -1px;
}

.divider-clip-reverse {
  background: var(--primary-light);
  height: 40px;
  width: 100%;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-bottom: -1px;
}

/* ==========================================================================
   5. Header & Navigation (With Hover-Activated Products Mega Dropdown)
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header-scrolled {
  top: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-normal);
}

.header-scrolled .navbar {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-top: none;
  border-left: none;
  border-right: none;
  background: rgba(255, 255, 255, 0.94);
  padding: 6px 36px;
  box-shadow: 0 10px 30px -10px rgba(139, 174, 102, 0.15);
}

/* Brand Logo (Redesigned with SVG emblem) */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-svg {
  width: 40px;
  height: 40px;
  color: var(--primary-dark);
  fill: none;
  transition: transform var(--transition-normal);
}
.brand:hover .brand-logo-svg {
  transform: rotate(15deg);
}

.brand-name {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.15;
}
.brand-subtitle {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 800;
}

/* Nav Menu with dropdown positioning */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-item-dropdown {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}
.nav-link:hover {
  color: var(--primary-dark);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--primary-dark);
}

/* Products Mega Dropdown (Hover-Triggered on desktop only) */
@media (min-width: 1025px) {
  .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 720px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.3fr;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-normal);
    z-index: 999;
  }

  .nav-item-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1024px) {
  .mega-dropdown {
    display: none !important; /* Managed via mobile navigation drawer instead */
  }
}

.mega-column-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-menu-item a {
  display: block;
}

.mega-menu-item-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.mega-menu-item-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

.mega-menu-item a:hover .mega-menu-item-title {
  color: var(--primary-dark);
}

/* Mega dropdown highlighted card */
.mega-info-card {
  background: rgba(139, 174, 102, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mega-info-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.mega-info-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.mega-info-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mega-info-link:hover {
  color: var(--text-dark);
}

/* Expandable Search Input */
.search-container {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(139, 174, 102, 0.06);
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.search-input {
  width: 0;
  opacity: 0;
  background: transparent;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: all var(--transition-normal);
}

.search-btn {
  background: transparent;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.search-btn:hover {
  background: rgba(139, 174, 102, 0.12);
}

.search-container.search-active {
  background: white;
  border-color: rgba(139, 174, 102, 0.25);
  box-shadow: var(--shadow-sm);
  padding-left: 12px;
}

.search-container.search-active .search-input {
  width: 160px;
  opacity: 1;
  padding: 4px 8px;
}

/* Smaller search input for responsive phones */
@media (max-width: 576px) {
  .search-container.search-active .search-input {
    width: 110px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-actions .btn {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Sidebar Drawers */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 1005;
  box-shadow: -10px 0 30px rgba(139, 174, 102, 0.15);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  transition: right var(--transition-normal);
}

.mobile-nav.active {
  right: 0;
}

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

.close-btn {
  background: none;
  font-size: 2.25rem;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.mobile-link:hover {
  color: var(--secondary);
}

.mobile-dropdown-content {
  padding-left: 15px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid var(--border-color);
}
.mobile-dropdown-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}
.mobile-dropdown-link:hover {
  color: var(--primary-dark);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 37, 32, 0.35);
  backdrop-filter: blur(6px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .nav-menu, .nav-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .navbar {
    padding: 10px 20px;
  }
}

/* ==========================================================================
   6. Split Hero Section (Sage Green backgrounds) - RESPONSIVE & COMPACT
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #EBF2FA;
  color: var(--text-dark);
  overflow: hidden;
  padding: 110px 0 70px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.08) 0%, rgba(248, 250, 247, 0.98) 80%);
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 174, 102, 0.15);
  border: 1px solid rgba(139, 174, 102, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  color: var(--text-dark);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(139, 174, 102, 0.2);
  padding-top: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

/* Editorial Floating Image Showcase - SCALED FOR SMALL MOBILE */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 100%;
}

.visual-backdrop {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: var(--radius-asym);
  background: linear-gradient(45deg, rgba(212, 163, 115, 0.1) 0%, rgba(139, 174, 102, 0.2) 100%);
  border: 1px solid rgba(139, 174, 102, 0.2);
  transform: rotate(-6deg);
  z-index: 1;
}

.floating-card {
  position: absolute;
  width: 230px;
  border-radius: var(--radius-asym);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(28, 37, 32, 0.15);
  border: 1px solid var(--border-color);
  z-index: 2;
  transition: all var(--transition-normal);
}

.floating-card-1 {
  transform: rotate(3deg) translate(-10px, -20px);
  z-index: 3;
}

.floating-card-2 {
  transform: rotate(-8deg) translate(70px, 30px);
  width: 190px;
  opacity: 0.85;
}

.floating-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.floating-card-label {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px;
  color: var(--text-dark);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid var(--border-color);
}

.hero-visual:hover .floating-card-1 {
  transform: rotate(1deg) translate(-10px, -30px);
}
.hero-visual:hover .floating-card-2 {
  transform: rotate(-5deg) translate(85px, 40px);
  opacity: 1;
}

/* Scaled down visual sizes on tablets and small screens */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 28px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    height: 340px;
  }
  .floating-card-1 {
    width: 190px;
  }
  .floating-card-2 {
    width: 160px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 50px;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-visual {
    height: 280px;
  }
  .visual-backdrop {
    width: 200px;
    height: 200px;
  }
  .floating-card-1 {
    width: 150px;
    transform: rotate(3deg) translate(-10px, -15px);
  }
  .floating-card-1 img {
    height: 160px;
  }
  .floating-card-2 {
    width: 125px;
    transform: rotate(-8deg) translate(50px, 20px);
  }
  .floating-card-2 img {
    height: 130px;
  }
}

.hero-artwork { width: 100%; display:flex; justify-content:center; align-items:center; z-index:4; }
/* Hero rotator (single image that cycles) */
.hero-rotator { position: relative; width: 420px; max-width: 86%; border-radius: 14px; overflow: hidden; display:flex; flex-direction:column; align-items:center; }
.hero-rotator img { width: 100%; height: 360px; object-fit: cover; display:block; transition: opacity 420ms ease-in-out; }
.hero-rotator img.fade { opacity: 0; }
.rotator-caption { padding: 10px 14px; background: rgba(255,255,255,0.92); width:100%; text-align:center; font-weight:700; }

@media (max-width: 768px) {
  .hero-rotator { width: 320px; }
  .hero-rotator img { height: 260px; }
}

@media (max-width: 420px) {
  .hero-rotator { width: 92%; }
  .hero-rotator img { height: 200px; }
}

/* ==========================================================================
   7. Product Catalog (Unique Asymmetrical Card Layout)
   ========================================================================== */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Small screen fallback for cards to wrap neatly */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-asym);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card.hidden {
  display: none;
}

/* View More hiding class logic */
.product-card.limit-hidden {
  display: none !important;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 174, 102, 0.25);
}

.product-card:hover::before {
  opacity: 1;
}

.product-img-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-color: #E2E8F0;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}

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

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

.product-badge {
  display: none;
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 800;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-grow: 1;
}

.product-meta {
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-spec-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.product-spec-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.product-action {
  width: 100%;
  margin-top: 16px;
  border-radius: var(--radius-sm);
}

/* Catalog View More Button wrapper */
.catalog-action-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ==========================================================================
   8. Quality / Brand Trust
   ========================================================================== */
.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
}

.bg-primary .section-title {
  color: var(--text-light);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.prop-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 64, 175, 0.1);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.prop-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(212, 163, 115, 0.04);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.prop-card:hover::after {
  background: rgba(212, 163, 115, 0.1);
  transform: scale(1.5);
}

.prop-card:hover {
  background: white;
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.prop-icon {
  width: 54px;
  height: 54px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.prop-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.prop-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   9. About Section (Asymmetric Image Placement)
   ========================================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-img-main {
  border-radius: var(--radius-asym);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 420px;
  object-fit: cover;
  width: 100%;
}

.about-badge-floating {
  position: absolute;
  top: -20px;
  left: -20px;
  background: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
}

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

.about-badge-floating .text {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.about-bullets {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-bullet-icon {
  color: var(--primary-dark);
  font-size: 1.25rem;
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-main {
    height: 340px;
  }
  .about-badge-floating {
    position: static;
    margin: 20px auto 0;
    max-width: 200px;
  }
}

/* ==========================================================================
   10. Contact Section
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
}

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

.info-card {
  display: flex;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(139, 174, 102, 0.08);
  border: 1px solid rgba(139, 174, 102, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

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

.contact-map-placeholder {
  height: 180px;
  border-radius: var(--radius-md);
  background: #E2E8F0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
}

.contact-map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Forms */
.contact-form-container {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(139, 174, 102, 0.12);
}

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

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form-container {
    padding: 20px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   11. What We Do (Our Process Workflow)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.process-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(139, 174, 102, 0.12);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.process-card:hover .process-step-num {
  color: rgba(212, 163, 115, 0.25);
}

.process-card-title {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.process-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   12. Why Choose Us (Value Propositions)
   ========================================================================== */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.choose-card {
  background: white;
  border-radius: var(--radius-asym);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.choose-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 163, 115, 0.12);
  border-radius: var(--radius-sm);
  color: var(--secondary);
}

.choose-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 750;
}

.choose-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   13. High Impact CTA Banner Section
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: 1.65;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner-title {
    font-size: 1.75rem;
  }
  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ==========================================================================
   14. Footer Section & Real Social SVG Icons
   ========================================================================== */
.footer {
  background-color: #19201B;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.social-link:hover {
  background: var(--secondary);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.footer-title {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.footer-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-link-item a:hover {
  padding-left: 4px;
}

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

.footer-legal-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer-layout {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary);
  color: var(--text-dark);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   15. Dynamic Modal (Quote Form)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 37, 32, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: white;
  width: 90%;
  max-width: 560px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(28, 37, 32, 0.15);
  transform: translateY(30px) scale(0.96);
  transition: all var(--transition-normal);
  position: relative;
}

.modal-overlay.active .modal-window {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: var(--primary);
  color: var(--text-dark);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
}
.modal-close:hover {
  color: var(--primary-dark);
}

.modal-body {
  padding: 30px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

/* ==========================================================================
   16. Toast Notification
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: white;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  max-width: 380px;
  transform: translateX(-40px);
  opacity: 0;
  animation: slideToast 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
  transition: all var(--transition-normal);
}

.toast-success {
  border-left-color: #10B981;
}

.toast-error {
  border-left-color: #EF4444;
}

.toast-info {
  border-left-color: #3B82F6;
}

.toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

.toast-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.toast-msg {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.toast-close {
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
}

@keyframes slideToast {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   17. Scroll Reveal Animations & Form Error Controls
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Form validation styling */
.form-control.invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}
.error-message {
  color: #EF4444;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}
