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

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --primary: #2D3748;
  --primary-light: #4A5568;
  --primary-dark: #1A202C;
  --accent: #D69E2E;
  --accent-dark: #B7791F;
  --accent-light: #ECC94B;
  --text: #2D3748;
  --text-light: #718096;
  --text-lighter: #A0AEC0;
  --bg: #FFFFFF;
  --bg-alt: #F7FAFC;
  --bg-dark: #2D3748;
  --success: #38A169;
  --border: #E2E8F0;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 14px rgba(0,0,0,0.1);
  --radius: 6px;
  --radius-lg: 10px;
  --transition: all 0.3s ease;
  --header-bg: #FFFFFF;
  --header-text: #2D3748;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

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

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--bg);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--bg);
}

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

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
}

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

.btn-whatsapp:hover {
  background-color: #1DA851;
  color: #FFF;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-bg);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--header-text);
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--header-text);
}

.logo span {
  color: var(--accent);
  margin: 0 2px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  color: var(--header-text);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-dark);
}

.nav-cta {
  display: none;
  align-items: center;
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.hamburger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--header-text);
  transition: var(--transition);
  border-radius: 2px;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 520px;
  max-height: 680px;
  background: linear-gradient(rgba(45, 55, 72, 0.75), rgba(45, 55, 72, 0.85)), url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(214,158,46,0.08) 0%, transparent 70%);
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero .badge {
  display: inline-block;
  background: rgba(214,158,46,0.15);
  color: var(--accent-light);
  border: 1px solid rgba(214,158,46,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
}


/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-dark {
  background-color: var(--primary);
  color: var(--bg);
}

.section-dark .section-title,
.section-dark .section-subtitle {
  color: var(--bg);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

/* ==========================================================================
   Feature / Why Us Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Product Category Grid
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg);
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(27, 42, 74, 0.9));
  padding: 2rem 1.5rem 1.5rem;
  color: var(--bg);
}

.product-overlay h3 {
  color: var(--bg);
  margin-bottom: 0.25rem;
}

.product-count {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==========================================================================
   Product Catalog (Products Page)
   ========================================================================== */
.catalog-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-sidebar {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.category-sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.category-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.category-link:last-child {
  border-bottom: none;
}

.category-link:hover,
.category-link.active {
  color: var(--accent);
  padding-left: 0.5rem;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-item {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-item-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-item-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.product-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.product-specs th,
.product-specs td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.product-specs th {
  font-weight: 600;
  color: var(--text);
  width: 40%;
}

/* ==========================================================================
   Stats / Counter Section
   ========================================================================== */
.stats-section {
  background-color: var(--primary);
  color: var(--bg);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item h2 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 500;
}

/* ==========================================================================
   Industries Section
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.industry-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.industry-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ==========================================================================
   Enquiry / Contact Form
   ========================================================================== */
.form-section {
  background-color: var(--bg-alt);
}

.form-container {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}

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

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* ==========================================================================
   Trust / Brands Section
   ========================================================================== */
.trust-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.brand-logos img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.brand-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content ul {
  margin-bottom: 1.5rem;
}

.about-content li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

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

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  left: 20px;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 100%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg);
  border: 4px solid var(--accent);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  left: 10px;
}

.timeline-content {
  padding: 20px;
  background-color: var(--bg);
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.team-section {
  margin-top: 4rem;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.contact-icon {
  background: var(--primary);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.contact-details p {
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
  width: 100%;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--primary-dark);
  color: var(--bg);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: var(--text-lighter);
}

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

.footer-links a {
  color: var(--text-lighter);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-lighter);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none !important; }

.visible { visibility: visible; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Floating Elements & Badges
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1DA851;
  color: #FFF;
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-success {
  background-color: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.badge-primary {
  background-color: rgba(27, 42, 74, 0.1);
  color: var(--primary);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  margin-top: 80px; /* offset for header */
}

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

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

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--text-lighter);
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 500;
}

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

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) {
  .hero-title { font-size: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .form-container { padding: 3rem; }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-title { font-size: 3.5rem; }
  .hero-subtitle { font-size: 1.25rem; }
  
  .catalog-container { flex-direction: row; }
  .category-sidebar { width: 250px; flex-shrink: 0; }
  .product-list { flex-grow: 1; }
  
  .product-item { flex-direction: row; }
  .product-item-img { width: 300px; height: auto; }
  
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-group-full { grid-column: span 2; }
  
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
  
  .timeline::after { left: 50%; }
  .timeline-item { width: 50%; }
  .timeline-item:nth-child(even) { left: 50%; }
  .timeline-item:nth-child(odd) { left: 0; }
  .timeline-item:nth-child(even)::after { left: -10px; }
  .timeline-item:nth-child(odd)::after { right: -10px; left: auto; }
}

/* Large Devices (Desktops, 1024px and up) */
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  
  /* Desktop Navigation */
  .hamburger { display: none !important; }
  .nav-links { display: flex !important; }
  .nav-cta { display: inline-flex !important; }
}

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container { max-width: 1200px; }
}

/* Mobile Navigation Toggle Styles */
@media (max-width: 1023px) {
  .hamburger { display: flex; }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-top: 1px solid var(--border);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    color: var(--text);
  }
  
  .nav-cta { display: none; }
}

/* ==========================================================================
   Page Hero (Inner Pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
  padding: 6.5rem 0 2.5rem;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumb,
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a,
.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.breadcrumb span,
.breadcrumbs span {
  color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   Section Header
   ========================================================================== */
.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center {
  text-align: center;
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ==========================================================================
   Hero Buttons & Trust Stats
   ========================================================================== */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.trust-stats span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   Product Card Sub-Elements
   ========================================================================== */
.product-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.product-card-count {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.product-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

/* ==========================================================================
   Product Category (Products Page)
   ========================================================================== */
.catalog-section {
  padding: 4rem 0;
}

.category-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-links li {
  margin-bottom: 0.25rem;
}

.product-category {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.product-category:last-child {
  border-bottom: none;
}

.product-category h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

/* ==========================================================================
   Stats Section Enhancements
   ========================================================================== */
.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* ==========================================================================
   Feature Item (Industries/About)
   ========================================================================== */
.feature-item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Values Grid (About Page)
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.company-details {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-form-wrapper {
  flex: 1;
}

.contact-form {
  width: 100%;
}

.contact-col {
  /* footer contact column */
}

.contact-cta {
  margin-top: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent);
}

.contact-list li a {
  color: rgba(255,255,255,0.85);
}

.contact-list li a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Office Cards (Contact Page)
   ========================================================================== */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.office-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border-top: 4px solid var(--accent);
}

.office-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.office-address {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==========================================================================
   CTA Banner / Section
   ========================================================================== */
.cta-banner,
.cta-section {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2,
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ==========================================================================
   Brands / Trust Section
   ========================================================================== */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.brand-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: calc(50% - 0.75rem);
}

.brand-logo {
  width: 100%;
  max-width: 140px;
  height: 70px;
  object-fit: contain;
}

.brand-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ==========================================================================
   GST Text (Footer)
   ========================================================================== */
.gst-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Full Width Utility
   ========================================================================== */
.full-width {
  grid-column: 1 / -1;
  width: 100%;
}

/* ==========================================================================
   WhatsApp Button Styles
   ========================================================================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  stroke: #fff;
}

/* ==========================================================================
   Footer Sub-Columns
   ========================================================================== */
.brand-col,
.links-col,
.products-col,
.contact-col {
  /* Column markers — inherits footer-col styles */
}

/* ==========================================================================
   Additional Responsive: Missing Classes
   ========================================================================== */
@media (min-width: 576px) {
  .offices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-item {
    width: calc(33.33% - 1rem);
  }

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

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-item {
    width: calc(20% - 1.2rem);
  }

  .brand-logo {
    max-width: 120px;
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .cta-banner h2,
  .cta-section h2 {
    font-size: 2.5rem;
  }
}
