/* RK Enterprises - Modern Earth Movers Website */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  --orange: #F7941D;
  --logo-bg: #ffa02d;
  --orange-dark: #D97B0A;
  --orange-light: #FFB347;
  --blue: #1E88E5;
  --blue-dark: #1565C0;
  --blue-light: #42A5F5;
  --yellow: #FFC107;
  --yellow-dark: #FFA000;
  --dark: #1a1a2e;
  --dark-gray: #2d2d44;
  --gray: #6b7280;
  --light: #f4f6f9;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-h: 40px;
  --header-h: 80px;
  --site-header-h: calc(var(--topbar-h) + var(--header-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  padding-top: var(--site-header-h);
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
img.img-contain { object-fit: contain; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SITE HEADER STACK ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  min-height: var(--topbar-h);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-right { margin-left: auto; }

.top-bar a { color: var(--orange-light); }
.top-bar a:hover { color: var(--yellow); }

.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-info span { display: flex; align-items: center; gap: 6px; }

/* ========== HEADER ========== */
.header {
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-wrap {
  display: flex;
  align-items: stretch;
  min-height: var(--header-h);
  width: 100%;
}

.header-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(280px, 32vw, 380px);
  min-height: var(--header-h);
  padding: 10px 56px 10px 32px;
  z-index: 2;
}

.header-brand::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -36px;
  background: var(--logo-bg);
  clip-path: polygon(0 0, 100% 0, 79% 100%, 0 100%);
  z-index: -1;
  box-shadow: 4px 0 18px rgba(255, 160, 45, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  height: var(--header-h);
  padding-left: 12px;
  padding-right: 0;
}

.header-wrap .header-inner.container {
  max-width: none;
  width: auto;
  margin: 0;
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.logo img {
  height: calc(var(--header-h) - 14px);
  width: auto;
  max-width: 88%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  transition: transform var(--transition);
}

.logo:hover img { transform: scale(1.02); }

/* Navigation */
.nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  border-radius: 8px;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--orange);
}

.nav-item { position: relative; }

.nav-arrow {
  font-size: 0.7rem;
  margin-left: 2px;
  display: inline-block;
  transition: transform var(--transition);
}

.nav-item.open .nav-arrow,
.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 300px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
  pointer-events: none;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--dark-gray);
  border-left: 3px solid transparent;
}

.dropdown a:hover,
.dropdown a.active {
  background: var(--light);
  color: var(--orange);
  border-left-color: var(--orange);
  padding-left: 24px;
}

.dropdown a.active {
  font-weight: 600;
}

.header,
.header-inner,
.site-header {
  overflow: visible;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  padding: 12px 24px !important;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(247,148,29,0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,148,29,0.5);
  color: var(--white) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--site-header-h));
  display: flex;
  align-items: center;
  margin-top: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(30,136,229,0.75) 50%, rgba(247,148,29,0.6) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,193,7,0.2);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(247,148,29,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(247,148,29,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,136,229,0.4);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30,136,229,0.5);
}

/* Hero floating elements */
.hero-float {
  position: absolute;
  right: 5%;
  bottom: 15%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 2;
  animation: fadeIn 1s ease 0.5s both;
}

.hero-stat {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: var(--white);
}

.hero-stat .number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
}

.hero-stat .label { font-size: 0.8rem; opacity: 0.9; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  margin-top: 0;
  padding: 60px 0 50px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 60%, var(--orange-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::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.03'%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");
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ========== SECTIONS ========== */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(247,148,29,0.15), rgba(30,136,229,0.15));
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p { color: var(--gray); font-size: 1.05rem; }

.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); }

/* ========== ABOUT SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img { transform: scale(1.05); }

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content h2 span { color: var(--orange); }

.about-content p { color: var(--gray); margin-bottom: 16px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateX(5px);
}

.about-feature .icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature:hover .icon { background: var(--white); color: var(--orange); }

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  min-height: 160px;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}

.stat-card .counter {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: inline;
}

.stat-card h4 {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 600;
}

/* ========== SERVICE CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img { transform: scale(1.1); }

.card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
}

.card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.card-body p { flex: 1; }

.card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.card-link:hover { color: var(--orange); gap: 10px; }

/* ========== PRODUCTS SHOWCASE ========== */
.products-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 50px;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid #e5e7eb;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.tab-content { display: none; animation: fadeIn 0.5s ease; }
.tab-content.active { display: block; }

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.product-item img {
  border-radius: var(--radius);
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.product-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.product-item h3 span { color: var(--orange); }

.product-list { margin: 20px 0; }

.product-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray);
}

