/* =============================================
   IMAD ALRIFAT SCAFFOLDS - Design System
   ============================================= */

/* --- Design Tokens --- */
:root {
  --brand-primary: #E85D04;
  --brand-primary-dark: #C44B00;
  --brand-primary-light: #FF7A2E;
  --brand-secondary: #0F172A;
  --brand-dark: #020617;
  --brand-surface: #0F172A;
  --brand-surface-2: #1E293B;
  --brand-muted: #334155;
  --brand-text: #F8FAFC;
  --brand-text-muted: #94A3B8;
  --brand-border: rgba(255, 255, 255, 0.08);
  --brand-accent-glow: rgba(232, 93, 4, 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(232, 93, 4, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  --max-w: 1280px;
  --header-h: 80px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--brand-dark);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow-md);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

.logo-en {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--brand-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

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

.nav-link:hover,
.nav-link.active {
  color: white;
}

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

.btn-cta {
  background: var(--brand-primary);
  color: white;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--brand-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--brand-accent-glow);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(20px);
  /* padding: 16px 24px 24px; */
  padding: 16px 24px 70px;
  flex-direction: column;
  gap: 4px;
  z-index: 101;
  /* below header (102), above page content */
  border-bottom: 1px solid var(--brand-border);
  transform: translateY(-100%);
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-link {
  padding: 12px 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-cta {
  margin-top: 12px;
  background: var(--brand-primary);
  color: white;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: background var(--transition);
}

.mobile-nav-cta:hover {
  background: var(--brand-primary-light);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  /* reserve space for fixed header */
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(2, 6, 23, 0.88) 0%,
      rgba(2, 6, 23, 0.65) 50%,
      rgba(232, 93, 4, 0.15) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  /* header offset now handled by .hero padding-top */
  padding-bottom: 80px;
}

.hero-text {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  color: var(--brand-primary-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #FF9F4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeInUp 0.6s 0.4s ease both;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  padding-right: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

/* Small "scroll" label above the dot */
.hero-scroll-indicator::before {
  content: 'SCROLL';
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-dot {
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 13px;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--brand-primary);  /* glow on the dot */
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  65% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }

  66% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-accent-glow);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

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

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

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

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 100%);
  padding: 40px 0;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  margin-bottom: 12px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--brand-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-action {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--brand-surface);
}

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

.feature-card {
  background: var(--brand-surface-2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 4, 0.25);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 93, 4, 0.12);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-primary);
  transition: background var(--transition), transform var(--transition);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-icon {
  background: rgba(232, 93, 4, 0.2);
  transform: scale(1.05);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--brand-text-muted);
  line-height: 1.65;
}

/* =============================================
   PRODUCTS PREVIEW
   ============================================= */
.products-preview {
  background: var(--brand-dark);
}

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

.product-card {
  display: block;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 4, 0.3);
  box-shadow: var(--shadow-card), 0 0 30px rgba(232, 93, 4, 0.15);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--brand-muted);
}

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

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 93, 4, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-overlay span {
  color: white;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 20px 24px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.875rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary) 50%, #FF7A2E 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--brand-primary-dark);
}

.cta-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--brand-surface);
  border-top: 1px solid var(--brand-border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--brand-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-text-muted);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--brand-surface) 0%, var(--brand-dark) 100%);
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  margin-bottom: 16px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.25);
  padding: 5px 16px;
  border-radius: 100px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 1.0625rem;
  color: var(--brand-text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-full {
  background: var(--brand-dark);
}

.products-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--brand-border);
}

.products-section:last-child {
  border-bottom: none;
}

.products-section-header {
  margin-bottom: 40px;
}

.products-section-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 28px;
  background: var(--brand-primary);
  border-radius: 2px;
}

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

.product-detail-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 4, 0.3);
  box-shadow: var(--shadow-card);
}

.product-detail-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--brand-muted);
}

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

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

.product-detail-body {
  padding: 20px 24px;
}

.product-detail-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-detail-body p {
  font-size: 0.8438rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-primary);
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* =============================================
   RENTAL PAGE
   ============================================= */
.rental-hero {
  background: var(--brand-surface);
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
}

.rental-features {
  background: var(--brand-dark);
}

.rental-process {
  background: var(--brand-surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--brand-surface-2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 4, 0.3);
}

.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
}

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

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--brand-dark);
  padding: calc(var(--header-h) + 40px) 0 80px;
}

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

.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 1.0625rem;
  color: var(--brand-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.contact-item:hover {
  border-color: rgba(232, 93, 4, 0.3);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item-body h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-text-muted);
  margin-bottom: 4px;
}

.contact-item-body a,
.contact-item-body p {
  font-size: 0.9375rem;
  color: var(--brand-text);
  transition: color var(--transition);
  margin: 0;
}

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

/* Contact Form */
.contact-form-wrap {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--brand-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--brand-text);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}

.form-group select option {
  background: var(--brand-surface);
  color: var(--brand-text);
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.success-message {
  display: none;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #4ade80;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  align-items: center;
  gap: 12px;
}

.success-message.show {
  display: flex;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="card-in"] {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
}

[data-animate="card-in"].visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animate="slide-up"] {
  opacity: 1;
  transform: none;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: waEntrance 0.6s 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes waEntrance {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.7);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-tooltip {
  background: #1f1f1f;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  position: relative;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1f1f1f;
  border-right-width: 0;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
  position: relative;
  z-index: 1;
}

.wa-btn:hover {
  transform: scale(1.12);
  background: #20b958;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* Outer pulse ring */
.wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.2s ease-out infinite;
}

/* Second delayed pulse ring */
.wa-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: waPulse 2.2s 0.8s ease-out infinite;
}

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

  80% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

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

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav-cta {
    display: none;
  }

  /* Header btn-cta is already visible on mobile */

  /* Keep the CTA button visible but compact */
  .btn-cta {
    padding: 8px 14px;
    font-size: 0.8125rem;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Push CTA + hamburger to the right as a tight group */
  .header-inner {
    gap: 8px;
  }

  .logo-link {
    margin-right: auto;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns — one per stat */
    gap: 0;
    width: 100%;          /* stretch full width on mobile */
    padding: 14px 12px;
  }

  .stat {
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat:last-child {
    border-right: none;
    padding-right: 0;
  }

  .stat:first-child {
    padding-left: 0;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .stat-divider {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hide scroll indicator on mobile — stats are full-width and it can overlap */
  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  /* Even tighter stats on very small phones */
  .hero-stats {
    padding: 12px 8px;
  }

  .stat-num {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.62rem;
  }

  /* Compact CTA button on very small screens */
  .btn-cta {
    padding: 7px 12px;
    font-size: 0.75rem;
  }
}