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

:root {
  --navy-primary: #0D1B3E;
  --navy-light: #182C5A;
  --navy-dark: #060D1E;
  --orange-primary: #F57C00;
  --orange-hover: #E65100;
  --orange-light: #FFE0B2;
  --white: #FFFFFF;
  --light-bg: #F8FAFC;
  --border-color: #E2E8F0;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-light: #94A3B8;
  
  --font-sans: 'Outfit', sans-serif;
  
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 3px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 20px -8px rgba(13, 27, 62, 0.12), 0 4px 6px -2px rgba(13, 27, 62, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(13, 27, 62, 0.15), 0 10px 10px -5px rgba(13, 27, 62, 0.04);
  --shadow-premium: 0 30px 60px -15px rgba(13, 27, 62, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-primary);
}

p {
  color: var(--text-secondary);
}

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

/* Button & UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--orange-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.4);
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.5);
}

.btn-secondary {
  background-color: var(--navy-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 27, 62, 0.3);
}

.btn-secondary:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 27, 62, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--navy-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--navy-primary);
  transform: translateY(-2px);
}

.btn-wa {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 20px 0;
}

header.scrolled {
  background-color: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: var(--radius-sm);
  background-color: var(--white);
  padding: 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--orange-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* For non-scrolled transparent header, default text color white */
header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

header:not(.scrolled) .nav-link:hover {
  color: var(--orange-primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 8px 0;
}

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

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

.nav-link:hover {
  color: var(--orange-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: radial-gradient(var(--orange-primary) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.15) 0%, rgba(13, 27, 62, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  background: rgba(245, 124, 0, 0.15);
  border: 1px solid rgba(245, 124, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.hero-title span {
  background: linear-gradient(90deg, #FFF 0%, var(--orange-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  border-left: 3px solid var(--orange-primary);
  padding-left: 16px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

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

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

/* Floating Sales Card */
.sales-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: rgba(13, 27, 62, 0.8);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 5px solid var(--orange-primary);
  padding: 20px;
  width: 280px;
  box-shadow: var(--shadow-premium);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
}

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

.sales-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sales-avatar-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.sales-avatar-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.sales-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background-color: #25D366;
  border: 2px solid var(--white);
  border-radius: 50%;
}

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

.sales-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.sales-title {
  font-size: 0.75rem;
  color: var(--orange-primary);
  font-weight: 600;
  text-transform: uppercase;
}

.sales-company {
  font-size: 0.65rem;
  color: var(--text-light);
}

.sales-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sales-phone-link {
  font-size: 0.8rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.sales-phone-link:hover {
  color: var(--orange-primary);
}

.sales-btn-wa {
  font-size: 0.8rem;
  padding: 8px 12px;
  width: 100%;
}

/* Sections Styling General */
section {
  padding: 100px 0;
  position: relative;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-card {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.why-icon-container {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-primary);
  transition: var(--transition-normal);
}

.why-card:hover .why-icon-container {
  background-color: var(--orange-primary);
  color: var(--white);
}

.why-card-title {
  font-size: 1.3rem;
  font-weight: 700;
}

/* Product Categories Section */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

.tab-btn:hover {
  background-color: var(--white);
  color: var(--navy-primary);
  border-color: var(--navy-primary);
}

.tab-btn.active {
  background-color: var(--orange-primary);
  color: var(--white);
  border-color: var(--orange-primary);
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

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

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

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

.product-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--light-bg);
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--navy-primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-primary);
}

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

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.spec-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-footer {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.product-footer .btn {
  flex: 1;
  padding: 12px;
  font-size: 0.85rem;
}

/* Company Profile Section */
.profile-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.profile-visual {
  position: relative;
}

.profile-backdrop {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--orange-light);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.profile-card {
  position: relative;
  background-color: var(--navy-primary);
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--white);
  z-index: 2;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 6px solid var(--orange-primary);
}

.profile-card-title {
  color: var(--white);
  font-size: 2rem;
}

.profile-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

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

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-primary);
}

.stat-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
}

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-list-item {
  display: flex;
  gap: 16px;
}

.profile-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--orange-light);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.profile-list-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.profile-list-text p {
  font-size: 0.9rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(13, 27, 62, 0.05);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--navy-primary);
  color: var(--white);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
}

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

.service-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-list-item::before {
  content: "✓";
  color: var(--orange-primary);
  font-weight: bold;
}

/* Brand Partners Section */
.partners {
  padding: 60px 0;
  background-color: var(--navy-primary);
  overflow: hidden;
}

.partners-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.partners-title {
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.partners-slider {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 40px;
  filter: grayscale(1) brightness(2);
  opacity: 0.6;
  transition: var(--transition-normal);
}

.partner-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* Customer Testimonials Section */
.testimonials-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--navy-primary);
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  top: -24px;
  left: -20px;
  opacity: 0.15;
  font-family: serif;
  color: var(--navy-primary);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.author-name {
  font-weight: 700;
  color: var(--navy-primary);
}

.author-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-company {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.ctrl-btn:hover {
  background-color: var(--navy-primary);
  color: var(--white);
  border-color: var(--navy-primary);
}

.dots-container {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 62, 0) 40%, rgba(13, 27, 62, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-normal);
}

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

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

.gallery-caption {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-category {
  color: var(--orange-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 27, 62, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  padding: 24px;
}

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

.lightbox-content {
  max-width: 900px;
  max-height: 80vh;
  position: relative;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Contact Section & Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

.contact-info-title {
  font-size: 2rem;
}

.contact-info-desc {
  font-size: 1rem;
}

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

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-container {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--orange-light);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.contact-form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-full-width {
  grid-column: span 2;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-primary);
}

.form-input, .form-textarea, .form-select {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--light-bg);
  transition: var(--transition-fast);
  width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--orange-primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.15);
}

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

.form-submit-btn {
  width: 100%;
}

/* Map Section */
.map-container {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Section */
footer {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--orange-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

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

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-subtitle {
  font-size: 0.65rem;
  color: var(--orange-primary);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--orange-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer-link a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-link a:hover {
  color: var(--orange-primary);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--orange-primary);
}

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

.footer-copy {
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-meta-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-meta-link a {
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-meta-link a:hover {
  color: var(--white);
}

/* Mobile Responsiveness Rules */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-tag {
    align-self: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    border-left: none;
    padding-left: 0;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image-container {
    transform: none !important;
  }
  
  .sales-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 24px;
    animation: none;
  }
  
  .profile-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1010;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--navy-dark);
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    transition: var(--transition-normal);
    z-index: 1005;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Floating Action Widgets */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-wa 2.5s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-wa-tooltip {
  position: absolute;
  right: 72px;
  background-color: var(--navy-primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.back-to-top-btn {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--navy-primary);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.back-to-top-btn:hover {
  background-color: var(--orange-primary);
  transform: translateY(-3px);
}

/* Equipment Wizard / Calculator Styles */
.wizard-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: var(--white);
}

.wizard-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.wizard-header {
  text-align: center;
  margin-bottom: 30px;
}

.wizard-title {
  color: var(--white);
  font-size: 2.2rem;
  margin-top: 8px;
  margin-bottom: 12px;
}

.wizard-subtitle {
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
}

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.wizard-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--orange-light);
}

.wizard-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(13, 27, 62, 0.8);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.wizard-select:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.3);
}

.wizard-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 10px;
}

