/* ==========================================================================
   SOFOPRY.COM - EXACT REPLICA STYLESHEET
   Matches Astra Theme + Elementor Styling & Exact Color Scheme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary: #ff8502;
  --primary-dark: #e07200;
  --secondary: #046bd2;
  --secondary-dark: #045cb4;
  --navy-dark: #0b1f39;
  --navy-darker: #061324;
  --slate-dark: #1e293b;
  --slate-text: #334155;
  --slate-muted: #64748b;
  --bg-light: #F0F5FA;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --container-max: 1220px;
}

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

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--slate-text);
  background-color: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--slate-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--navy-dark); color: #fff; }
.bg-white { background-color: var(--bg-white); }
.text-primary { color: var(--primary) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 133, 2, 0.35);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff !important;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--slate-dark) !important;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff !important;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 107, 210, 0.3);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #ffffff !important;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--slate-dark);
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-item.active > .nav-link::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #ffffff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-radius: 0 0 6px 6px;
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 1001;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--slate-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  padding-left: 25px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--slate-dark);
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--slate-dark);
  cursor: pointer;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  color: var(--slate-dark);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background-color: var(--bg-light);
}

.mobile-submenu {
  list-style: none;
  padding-left: 15px;
  margin-top: 6px;
  display: none;
}

.mobile-submenu.show {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 8px 10px;
  font-size: 0.92rem;
  color: var(--slate-muted);
}

.mobile-submenu li a:hover {
  color: var(--primary);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Hero Banner Slider (SmartSlider 3 Exact Replica)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #111;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  transform: translateY(20px);
  transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.slide-item.active .slide-content {
  transform: translateY(0);
}

.slide-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid #ffffff;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.slide-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #f1f5f9;
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.slide-btn-wrap {
  margin-top: 15px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 25px; }
.slider-arrow.next { right: 25px; }

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  border-color: var(--primary);
  width: 32px;
  border-radius: 10px;
}

/* ==========================================================================
   Page Banner / Breadcrumbs (Inner Pages)
   ========================================================================== */
.page-banner {
  background: linear-gradient(rgba(11, 31, 57, 0.85), rgba(11, 31, 57, 0.9)), url('../images/slide-1.jpg') center/cover no-repeat;
  padding: 60px 0 55px;
  color: #ffffff;
  text-align: center;
}

.page-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.page-breadcrumb a {
  color: #ffffff;
}

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

.page-breadcrumb span {
  color: var(--primary);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-padding {
  padding: 85px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-dark);
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.section-header.text-left .section-title::after {
  left: 0;
  transform: none;
}

/* ==========================================================================
   About Us Section (Homepage & Page)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--slate-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-text p {
  color: var(--slate-text);
  font-size: 1rem;
  margin-bottom: 18px;
}

.about-image {
  position: relative;
  text-align: center;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: translateY(-4px);
}

/* ==========================================================================
   What We Do Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 35px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: var(--transition);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-body h3 {
  font-size: 1.45rem;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.98rem;
  color: var(--slate-text);
  line-height: 1.6;
}

/* ==========================================================================
   What We Export / Products Grid
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.products-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 30px auto 0;
}

.product-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

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

.product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #f8fafc;
}

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

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

.product-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.35rem;
  color: var(--slate-dark);
  margin-bottom: 14px;
}

.product-title a {
  color: var(--slate-dark);
}

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

.product-spec, .product-benefit {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 10px;
  color: var(--slate-text);
}

.product-spec strong, .product-benefit strong {
  color: var(--slate-dark);
  display: block;
  margin-bottom: 3px;
}

.product-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* ==========================================================================
   Why You Choose Us Section
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.why-card h4 {
  font-size: 1.15rem;
  color: var(--slate-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   Business Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 31, 57, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  font-size: 2rem;
}

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

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

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.2rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.lightbox-nav.prev { left: 25px; }
.lightbox-nav.next { right: 25px; }

/* ==========================================================================
   Membership & Certification Slider (Marquee)
   ========================================================================== */
.logo-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}

