/* ================================================================
   BRIDGESTONE LADDER — styles.css
   ================================================================ */

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

:root {
  --primary: #0f3460;
  --primary-light: #1a4f8c;
  --accent: #e94560;
  --accent-hover: #c73652;
  --gold: #f5a623;
  --dark: #09090f;
  --dark-2: #111827;
  --dark-3: #1f2937;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(9, 9, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #ff6b35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 19px;
  flex-shrink: 0;
}

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

.logo-main {
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 8px;
  transition: var(--transition);
  display: block;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #d63d57);
  color: white;
  border: none;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

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

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.1s ease,
    transform 5s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(6, 10, 18, 0.2) 0%,
      rgba(6, 10, 18, 0.55) 52%,
      rgba(6, 10, 18, 0.78) 100%
    ),
    linear-gradient(
      115deg,
      rgba(9, 16, 32, 0.72) 0%,
      rgba(9, 16, 32, 0.34) 55%,
      rgba(9, 16, 32, 0.65) 100%
    );
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      ellipse at 25% 55%,
      rgba(233, 69, 96, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 25%,
      rgba(245, 166, 35, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(15, 52, 96, 0.4) 0%,
      transparent 50%
    );
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255, 255, 255, 0.018) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255, 255, 255, 0.018) 60px
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--gold);
  padding: 7px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  margin-bottom: 26px;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -0.5px;
}

.highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.stat {
  padding: 24px 36px;
  text-align: center;
  flex: 1;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.stat-number {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  animation: bounce 2.5s ease-in-out infinite;
  transition: color 0.3s;
}

.scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 124px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider-dot.active {
  width: 26px;
  border-color: rgba(245, 166, 35, 0.9);
  background: rgba(245, 166, 35, 0.95);
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(233, 69, 96, 0.1);
  color: var(--accent);
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  color: var(--text-light);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent), #d63d57);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 69, 96, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.28);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: 100px 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.about-lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.45;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.82;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.feature i {
  color: var(--accent);
  font-size: 17px;
  width: 20px;
  flex-shrink: 0;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 52, 96, 0.2);
}

.visual-card.highlight-card {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-color: transparent;
}

.visual-card.highlight-card h3,
.visual-card.highlight-card p {
  color: white;
}

.visual-card.highlight-card .vc-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.vc-icon {
  width: 50px;
  height: 50px;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
}

.visual-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.visual-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ================================================================
   PRODUCTS
   ================================================================ */
.why-choose-us {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(233, 69, 96, 0.08),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(245, 166, 35, 0.08),
      transparent 30%
    ),
    var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.why-highlight {
  background: linear-gradient(145deg, var(--primary) 0%, #102f52 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.why-highlight::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.why-highlight-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.why-highlight h3 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.why-highlight p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 22px;
  max-width: 520px;
}

.why-checklist {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.why-checklist div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: white;
}

.why-checklist i {
  color: var(--gold);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 52, 96, 0.18);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 69, 96, 0.1);
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 14px;
}

.products {
  padding: 100px 0;
  background: white;
}

.product-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}

.products-catalog {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.catalog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.catalog-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.catalog-item:hover {
  border-color: rgba(15, 52, 96, 0.24);
  box-shadow: var(--shadow);
}

.catalog-item h3 {
  margin: 8px 0 6px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.35;
}

.catalog-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 13px;
}

.catalog-item .product-code {
  margin-bottom: 0;
}

.catalog-item .product-view-btn {
  width: auto;
  min-width: 160px;
  padding: 10px 14px;
  flex-shrink: 0;
}

/* Product Card */
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.product-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

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

.product-card-header {
  background: linear-gradient(140deg, var(--primary) 0%, #1a4f8c 100%);
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
}

.product-card-header::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.product-card-header::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.product-code {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 3px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: "Oswald", sans-serif;
}

.product-card-header h3 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.product-card-header h3 small {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.75;
  display: block;
  margin-top: 3px;
}

.product-card-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  opacity: 0.12;
  color: white;
}