.wizard-result-box {
  margin-top: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--text-primary);
  position: relative;
  border-left: 5px solid var(--orange-primary);
  animation: fadeIn 0.4s ease;
}

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

.result-badge {
  display: inline-block;
  background-color: var(--orange-light);
  color: var(--orange-hover);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.result-title {
  font-size: 1.4rem;
  color: var(--navy-primary);
  margin-bottom: 6px;
}

.result-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.result-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.res-tag {
  background-color: var(--light-bg);
  color: var(--navy-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

/* E-Catalog Section */
.catalog-section {
  padding: 60px 0;
  background-color: var(--navy-primary);
  color: var(--white);
}

.catalog-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .catalog-banner {
    grid-template-columns: 1fr;
  }
}

.catalog-title {
  color: var(--white);
  font-size: 2.2rem;
  margin-top: 8px;
  margin-bottom: 12px;
}

.catalog-subtitle {
  color: var(--text-light);
}

.catalog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.catalog-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition-fast);
}

.catalog-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.catalog-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.catalog-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.catalog-card p {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

/* FAQ Section */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--orange-primary);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-primary);

}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--orange-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
  transition: max-height 0.5s ease-in, padding 0.35s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Product Detail Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 13, 30, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.product-modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 36px;
  box-shadow: var(--shadow-premium);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--light-bg);
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.product-modal-close:hover {
  background-color: var(--orange-primary);
  color: var(--white);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }
}

.product-modal-img-wrapper {
  position: relative;
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 20px;
}

.product-modal-img-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.product-modal-title {
  font-size: 1.6rem;
  color: var(--navy-primary);
  margin-bottom: 8px;
}

.product-modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.specs-heading {
  font-size: 1.05rem;
  color: var(--navy-primary);
  margin-bottom: 10px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table td {
  padding: 8px 0;
  font-size: 0.9rem;
}

.specs-table td:first-child {
  color: var(--text-secondary);
  font-weight: 500;
}

.specs-table td:last-child {
  color: var(--navy-primary);
  font-weight: 600;
  text-align: right;
}

.product-modal-ctas {
  display: flex;
  gap: 12px;
}

/* Catalog Search Controls & Filter Bar */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.search-box input {
  width: 100%;
  padding: 12px 16px 12px 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.search-box input:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.2);
}

