/* Main Stylesheet */

/* Force hamburger mode when zoomed on desktop */
body.force-hamburger {
  padding-top: 76px;
}

body.force-hamburger .navbar-wrapper {
  padding: 2px 6px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

body.force-hamburger .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 46px;
  padding: 2px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 3000;
}

body.force-hamburger .logo {
  order: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

body.force-hamburger .logo img {
  height: 70px;
}

body.force-hamburger .menu-toggle {
  display: flex;
  padding: 6px;
  order: 3;
  flex-shrink: 0;
}

body.force-hamburger .menu-toggle span {
  width: 20px;
  height: 2px;
}

body.force-hamburger .nav-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-align: left;
  transform: none;
  z-index: 999;
}

body.force-hamburger .nav-menu.active {
  max-height: fit-content;
  overflow-y: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.force-hamburger .nav-menu li {
  border-bottom: 1px solid #e8e8e8;
  border-left: none;
  position: relative;
}

body.force-hamburger .nav-menu a {
  display: block;
  padding: 18px 20px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

body.force-hamburger .dropdown-menu {
  display: none;
}

body.force-hamburger .nav-menu .where-to-buy {
  position: static;
  display: block;
  padding: 16px 20px;
  background: #fff;
  border-left: none;
  border-top: 1px solid #e8e8e8;
  box-shadow: none;
  margin: 0;
}

body.force-hamburger .navbar-wrapper > .where-to-buy {
  display: none;
}

body.force-hamburger .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

body.force-hamburger .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

body.force-hamburger .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #004499;
  --accent-color: #ff6b35;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

* {
  font-family: "Manrope", sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 4px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.navbar-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

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

.logo img {
  height: 112px;
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 24px;
  position: static;
  list-style: none;
  flex: 1 1 520px;
  min-width: 0;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-menu li:nth-child(1) a::after {
  background: #0066cc;
}

.nav-menu li:nth-child(2) a::after {
  background: #0066cc;
}

.nav-menu li:nth-child(3) a::after {
  background: #0066cc;
}

.nav-menu li:nth-child(4) a::after {
  background: #0066cc;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  position: relative;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 8px 14px;
  margin: 0 20px;
  min-width: 200px;
}

.search-icon {
  color: #999;
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: var(--text-dark);
  font-family: "Manrope", sans-serif;
  transition: var(--transition);
}

.search-input::placeholder {
  color: #999;
}

.search-input:focus {
  color: var(--primary-color);
}

.search-bar:focus-within {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

.nav-menu li:nth-child(5) a::after {
  background: #0066cc;
}

.nav-menu li:nth-child(6) a::after {
  background: #0066cc;
}

.nav-menu li:nth-child(7) a::after {
  background: #0066cc;
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
  margin-top: 0;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #0066cc 0%, #00a651 100%) 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s;
  z-index: 1000;
}

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

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 500;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 102, 204, 0.05) 0%,
    rgba(0, 166, 81, 0.05) 100%
  );
  color: #0066cc;
  border-left-color: #0066cc;
}

.dropdown-menu li a::after {
  display: none;
}

.where-to-buy {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s;
}

.where-to-buy a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.where-to-buy:hover {
  background: linear-gradient(135deg, #004499 0%, #0066cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.where-to-buy:hover a {
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Homepage Navbar Styling */
.navbar.homepage {
  padding: 4px 24px;
}

.navbar.homepage .navbar-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.navbar.homepage .logo {
  display: none;
}

.navbar.homepage .nav-menu {
  justify-content: center;
  flex: 1;
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(rgba(45, 20, 70, 0.25), rgba(30, 10, 50, 0.5)),
    url("../images/bannerpurple.jpeg") center/cover no-repeat;
  color: #fff;
  min-height: 76vh;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 64px;
}

.hero .container {
  width: 100%;
  max-width: none;
  padding-left: 44px;
  padding-right: 20px;
}

.hero-content {
  max-width: none;
  text-align: left;
}

.hero-title {
  font-size: clamp(30px, 4vw, 56px);
  margin: 0 0 8px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.4px;
  white-space: nowrap;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 1px 4px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: heroSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 30px);
  margin: 0 0 16px;
  font-weight: 700;
  max-width: 480px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: heroSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero-kicker {
  font-size: clamp(12px, 1.2vw, 17px);
  margin: 0 0 18px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 420px;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: heroSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  opacity: 0;
  animation: heroFadeIn 0.5s ease 0.66s forwards;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(94, 31, 130, 0.4);
  background: #73279f;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
  background: linear-gradient(135deg, #004499 0%, #0066cc 100%);
}

/* Section Styling */
section {
  padding: 80px 20px;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #0066cc 0%, #00a651 50%, #ff5722 100%);
  border-radius: 3px;
}

/* Services Section */
.services {
  background: #fff;
}

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

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-align: center;
  border-top: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* About Section */
.about {
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-list {
  margin: 20px 0;
}

.about-list li {
  color: var(--text-light);
  margin: 12px 0;
  font-size: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.05) 0%,
    rgba(0, 166, 81, 0.05) 100%
  );
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.stat-item:nth-child(2) {
  border-left-color: #00a651;
}

.stat-item:nth-child(3) {
  border-left-color: #ff5722;
}

.stat-item h4 {
  font-size: 40px;
  background: linear-gradient(135deg, #0066cc 0%, #00a651 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* Contact Section */
.contact {
  background: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-item p {
  color: var(--text-light);
}

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

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* Page Header */
.page-header {
  background: #fff;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: none;
}

.page-header-company {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("../images/banner2.png") center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.page-header-solution {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("../images/banner2.png") center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.page-header-product {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("../images/banner2.png") center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.page-header-references {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("../images/banner2.png") center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.page-header-wheretobuy {
  background: url("../images/wheretobuy.png") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-title,
.solution-title,
.product-title,
.references-title {
  display: block;
  text-align: left;
}

.company-title h1,
.solution-title h1,
.product-title h1,
.references-title h1 {
  font-size: 150px;
  margin-bottom: 15px;
  font-weight: 900;
  font-family: "Manrope", sans-serif;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1;
}

.title-underline {
  width: 140px;
  height: 10px;
  background: linear-gradient(90deg, #0066cc 0%, #00a651 50%, #ff5722 100%);
  border-radius: 5px;
}

/* Company Sections */
.company-section {
  padding: 80px 0;
  background: #fff;
}

.company-grid {
  display: grid;
  gap: 24px;
}

.company-grid-three {
  grid-template-columns: 1fr 1.1fr 0.9fr;
  align-items: stretch;
}

.company-container-wide {
  max-width: 1400px;
}

.company-main-media {
  background: transparent;
  border-radius: 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-main-media img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 10px;
}

.company-content-compact h2 {
  font-size: 30px;
}

.company-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  font-family: "Manrope", sans-serif;
}

.company-content h3 {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(135deg, #00a651 0%, #ff5722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}

.company-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.company-brand-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.company-brand-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.company-brand-item:hover {
  opacity: 0.7;
}

.company-brand-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.company-brand-item img {
  width: 75%;
  max-width: 200px;
  height: auto;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
}

.company-brand-item:last-child img {
  width: 55%;
  max-width: 140px;
}

/* Company Contact Section */
.company-contact-section {
  background: #fff;
  padding: 56px 20px;
}

.contact-info-item {
  animation: none;
  opacity: 1;
  transform: none;
}

.company-contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.company-contact-block {
  display: block;
}

.company-contact-block:first-child {
  justify-self: start;
}

.company-contact-block:last-child {
  justify-self: end;
  text-align: left;
}

.contact-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
}

.company-contact-block h3 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
}

.company-contact-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.company-contact-block a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.company-contact-block a:hover {
  color: #555;
  text-decoration: underline;
}

.company-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.company-contact-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.company-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #00a3e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.company-contact-list-item a {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 600;
  color: #555;
  text-decoration: none;
}

.company-contact-list-item a:hover {
  color: #555;
  text-decoration: none;
}

/* Solution Page */
.solution-section {
  background: #fff;
  padding: 80px 0;
}

.solution-container-wide {
  max-width: 1550px;
  padding: 0 28px;
}

/* Solution Section Header */
.solution-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.solution-section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  font-family: "Manrope", sans-serif;
}

.solution-section-header p {
  font-size: 17px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Solution Cards */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.solution-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #eef1f5;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solution-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  box-sizing: border-box;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.04);
}

.solution-card {
  border-left: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.solution-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #004b87;
  margin: 18px 24px 10px;
  text-align: center;
  font-family: "Manrope", sans-serif;
}

.solution-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0 18px 20px;
  text-align: left;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Page Content */
.page-content {
  background: #fff;
  padding: 80px 20px;
}

.page-content .container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-content h3 {
  font-size: 22px;
  margin: 30px 0 15px 0;
  color: var(--text-dark);
}

.page-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-content > .container > p {
  margin-bottom: 20px;
}

.product-brand-section,
.product-type-section,
.product-list-section,
.product-datasheet-section,
.portfolio-placeholder-section,
.stock-section {
  background: #fff;
  padding: 70px 20px;
}

/* Stock Page Heading */
.stock-page-heading {
  text-align: center;
  margin-bottom: 40px;
}

.stock-page-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  font-family: "Manrope", sans-serif;
}

.stock-page-heading p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.product-section-heading {
  margin-bottom: 28px;
}

.product-section-heading h2 {
  font-size: 34px;
  color: #1f2937;
  margin-bottom: 8px;
}

.product-section-heading p {
  color: #5b6676;
  font-size: 16px;
}

.brand-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.under-construction-box {
  max-width: 760px;
  margin: 80px auto 0;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 48px 20px;
}

.under-construction-box h2 {
  font-size: 72px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: "Roboto", "Arial", sans-serif;
  font-weight: 300;
  animation: glitch 3s infinite;
  letter-spacing: 0;
}

.stock-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: auto;
  background: #fff;
  box-shadow: none;
}

.stock-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.stock-table thead th {
  background: #f3f4f6;
  color: #111827;
  font-weight: 600;
  padding: 14px 12px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.stock-table tbody td {
  padding: 12px;
  border-bottom: 1px solid #f0f2f5;
  color: #374151;
  font-size: 14px;
}

.stock-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.stock-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.stock-badge.in {
  background: #dcfce7;
  color: #166534;
}

.stock-badge.low {
  background: #fef9c3;
  color: #854d0e;
}

.stock-badge.out {
  background: #fee2e2;
  color: #991b1b;
}

/* Stock Filter & Search */
.stock-filter-section {
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.filter-search-container {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 20px;
  align-items: center;
}

.search-box {
  position: relative;
}
.stock-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}

.search-icon-svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-box .search-input {
  width: 100%;
  padding: 12px 16px 12px 38px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  transition: border-color 0.3s;
}

.search-box .search-input:focus {
  outline: none;
  border-color: #004b87;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sort-select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-size: 14px;
  padding: 11px 14px;
  font-family: "Manrope", sans-serif;
  min-width: 145px;
}

.sort-select:focus {
  outline: none;
  border-color: #004b87;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Manrope", sans-serif;
}

.filter-btn:hover {
  background: #f9fafb;
  border-color: #004b87;
}

.filter-btn.active {
  background: #004b87;
  color: #fff;
  border-color: #004b87;
}

/* Datasheet Link */
.datasheet-link {
  display: inline-block;
  padding: 6px 12px;
  background: #f3f4f6;
  color: #004b87;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

.datasheet-link:hover {
  background: #004b87;
  color: #fff;
}

/* Stock States */
.stock-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

/* Loading State */
.loading-state {
  background: #f9fbfd;
  border-radius: 12px;
  gap: 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e0e0;
  border-top-color: #0066cc;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-state p {
  color: #5b6676;
  font-size: 16px;
  margin: 0;
}

/* Empty State */
.empty-state {
  background: linear-gradient(135deg, #f5f8fc 0%, #eef6ff 100%);
  border: 2px dashed #d9e7f7;
  border-radius: 12px;
  gap: 16px;
  padding: 40px 20px;
}

.empty-icon {
  font-size: 60px;
  line-height: 1;
}

.empty-state h3 {
  font-size: 22px;
  color: #004499;
  margin: 0;
  font-weight: 700;
}

.empty-state p {
  color: #4e5d72;
  font-size: 16px;
  margin: 0;
  max-width: 400px;
}

/* Error State */
.error-state {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8ec 100%);
  border: 2px solid #ffcdd2;
  border-radius: 12px;
  gap: 16px;
  padding: 40px 20px;
  margin-top: 80px;
}

.error-icon {
  font-size: 50px;
  line-height: 1;
}

.error-state h3 {
  font-size: 22px;
  color: #b4232a;
  margin: 0;
  font-weight: 700;
}

.error-state p {
  color: #5b4545;
  font-size: 15px;
  margin: 0;
  max-width: 400px;
  line-height: 1.5;
}

/* Retry Button */
.retry-btn {
  margin-top: 12px;
  background: #b4232a;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.retry-btn:hover {
  background: #8d1a1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 35, 42, 0.3);
}

.retry-btn:active {
  transform: translateY(0);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border: 2px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.product-card h3 {
  margin: 0 0 15px 0;
}

.product-card .btn {
  display: inline-block;
  margin-top: 20px;
}

/* Product Categories */
.page-content-product {
  padding: 80px 20px;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.product-category-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #fff;
  border: 2px solid #d9dce2;
  border-radius: 26px;
  padding: 16px 18px 16px 30px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  gap: 20px;
  position: relative;
  min-height: 280px;
  box-shadow: none;
}

.product-category-card:hover {
  border-color: #ced2da;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.card-content {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.card-content h3 {
  font-size: clamp(30px, 2.2vw, 44px);
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
}

.card-image {
  flex: 0 0 auto;
  width: 245px;
  height: 100%;
  min-height: 244px;
  display: flex;
  background: transparent;
  border-radius: 16px;
  padding: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  display: block;
}

/* Kecilkan logo Golden Pots di brand cards */
.brand-categories .product-category-card:nth-child(3) .card-image img {
  width: 65%;
}

/* Product Detail Page */
.page-header-product-detail {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("../images/product-banner.png") center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  padding-left: 50px;
}

.product-detail-title {
  display: block;
}

.product-detail-title h1 {
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  font-family: "Manrope", sans-serif;
}

.product-detail-section {
  padding-top: 40px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-detail-media {
  background: #f4f6f8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.product-detail-media img {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
}

.product-detail-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.product-detail-code {
  font-size: 22px;
  font-weight: 700;
  color: #d0021b;
  margin-bottom: 18px;
}

.product-detail-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 28px;
}

.product-detail-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-quick-enquiry {
  background: #d0021b;
  color: #fff;
  border-radius: 0;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
}

.btn-outline {
  background: transparent;
  color: #333;
  border: 1px solid #333;
  border-radius: 0;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
}

.btn-outline:hover {
  background: #f2f2f2;
}

.product-datasheet-image {
  width: 100%;
  display: block;
}

.product-datasheet-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Product Search Box */
.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.product-toolbar .sort-select {
  height: 48px;
}

.product-search-box {
  max-width: 600px;
  margin: 0;
  flex: 1;
  position: relative;
}

.product-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}

.product-search-input {
  width: 100%;
  padding: 14px 20px 14px 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.product-search-input:focus {
  outline: none;
  border-color: #004b87;
  box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.1);
}

/* Products List */
.products-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

body.force-company-mobile .company-grid-three {
  grid-template-columns: 1fr;
}

body.force-company-mobile .company-section {
  padding: 40px 20px;
}

body.force-company-mobile .company-main-media {
  order: 1;
  margin-bottom: 12px;
}

body.force-company-mobile .company-main-media img {
  width: 85%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

body.force-company-mobile .company-content-compact {
  order: 2;
  margin-bottom: 12px;
}

body.force-company-mobile .company-content-compact h2 {
  font-size: 24px;
  text-align: left;
  margin-bottom: 16px;
}

body.force-company-mobile .company-content-compact p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.6;
}

body.force-company-mobile .company-brand-column {
  order: 3;
  gap: 24px;
}

body.force-company-mobile .company-brand-item {
  min-height: 90px;
}

body.force-company-mobile .company-brand-item img {
  width: 70%;
  height: auto;
}

body.force-company-mobile .company-contact-grid {
  grid-template-columns: 1fr;
  gap: 34px;
}

body.force-company-mobile .company-contact-block:last-child {
  justify-self: start;
}

body.force-company-mobile .company-contact-block h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

body.force-company-mobile .company-contact-block p {
  font-size: 14px;
}

body.force-company-mobile .company-contact-list-item a {
  font-size: 14px;
}

body.force-company-mobile .company-contact-icon {
  width: 38px;
  height: 38px;
}

body.force-company-mobile .company-contact-icon svg {
  width: 20px;
  height: 20px;
}

.product-item {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
  position: relative;
}

.product-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00a651, #ff5722);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.product-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-item-image {
  width: 100%;
  height: 180px;
  background: #f8f9fa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item-image img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.product-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #0066cc;
  margin: 16px 16px 12px;
  line-height: 1.4;
  font-family: "Manrope", sans-serif;
}

.product-item h5 {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin: 0 16px 12px;
  line-height: 1.4;
  font-family: "Manrope", sans-serif;
}

.product-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.btn-datasheet {
  background: var(--accent-color);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 16px;
  text-decoration: none;
  display: inline-block;
}

.btn-datasheet:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.product-download:hover {
  color: #004b87;
}

.product-download span {
  margin-left: 5px;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-left: 4px solid #0066cc;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.project-card:nth-child(2) {
  border-left-color: #00a651;
}

.project-card:nth-child(3) {
  border-left-color: #ff5722;
}

.project-card:nth-child(3n) {
  border-left-color: #0066cc;
}

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

.project-card h3 {
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.project-client {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 12px;
}

.project-year {
  color: var(--text-light);
  font-size: 13px;
  margin-top: 15px;
}

/* Values List */
.values-list {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.05) 0%,
    rgba(0, 166, 81, 0.05) 100%
  );
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid #0066cc;
}

.values-list li {
  margin: 15px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

.values-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  background: linear-gradient(135deg, #0066cc 0%, #00a651 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-size: 18px;
}

/* Contact Section */
.contact-section {
  margin-bottom: 60px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-box:nth-child(2) {
  border-left-color: #00a651;
}

.contact-box:nth-child(3) {
  border-left-color: #ff5722;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
  margin: 0 0 20px 0;
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  padding: 80px 20px;
}

.contact-section .container {
  max-width: 980px;
}

/* Contact Form Section */
.contact-form-section {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.contact-form-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-family: "Manrope", sans-serif;
}

.contact-subtitle {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d5dce6;
  border-radius: 10px;
  font-size: 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  font-family: "Manrope", sans-serif;
  background: #fbfdff;
  color: var(--text-dark);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #98a2b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  padding: 13px 14px;
}

.contact-form-section .btn-submit {
  width: 100%;
  background: #0066cc;
  color: #fff;
  padding: 14px 40px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
  font-family: "Manrope", sans-serif;
}

.contact-form-section .btn-submit:hover {
  transform: translateY(-1px);
  background: #004499;
  box-shadow: 0 10px 20px rgba(0, 68, 153, 0.28);
  filter: none;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0066cc 0%, #00a651 50%, #ff5722 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Manrope", sans-serif;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0.95;
}

.cta-section .btn-cta {
  background: #fff;
  color: #0066cc;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-section .btn-cta:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.footer {
  background: #fff;
  color: var(--text-dark);
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border-color);
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 200px;
  width: auto;
}

.footer-content-wrapper {
  display: flex;
  align-items: center;
}

.footer-office h3,
.footer-contact h3 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #0066cc 0%, #00a651 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}

.footer-office p,
.footer-contact p {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
  color: var(--text-light);
}

/* Floating Chatbot */
.chatbot-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 4000;
  font-family: "Manrope", sans-serif;
  pointer-events: auto;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0066cc;
  color: #fff;
  border: none;
  box-shadow: 0 12px 24px rgba(0, 102, 204, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  background: #004499;
  box-shadow: 0 16px 28px rgba(0, 68, 153, 0.34);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.2s ease;
}

.chatbot-widget.open .chatbot-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chatbot-header {
  padding: 16px 18px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.chatbot-messages {
  padding: 16px 18px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  font-size: 0;
}

.chatbot-toggle svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.chatbot-toggle svg.icon-stroke path {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chatbot-bubble {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 85%;
  animation: bubblePop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.chatbot-bubble.bot {
  background: #f4f7fb;
  color: #1a1a1a;
  align-self: flex-start;
  border: 1px solid #e6eef7;
}

.chatbot-bubble.user {
  background: #0066cc;
  color: #fff;
  align-self: flex-end;
}

.chatbot-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.chatbot-option {
  border: 1px solid #d9e6f5;
  background: #fff;
  color: #004499;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  opacity: 0;
  animation: optionSlide 0.25s ease forwards;
  transition:
    background 0.2s,
    transform 0.15s;
}

.chatbot-options .chatbot-option:nth-child(1) {
  animation-delay: 0s;
}
.chatbot-options .chatbot-option:nth-child(2) {
  animation-delay: 0.06s;
}
.chatbot-options .chatbot-option:nth-child(3) {
  animation-delay: 0.12s;
}
.chatbot-options .chatbot-option:nth-child(4) {
  animation-delay: 0.18s;
}

.chatbot-option:hover {
  background: #eef4ff;
  transform: translateX(4px);
}

.chatbot-input {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid #eef1f5;
}

.chatbot-input input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}

.chatbot-input button {
  background: #00a651;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

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

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bubblePop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes optionSlide {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Reveal Animation System */
/* Glitch animation for Portfolio */
@keyframes glitch {
  0%,
  80%,
  100% {
    text-shadow: none;
    transform: translate(0, 0) skew(0deg);
    opacity: 1;
  }
  82% {
    text-shadow:
      -4px 0 #ff0040,
      4px 0 #00ffff;
    transform: translate(-3px, 0) skewX(-4deg);
    opacity: 0.9;
  }
  84% {
    text-shadow:
      4px 0 #ff0040,
      -4px 0 #00ffff;
    transform: translate(3px, 1px);
    opacity: 1;
  }
  86% {
    text-shadow: none;
    transform: translate(0);
  }
  88% {
    text-shadow:
      -2px 2px #ff0040,
      2px -2px #00ffff;
    transform: translate(-1px, 2px) skewX(3deg);
    opacity: 0.85;
  }
  90% {
    text-shadow:
      3px -1px #ff0040,
      -3px 1px #00ffff;
    transform: translate(2px, -1px);
    opacity: 1;
  }
  92% {
    text-shadow: none;
    transform: translate(0);
  }
}

/* Page transition */
@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pageLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
body {
  animation: pageEnter 0.2s ease both;
}
body.page-leaving {
  animation: pageLeave 0.14s ease forwards;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

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

/* Specific reveal animations for different elements */
.hero.scroll-reveal {
  transform: scale(0.95);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.hero.scroll-reveal.revealed {
  transform: scale(1);
}

.service-card.scroll-reveal,
.solution-card.scroll-reveal,
.product-category-card.scroll-reveal,
.product-item.scroll-reveal {
  transform: translateY(50px) scale(0.95);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.service-card.scroll-reveal.revealed,
.solution-card.scroll-reveal.revealed,
.product-category-card.scroll-reveal.revealed,
.product-item.scroll-reveal.revealed {
  transform: translateY(0) scale(1);
}

.company-brand-item.scroll-reveal {
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.company-brand-item.scroll-reveal.revealed {
  transform: translateX(0);
}

.contact-info-item.scroll-reveal {
  transform: scale(0.9);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.contact-info-item.scroll-reveal.revealed {
  transform: scale(1);
}

.stock-table-wrap.scroll-reveal {
  transform: translateY(30px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.stock-table-wrap.scroll-reveal.revealed {
  transform: translateY(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Custom Modal Popup */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.custom-modal.show {
  opacity: 1;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 450px;
  width: 90%;
  animation: slideIn 0.4s ease-out;
  position: relative;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin: 0 auto 20px;
}

.modal-success .modal-icon {
  background: linear-gradient(135deg, #00a651 0%, #008c3a 100%);
}

.modal-error .modal-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%);
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.modal-message {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 28px;
}

.modal-close-btn {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
}

.modal-success .modal-close-btn {
  background: linear-gradient(135deg, #00a651 0%, #008c3a 100%);
  color: #fff;
}

.modal-success .modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 166, 81, 0.3);
}

.modal-error .modal-close-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%);
  color: #fff;
}

.modal-error .modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(230, 57, 70, 0.3);
}

.pdf-preview-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

#pdf-render {
    /* Biar responsif di semua device */
    max-width: 100%;
    height: auto !important;
}