.product-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ========== DEALS SECTION ========== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.deal-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(8px);
}

.deal-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.deal-item h4 { font-size: 1rem; margin-bottom: 6px; }
.deal-item p { font-size: 0.85rem; opacity: 0.8; }

/* ========== BRANDS ========== */
.brands-scroll {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.brands-scroll::-webkit-scrollbar { display: none; }

.brand-item {
  flex-shrink: 0;
  padding: 20px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--dark-gray);
  transition: var(--transition);
  min-width: 160px;
  text-align: center;
}

.brand-item:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

/* ========== TESTIMONIALS ========== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-inner::before {
  content: '"';
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 30px;
  line-height: 1;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 20px;
  border: 4px solid var(--orange);
  display: block;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark);
}

.testimonial-role { font-size: 0.85rem; color: var(--orange); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--orange);
  width: 32px;
  border-radius: 6px;
}

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--orange));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== PAGE CONTENT ========== */
.content-section { padding: 80px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.content-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-text h2 span { color: var(--orange); }

.content-text p { color: var(--gray); margin-bottom: 16px; }

.feature-list { margin: 24px 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.feature-list li span:last-child { flex: 1; line-height: 1.5; }

.feature-list .check {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.specs-table th, .specs-table td {
  padding: 14px 20px;
  text-align: left;
}

.specs-table th {
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
}

.specs-table tr:nth-child(even) { background: var(--light); }
.specs-table tr:hover { background: rgba(247,148,29,0.1); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247,148,29,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item > div { flex: 1; min-width: 0; }

.contact-item .icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.9rem; opacity: 0.7; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 1rem; }
.contact-item a:hover { color: var(--yellow); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,148,29,0.2);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 48px;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  background: var(--logo-bg);
  padding: 10px 18px;
  border-radius: 8px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-col { min-width: 0; }

.footer-contact li span:last-child {
  line-height: 1.6;
  word-break: break-word;
}

.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--orange);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact .fi {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom > * { flex: 1; min-width: 200px; }

.specs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


.footer-bottom a { color: var(--orange); }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--blue);
  transform: translateY(-5px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  animation: pulse 1.5s ease infinite;
}

.preloader-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--site-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-item { border-bottom: 1px solid #eee; }

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1rem;
}

.mobile-submenu {
  display: none;
  padding-left: 16px;
  padding-bottom: 12px;
}

.mobile-submenu.open { display: block; }

.mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.mobile-submenu a:hover { color: var(--orange); }

.mobile-cta { color: var(--orange) !important; font-weight: 700; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
  .deals-grid { grid-template-columns: 1fr 1fr; }

  /* iPad / tablet: use mobile menu, fix header alignment */
  .nav { display: none; }
  .menu-toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }
  .mobile-nav { display: block; }

  .header-wrap {
    align-items: center;
  }

  .header-brand {
    width: clamp(220px, 30vw, 300px);
    padding: 8px 44px 8px 20px;
  }

  .header-brand::before { right: -24px; }

  .header-wrap .header-inner {
    justify-content: flex-end;
    padding-left: 8px;
    padding-right: 20px;
  }

  .top-bar-info {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .content-grid,
  .product-item,
  .contact-grid { grid-template-columns: 1fr; }

  .content-grid.reverse { direction: ltr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  section { padding: 60px 0; }
}

@media (max-width: 600px) {
  :root { --header-h: 70px; }
  .header-brand {
    width: 220px;
    padding: 8px 40px 8px 18px;
  }
  .header-brand::before { right: -20px; }
  .logo img {
    height: calc(var(--header-h) - 12px);
    max-width: 90%;
  }
  .header-inner { padding-left: 8px; }
  .stats-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .top-bar-info { font-size: 0.75rem; gap: 10px; }
  .about-features { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .content-image img { height: 280px; }
  .about-image img { height: 280px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom > * { min-width: 0; }
}