.filter-box {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filter-select {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-primary);
  outline: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* Branch Location Section */
.branch-section {
  padding: 60px 0;
  background-color: var(--light-bg);
}

.branch-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.branch-tab-btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.branch-tab-btn.active, .branch-tab-btn:hover {
  background-color: var(--navy-primary);
  color: var(--white);
  border-color: var(--navy-primary);
}

.branch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  align-items: center;
}

@media (max-width: 900px) {
  .branch-card {
    grid-template-columns: 1fr;
  }
}

.branch-info h3 {
  font-size: 1.5rem;
  color: var(--navy-primary);
  margin-bottom: 8px;
}

.branch-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.branch-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.branch-meta-item {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.meta-label {
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 2px;
}

/* Compare Table Styles */
.compare-table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.compare-table th {
  background-color: var(--light-bg);
  color: var(--navy-primary);
  font-weight: 700;
}

.compare-table tr:hover {
  background-color: rgba(248, 250, 252, 0.5);
}

/* Social Proof Notification Toast */
.toast-box {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-premium);
  border-left: 4px solid var(--orange-primary);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1000;
  max-width: 380px;
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

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

.toast-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.toast-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.toast-time {
  font-size: 0.7rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

.toast-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
}

.toast-close:hover {
  color: var(--navy-primary);
}




/* Industry Solutions */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.industry-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}
.industry-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.industry-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.industry-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   VISUAL ENHANCEMENT - PREMIUM COLOR UPGRADE
   ============================================================ */

/* Extended color palette */
:root {
  --teal: #0EA5E9;
  --teal-dark: #0284C7;
  --green: #10B981;
  --green-dark: #059669;
  --purple: #8B5CF6;
  --purple-dark: #7C3AED;
  --amber: #F59E0B;
}

/* Why Choose Us - Unique Gradient Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.why-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.why-card:nth-child(1) {
  background: linear-gradient(135deg, #0D1B3E 0%, #1a3a7a 100%);
  color: white;
}
.why-card:nth-child(1) h3, .why-card:nth-child(1) p { color: white; }
.why-card:nth-child(1) .why-icon-container { background: rgba(255,255,255,0.15); color: #60A5FA; }

.why-card:nth-child(2) {
  background: linear-gradient(135deg, #F57C00 0%, #E53935 100%);
  color: white;
}
.why-card:nth-child(2) h3, .why-card:nth-child(2) p { color: white; }
.why-card:nth-child(2) .why-icon-container { background: rgba(255,255,255,0.2); color: #FFF; }

.why-card:nth-child(3) {
  background: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);
  color: white;
}
.why-card:nth-child(3) h3, .why-card:nth-child(3) p { color: white; }
.why-card:nth-child(3) .why-icon-container { background: rgba(255,255,255,0.2); color: #FFF; }

.why-card:nth-child(4) {
  background: linear-gradient(135deg, #10B981 0%, #0891B2 100%);
  color: white;
}
.why-card:nth-child(4) h3, .why-card:nth-child(4) p { color: white; }
.why-card:nth-child(4) .why-icon-container { background: rgba(255,255,255,0.2); color: #FFF; }

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.why-icon-container {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Services Section - Color Accent per card */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:nth-child(1) { border-top: 4px solid #F57C00; }
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); color: #F57C00; }

.service-card:nth-child(2) { border-top: 4px solid #0EA5E9; }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); color: #0284C7; }

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Industry Solutions - More vibrant */
.industry-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.industry-card:nth-child(1) {
  background: linear-gradient(160deg, #fff 60%, #FFF3E0 100%);
  border-bottom: 4px solid #F57C00;
}
.industry-card:nth-child(2) {
  background: linear-gradient(160deg, #fff 60%, #E0F2FE 100%);
  border-bottom: 4px solid #0EA5E9;
}
.industry-card:nth-child(3) {
  background: linear-gradient(160deg, #fff 60%, #F3E8FF 100%);
  border-bottom: 4px solid #8B5CF6;
}
.industry-card:nth-child(4) {
  background: linear-gradient(160deg, #fff 60%, #D1FAE5 100%);
  border-bottom: 4px solid #10B981;
}

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

.industry-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Product Cards - premium badge & hover */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,27,62,0.15);
  border-color: var(--orange-primary);
}

.product-badge {
  background: linear-gradient(90deg, #F57C00, #E53935);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-brand {
  background: linear-gradient(90deg, var(--navy-primary), var(--navy-light));
  color: white !important;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ - accent left border color */
.faq-item.active .faq-question {
  color: var(--orange-primary);
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--orange-primary);
  box-shadow: 0 4px 20px rgba(245,124,0,0.12);
}

/* Section Header accent line */
.section-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(245,124,0,0.12), rgba(245,124,0,0.04));
  border-left: 3px solid var(--orange-primary);
  padding: 4px 14px 4px 12px;
  border-radius: 0 50px 50px 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-primary);
}

/* Branch/Contact Section */
.branch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.branch-info {
  padding: 40px;
  background: linear-gradient(160deg, #0D1B3E, #182C5A);
  color: white;
}

.branch-info h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.branch-info p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.branch-meta { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; margin-top: 4px; }
.meta-label { color: var(--orange-primary) !important; font-weight: 600; }
.branch-meta-item span { color: rgba(255,255,255,0.8); }

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(245,124,0,0.12);
  outline: none;
}

/* Catalog Download section - enriched */
.catalog-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3a7a 60%, var(--navy-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.catalog-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245,124,0,0.08);
  filter: blur(60px);
}

