/*
 * JK Enterprise - Premium Business Website Stylesheet
 * Brand Theme: Dark Navy (#0b132b), Vibrant Orange (#f77f00), Accent Blue (#0077b6)
 * Fonts: Montserrat (Headings), Inter (Body)
 */

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

:root {
  --primary-navy: #0b132b;
  --primary-navy-rgb: 11, 19, 43;
  --secondary-orange: #f77f00;
  --secondary-orange-rgb: 247, 127, 0;
  --accent-blue: #0077b6;
  --light-blue: #00b4d8;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 16px;
  --radius-md: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
}

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

a:hover {
  color: var(--secondary-orange);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-navy);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-orange);
}

/* Preloader / Site Loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-navy);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-left-color: var(--secondary-orange);
  border-top-color: var(--light-blue);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loader-text {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 2px;
  animation: pulse 1.5s infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Custom Typography & Utility Classes */
.text-orange {
  color: var(--secondary-orange) !important;
}

.text-navy {
  color: var(--primary-navy) !important;
}

.bg-navy {
  background-color: var(--primary-navy) !important;
}

.bg-light-custom {
  background-color: var(--bg-light);
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--secondary-orange));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons System */
.btn-custom-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #005f9e 100%);
  color: var(--bg-white) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
  transition: var(--transition-smooth);
}

.btn-custom-primary:hover {
  background: linear-gradient(135deg, #005f9e 0%, var(--accent-blue) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35);
}

.btn-custom-orange {
  background: linear-gradient(135deg, var(--secondary-orange) 0%, #d86c00 100%);
  color: var(--bg-white) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 4px 15px rgba(247, 127, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-custom-orange:hover {
  background: linear-gradient(135deg, #d86c00 0%, var(--secondary-orange) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 127, 0, 0.35);
}

.btn-custom-outline {
  background: transparent;
  color: var(--primary-navy) !important;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-navy);
  transition: var(--transition-smooth);
}

.btn-custom-outline:hover {
  background-color: var(--primary-navy);
  color: var(--bg-white) !important;
  transform: translateY(-3px);
}

/* Glassmorphism Styles */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(247, 127, 0, 0.3);
}

/* Sticky Navigation Bar */
.custom-navbar {
  background: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid var(--secondary-orange);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-text {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #ffffff 60%, var(--secondary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 8px 18px !important;
  position: relative;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-orange) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 36px);
}

.nav-cta {
  margin-left: 15px;
}

/* Mobile Toggle Hamburger */
.navbar-toggler {
  padding: 8px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  outline: none !important;
  box-shadow: none !important;
  transition: var(--transition-smooth);
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--secondary-orange) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative !important;
  width: 22px !important;
  height: 2px !important;
  background-color: #ffffff !important;
  display: inline-block !important;
  transition: var(--transition-smooth) !important;
  vertical-align: middle;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '' !important;
  position: absolute !important;
  width: 22px !important;
  height: 2px !important;
  background-color: #ffffff !important;
  transition: var(--transition-smooth) !important;
  left: 0 !important;
}

.navbar-toggler-icon::before {
  top: -6px !important;
}

.navbar-toggler-icon::after {
  top: 6px !important;
}

/* Expanded/Active state anims */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) !important;
  top: 0 !important;
  background-color: var(--secondary-orange) !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) !important;
  top: 0 !important;
  background-color: var(--secondary-orange) !important;
}

/* Premium Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, var(--primary-navy) 0%, #030712 90%);
  padding: 160px 0 120px;
  color: var(--bg-white);
  overflow: hidden;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-shape-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-tagline {
  background: rgba(247, 127, 0, 0.15);
  color: var(--secondary-orange);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(247, 127, 0, 0.3);
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.hero-buttons .btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 5;
}

.hero-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.2), rgba(247, 127, 0, 0.2));
  filter: blur(40px);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  animation: blob-bounce 12s infinite alternate;
}

.hero-img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.hero-img:hover {
  transform: translateY(-5px) scale(1.01);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  z-index: 10;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-badge i {
  font-size: 2rem;
  color: var(--secondary-orange);
  margin-right: 15px;
}

.hero-badge h4 {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
  color: var(--primary-navy);
}

.hero-badge p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* Custom Section Waves Separator */
.wave-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.wave-svg path {
  fill: var(--bg-white);
}

/* Statistics Section Counters */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.stats-card {
  padding: 30px;
  text-align: center;
  border-bottom: 4px solid var(--accent-blue);
}

.stats-card:hover {
  border-bottom-color: var(--secondary-orange);
}

.stats-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(0, 119, 182, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-smooth);
}