.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.logo-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.logo-track {
  display: flex;
  width: calc(240px * 12);
  animation: marquee 25s linear infinite;
  align-items: center;
}

.logo-marquee-wrap:hover .logo-track {
  animation-play-state: paused;
}

.logo-slide {
  width: 240px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
}

.logo-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(15%);
  transition: var(--transition);
}

.logo-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 6)); }
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.product-detail-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: #f8fafc;
}

.product-detail-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.product-detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--slate-dark);
  margin-bottom: 18px;
}

.product-detail-desc {
  font-size: 1.05rem;
  color: var(--slate-text);
  line-height: 1.7;
  margin-bottom: 30px;
}

.detail-block {
  margin-bottom: 25px;
  background: var(--bg-light);
  padding: 24px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.detail-block h3 {
  font-size: 1.25rem;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.detail-list {
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--slate-text);
  line-height: 1.5;
}

.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.product-inquiry-bar {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
}

.contact-info-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--slate-dark);
  margin-bottom: 15px;
}

.contact-lead {
  font-size: 1.02rem;
  color: var(--slate-text);
  line-height: 1.65;
  margin-bottom: 30px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

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

.contact-detail-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--slate-dark);
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--slate-muted);
  font-size: 0.98rem;
}

/* Contact Form */
.contact-form-panel {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
  font-size: 1.7rem;
  margin-bottom: 25px;
  color: var(--slate-dark);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--slate-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #f8fafc;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.15);
}

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

.form-feedback {
  display: none;
  padding: 15px;
  margin-top: 15px;
  border-radius: 6px;
  font-weight: 500;
}

.form-feedback.success {
  display: block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ==========================================================================
   Site Footer (Exact Astra Deep Navy Palette)
   ========================================================================== */
.site-footer {
  background-color: var(--navy-dark);
  color: #cbd5e1;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  border-radius: 4px;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links li a {
  color: #94a3b8;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links li a::before {
  content: '›';
  font-size: 1.2rem;
  line-height: 1;
  color: var(--primary);
}

.footer-links li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #94a3b8;
}

.footer-contact-item i,
.footer-contact-item svg {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #94a3b8;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  background-color: var(--navy-darker);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================================================
   WhatsApp Floating Widget
   ========================================================================== */
.whatsapp-floating-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

/* Pulse animation */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: waPulse 1.8s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #1e293b;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Interactive WhatsApp Card */
.whatsapp-chat-card {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.whatsapp-chat-card.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-card-header {
  background-color: var(--whatsapp-dark);
  color: #ffffff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-header-text h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 2px;
}

.wa-status {
  font-size: 0.75rem;
  color: #dcf8c6;
}

.wa-card-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.8;
}

.wa-card-close:hover {
  opacity: 1;
}

.wa-card-body {
  padding: 20px;
  background: #ECE5DD url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-size: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-message-bubble {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 0 10px 10px 10px;
  font-size: 0.88rem;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  position: relative;
  line-height: 1.45;
}

.wa-card-footer {
  padding: 12px 16px;
  background: #f0f2f5;
  display: flex;
  gap: 8px;
}

.wa-card-footer input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  font-size: 0.88rem;
  outline: none;
}

.wa-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.wa-send-btn:hover {
  background-color: var(--whatsapp-dark);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-slider-section { height: 500px; }
  .slide-title { font-size: 2.8rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 920px) {
  .site-nav { display: none; }
  .mobile-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-slider-section { height: 420px; }
  .slide-title { font-size: 2.1rem; }
  .slide-desc { font-size: 0.95rem; }
  .slide-subtitle { font-size: 0.95rem; }
  .section-padding { padding: 55px 0; }
  .section-title { font-size: 1.9rem; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid.two-cols { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .whatsapp-chat-card { width: calc(100vw - 40px); right: -5px; }
}