.product-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 52, 96, 0.07);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.product-height-chip {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.height-chip-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.height-chip-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.product-view-btn {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
}

.product-view-btn:hover {
  background: var(--primary);
  color: white;
}

/* ================================================================
   MODAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.88) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  margin: 14px 14px 0 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--accent);
  color: white;
  transform: rotate(90deg);
}

.modal-body {
  padding: 20px 32px 36px;
  clear: both;
}

.modal-code-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Oswald", sans-serif;
  margin-bottom: 12px;
}

.modal-body h2 {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.modal-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 18px;
}

.modal-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.modal-product-image-wrap {
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.modal-product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.modal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 52, 96, 0.07);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.modal-feature-pill i {
  color: var(--accent);
  font-size: 10px;
}

.height-section {
  margin-bottom: 20px;
}

.height-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.height-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border);
}

.height-table thead th {
  background: var(--primary);
  color: white;
  padding: 11px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}

.height-table tbody td {
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.height-table tbody tr:last-child td {
  border-bottom: none;
}

.height-table tbody tr:nth-child(even) td {
  background: var(--bg-light);
}

.height-table tbody tr:hover td {
  background: rgba(15, 52, 96, 0.06);
}

.modal-range-display {
  background: linear-gradient(135deg, var(--bg-light), white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.modal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 16px;
  background: rgba(245, 166, 35, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 9px 9px 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.modal-note i {
  color: var(--gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.modal-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.modal-cta .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

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

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: 100px 0;
  background: var(--dark-2);
}

.contact .section-title {
  color: white;
}
.contact .section-desc {
  color: rgba(255, 255, 255, 0.45);
}
.contact .section-tag {
  background: rgba(233, 69, 96, 0.18);
  color: #ff8da0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: var(--transition);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(233, 69, 96, 0.3);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(233, 69, 96, 0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 17px;
  flex-shrink: 0;
}

.info-text h4 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.info-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.info-text a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

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

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  transition: var(--transition);
  background: white;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.09);
}

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

.full-width {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
  max-width: 260px;
}

.footer-col h4 {
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.55;
}

.footer-col p i {
  color: var(--accent);
  margin-top: 1px;
  flex-shrink: 0;
  width: 14px;
}

.footer-col p a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

.footer-col p a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(9px);
  }
}

/* ================================================================
   FLOATING CALL ICONS
   ================================================================ */
.floating-call-icons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-call-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d63d57);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(233, 69, 96, 0.45);
  transition: var(--transition);
  animation: callPulse 1.9s ease-in-out infinite;
}

.floating-call-btn i {
  font-size: 21px;
}

.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(233, 69, 96, 0.55);
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(233, 69, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(233, 69, 96, 0);
  }
}

.floating-enquire-btn {
  position: fixed;
  right: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 1490;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 12px 22px;
  border-radius: 12px 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 26px rgba(15, 52, 96, 0.45);
  transition: var(--transition);
}

.floating-enquire-btn i {
  margin-right: 8px;
}

.floating-enquire-btn:hover {
  right: -42px;
  box-shadow: 0 14px 30px rgba(15, 52, 96, 0.55);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-highlight {
    padding: 30px;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 15, 0.97);
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 998;
  }

  .nav-links.open li a {
    font-size: 26px;
    font-weight: 700;
    padding: 14px 32px;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .hero-slider-dots {
    bottom: 148px;
  }

  .stat {
    padding: 18px 24px;
    width: 100%;
  }
  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .why-cards {
    grid-template-columns: 1fr;
  }
  .catalog-list {
    grid-template-columns: 1fr;
  }
  .catalog-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog-item .product-view-btn {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-cta {
    flex-direction: column;
  }

  .floating-call-icons {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-call-btn {
    width: 50px;
    height: 50px;
  }

  .floating-call-btn i {
    font-size: 19px;
  }

  .floating-enquire-btn {
    right: 14px;
    top: auto;
    bottom: 78px;
    transform: none;
    border-radius: 999px;
    font-size: 13px;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(15, 52, 96, 0.35);
  }

  .floating-enquire-btn:hover {
    right: 14px;
  }

  .modal-body {
    padding: 16px 20px 28px;
  }
  .contact-form-wrap {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .filter-btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  .why-choose-us {
    padding: 80px 0;
  }

  .why-highlight,
  .why-card {
    padding: 22px;
  }

  .why-highlight h3 {
    font-size: 24px;
  }

  .hero-slider-dots {
    bottom: 182px;
    gap: 8px;
  }

  .hero-slider-dot {
    width: 10px;
    height: 10px;
  }

  .hero-slider-dot.active {
    width: 20px;
  }
}