.stats-card:hover .stats-icon-box {
  background: var(--secondary-orange);
}

.stats-icon-box i {
  font-size: 1.5rem;
  color: var(--accent-blue);
  transition: var(--transition-smooth);
}

.stats-card:hover .stats-icon-box i {
  color: var(--bg-white);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--primary-navy);
  display: inline-block;
}

.stats-suffix {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-orange);
}

.stats-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Products Section Card UI */
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(0, 119, 182, 0.2);
}

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

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

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-navy);
  color: var(--bg-white);
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.product-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}

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

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

.product-spec {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(0, 119, 182, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
}

.btn-product-inquire {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-orange);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.btn-product-inquire i {
  margin-left: 5px;
  transition: var(--transition-smooth);
}

.btn-product-inquire:hover {
  color: var(--primary-navy);
}

.btn-product-inquire:hover i {
  transform: translateX(3px);
}

/* Why Choose Us Section */
.wcu-item {
  display: flex;
  margin-bottom: 30px;
}

.wcu-icon-box {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(247, 127, 0, 0.1) 0%, rgba(247, 127, 0, 0.03) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 127, 0, 0.2);
  margin-right: 20px;
  transition: var(--transition-smooth);
}

.wcu-item:hover .wcu-icon-box {
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
}

.wcu-icon-box i {
  font-size: 1.5rem;
  color: var(--secondary-orange);
  transition: var(--transition-smooth);
}

.wcu-item:hover .wcu-icon-box i {
  color: var(--bg-white);
}

.wcu-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

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

/* Dynamic Carousel/Slider or testimonial cards */
.testimonial-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  background: var(--bg-white);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: rgba(0, 119, 182, 0.08);
}

.stars {
  color: #ffb703;
  margin-bottom: 15px;
}

.stars i {
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--accent-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
}

.client-details h5 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}

.client-details p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Call to Action Banner style */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #030712 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.15) 0%, rgba(0, 0, 0, 0) 75%);
  border-radius: 50%;
}

.cta-title {
  color: var(--bg-white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Inquiry form inputs glow styling */
.contact-form-card {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-control, .form-select {
  border: 2px solid #e2e8f0;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.15);
  border-color: var(--accent-blue);
}

/* Custom Success Toast / Modal Alert styles */
.toast-container {
  z-index: 10000;
}

.toast-custom {
  background: var(--primary-navy);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--secondary-orange);
}

/* Contact information panel card */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #111a36 100%);
  color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  height: 100%;
}

.contact-info-card h3 {
  color: var(--bg-white);
  margin-bottom: 30px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary-orange);
  font-size: 1.1rem;
}

.contact-info-text h5 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.contact-info-text p, .contact-info-text a {
  color: var(--bg-white);
  margin: 0;
  font-weight: 600;
}

.contact-info-text a:hover {
  color: var(--secondary-orange);
}

.contact-social-icons {
  display: flex;
  gap: 15px;
}

.social-circle-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.social-circle-link:hover {
  background: var(--secondary-orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(247, 127, 0, 0.3);
}

/* Beautiful Interactive Footer */
.footer-area {
  background-color: var(--primary-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
  border-top: 5px solid var(--secondary-orange);
  position: relative;
}

.footer-area h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-area h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-orange);
  border-radius: 2px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about-text {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.footer-links a i {
  font-size: 0.8rem;
  margin-right: 8px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--secondary-orange);
  transform: translateX(4px);
}

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

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--secondary-orange);
  margin-right: 12px;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
  padding-top: 25px;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

/* FAQ Accordion Styling */
.custom-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.custom-accordion .accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
  padding: 20px 25px;
  background-color: var(--bg-white);
  border: none;
  font-size: 1.05rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(0, 119, 182, 0.05);
  color: var(--accent-blue);
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  background-size: 1rem;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-body {
  padding: 25px;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Product Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.btn-filter {
  padding: 10px 24px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  border-radius: 30px;
  border: 2px solid #e2e8f0;
  background: white;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.btn-filter:hover, .btn-filter.active {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 19, 43, 0.15);
}

.btn-filter.active {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-navy) 100%);
  border-color: var(--accent-blue);
}

/* Inner Page Header styling */
.page-title-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #030712 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.page-title-section h1 {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a:hover {
  color: var(--secondary-orange);
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom .active {
  color: var(--secondary-orange);
}

/* Floating Elements (WhatsApp & Scroll to top) */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  outline: none;
}