.catalog-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-normal);
}

.catalog-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: rgba(245,124,0,0.4);
}

.catalog-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Partners Slider - gradient bg */
.partners {
  background: linear-gradient(135deg, #060D1E 0%, #0D1B3E 50%, #1a2a5e 100%);
  padding: 40px 0;
  overflow: hidden;
}

.partners-title {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Footer enhancement */
footer {
  background: linear-gradient(160deg, #060D1E 0%, #0D1B3E 100%);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
}

/* Profile section visual improvement */
.profile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.profile-content .section-title {
  background: linear-gradient(90deg, var(--navy-primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.profile-list-icon {
  background: linear-gradient(135deg, var(--orange-primary), #E53935);
  color: white;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(245,124,0,0.3);
}

/* Hero section gradient title text improved */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #0D1B3E 0%, #1a3a7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Wizard Section */
.wizard-card {
  background: linear-gradient(135deg, #0D1B3E 0%, #1a3a7a 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.wizard-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(245,124,0,0.1);
  filter: blur(60px);
  pointer-events: none;
}

.result-badge {
  background: linear-gradient(90deg, var(--orange-primary), #E53935);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

/* Spec items in cards */
.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.spec-item:nth-child(odd) { background: #F8FAFC; }
.spec-item:nth-child(even) { background: #EFF6FF; }

.spec-label { color: var(--text-light); font-size: 0.82rem; }
.spec-val { color: var(--navy-primary); font-weight: 600; font-size: 0.85rem; }

/* Floating WA button */
.floating-wa-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* Back to top btn */
.back-to-top-btn {
  background: linear-gradient(135deg, var(--orange-primary), #E53935);
  box-shadow: 0 4px 16px rgba(245,124,0,0.35);
}

/* Contact info left column */
.contact-info {
  background: linear-gradient(160deg, #0D1B3E, #1a3a7a);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: white;
}

.contact-info-title { color: white !important; -webkit-text-fill-color: white; }
.contact-info-desc { color: rgba(255,255,255,0.75) !important; }

.contact-icon-container {
  background: rgba(245,124,0,0.15);
  color: var(--orange-primary);
  border: 1px solid rgba(245,124,0,0.2);
}

.contact-text h4 { color: white !important; }
.contact-text p, .contact-text p a { color: rgba(255,255,255,0.75) !important; }
.contact-text p a:hover { color: var(--orange-primary) !important; }



\n/* FIXED PRODUCT IMAGES */\n.product-image-container {\n  height: 240px !important;\n  width: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  background-color: #ffffff;\n  border-bottom: 1px solid #E2E8F0;\n  overflow: hidden;\n}\n.product-img {\n  width: 100% !important;\n  height: 100% !important;\n  object-fit: contain !important;\n  padding: 24px !important;\n}\n\n/* FIXED FOOTER BOTTOM */\n.footer-bottom {\n  border-top: 1px solid rgba(255,255,255,0.1);\n  background: rgba(0,0,0,0.25);\n  width: 100%;\n}\n.footer-bottom-container {\n  max-width: 1280px;\n  margin: 0 auto;\n  padding: 20px 24px;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-between;\n  align-items: center;\n  gap: 16px;\n}\n.footer-links-left {\n  display: flex;\n  gap: 20px;\n  text-align: left;\n}\n.footer-links-left a {\n  color: rgba(255,255,255,0.7);\n  font-size: 0.85rem;\n  transition: 0.3s;\n  text-decoration: none;\n}\n.footer-links-left a:hover {\n  color: #F57C00;\n}\n.footer-copyright-right {\n  text-align: right;\n  color: rgba(255,255,255,0.7);\n  font-size: 0.85rem;\n  margin: 0;\n}\n@media (max-width: 768px) {\n  .footer-bottom-container {\n    flex-direction: column;\n    justify-content: center;\n    text-align: center;\n  }\n  .footer-links-left, .footer-copyright-right {\n    text-align: center;\n    justify-content: center;\n  }\n}\n
/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