.floating-whatsapp {
  background-color: #25d366;
  color: white;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp i {
  font-size: 1.8rem;
}

.floating-scrolltop {
  background-color: var(--secondary-orange);
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-scrolltop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-scrolltop:hover {
  background-color: #d86c00;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(247, 127, 0, 0.4);
}

.floating-scrolltop i {
  font-size: 1.4rem;
}

/* Floating WhatsApp Chat Drawer */
.whatsapp-chat-drawer {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 330px;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.9);
  transition: var(--transition-smooth);
}

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

.whatsapp-drawer-header {
  background-color: #075e54;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
}

.whatsapp-avatar {
  width: 45px;
  height: 45px;
  background-color: white;
  color: #075e54;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.3rem;
}

.whatsapp-avatar-status {
  width: 12px;
  height: 12px;
  background-color: #4ed964;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  left: 50px;
}

.whatsapp-header-info h5 {
  color: white;
  margin: 0;
  font-size: 0.95rem;
}

.whatsapp-header-info p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.whatsapp-drawer-body {
  background-color: #ece5dd;
  padding: 20px;
  height: 180px;
  overflow-y: auto;
}

.whatsapp-msg {
  background-color: white;
  padding: 10px 15px;
  border-radius: 10px 10px 10px 0;
  max-width: 85%;
  font-size: 0.85rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.whatsapp-msg-time {
  display: block;
  text-align: right;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.whatsapp-drawer-footer {
  padding: 15px 20px;
  background-color: #f0f0f0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.whatsapp-input {
  flex-grow: 1;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  outline: none;
  background: white;
}

.whatsapp-send-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #075e54;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-send-btn:hover {
  background-color: #128c7e;
  transform: scale(1.05);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 2.1rem;
  }
  .hero-section {
    padding: 120px 0 80px;
    text-align: center;
  }
  .hero-content {
    text-align: center !important;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-buttons .btn {
    margin-right: 0;
  }
  .custom-navbar {
    background: rgba(11, 19, 43, 0.98) !important;
  }
  
  /* Suspended Premium Floating Dropdown Drawer */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background: rgba(11, 19, 43, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--secondary-orange);
    padding: 20px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin-top: 10px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .navbar-nav {
    padding: 0 !important;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 5px;
  }

  .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px !important;
    text-align: left !important;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
    font-size: 0.95rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-nav .nav-link::after {
    content: '\f105' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    color: rgba(255, 255, 255, 0.4) !important;
    transition: var(--transition-smooth) !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(247, 127, 0, 0.1) !important;
    border-left-color: var(--secondary-orange) !important;
    color: var(--secondary-orange) !important;
    padding-left: 25px !important;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    color: var(--secondary-orange) !important;
    transform: translateX(5px) !important;
  }

  .nav-cta {
    margin-top: 15px !important;
    margin-left: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .nav-cta .btn {
    width: 100% !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .cta-banner {
    padding: 40px 30px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .stats-section {
    margin-top: -40px;
  }
  .product-img-box {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }
  .brand-text {
    font-size: 1.3rem;
  }
  .navbar-brand i {
    font-size: 1.3rem !important;
  }
  .hero-section {
    padding: 110px 0 60px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    padding: 8px 15px;
    width: 85%;
    justify-content: center;
    animation: float-center 4s ease-in-out infinite alternate;
  }
  @keyframes float-center {
    0% { transform: translate(-50%, 0px); }
    100% { transform: translate(-50%, -8px); }
  }
  .hero-badge i {
    font-size: 1.3rem;
    margin-right: 10px;
  }
  .hero-badge h4 {
    font-size: 1rem;
  }
  .hero-badge p {
    font-size: 0.75rem;
  }
  .stats-card {
    padding: 20px 10px;
  }
  .stats-number {
    font-size: 1.8rem;
  }
  .stats-suffix {
    font-size: 1.8rem;
  }
  .stats-label {
    font-size: 0.8rem;
  }
  .cta-banner {
    padding: 35px 20px;
    text-align: center;
  }
  .cta-title {
    font-size: 1.5rem;
  }
  .cta-desc {
    font-size: 0.95rem;
  }
  .cta-banner .btn {
    width: 100%;
  }
  .contact-form-card {
    padding: 25px 15px;
  }
  .contact-info-card {
    padding: 30px 20px;
  }
  .filter-tabs {
    gap: 8px;
    margin-bottom: 30px;
  }
  .btn-filter {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .footer-area {
    padding: 60px 0 20px;
    text-align: center;
  }
  .footer-area h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-contact-item {
    justify-content: center;
  }
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .whatsapp-chat-drawer {
    width: 290px;
    right: 15px;
    bottom: 90px;
  }
  .floating-actions {
    right: 15px;
    bottom: 20px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp i {
    font-size: 1.5rem;
  }
  .floating-scrolltop i {
    font-size: 1.2rem;
  }
}

