/* =====================================================
   FIREWORLD BBQ - Premium Stylesheet
   Dubai Luxury Level Design Upgrade
   ===================================================== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #f87a07;
  --primary-dark: #d96500;
  --primary-light: rgba(248,122,7,0.12);
  --black: #000000;
  --white: #ffffff;
  --light-bg: #f5f5f5;
  --dark-bg: #0d0d0d;
  --dark-surface: #141414;
  --text-dark: #111111;
  --text-muted: #777777;
  --border: #e5e5e5;
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.22);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --glass: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.13);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== TOP SCROLLING BAR ===== */
.top-slider {
  width: 100%;
  overflow: hidden;
  background: #0d0d0d;
  color: #fff;
  height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(248,122,7,0.25);
  position: relative;
  z-index: 1100;
}
.top-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}
.top-item {
  padding: 0 48px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-family: var(--font-main);
  gap: 6px;
}
.top-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.25s;
}
.top-item a:hover { color: var(--primary); }
.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.social-icons svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}
.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.facebook { background: #1877F2; }
.twitter { background: #000; }
.pinterest { background: #E60023; }
.whatsapp { background: #25D366; }
.social-icons a:hover { transform: scale(1.18); box-shadow: 0 2px 8px rgba(0,0,0,0.35); }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-slider:hover .top-track { animation-play-state: paused; }

/* ===== MAIN HEADER ===== */
.main-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.main-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.99);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-wrap img {
  height: 70px;
  width: auto;
  object-fit: contain;
}
.logo-text-fallback {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
  font-family: var(--font-heading);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.main-nav > li > a .arrow {
  font-size: 0.65rem;
  transition: transform 0.25s;
  margin-left: 2px;
  opacity: 0.6;
}
.main-nav > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* ===== CLOSE BUTTON (mobile only) ===== */
.main-nav-close-btn { display: none; }

/* ===== DROPDOWN ===== */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  overflow: hidden;
  z-index: 999;
  border: 1px solid rgba(0,0,0,0.06);
  animation: dropDown 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.main-nav > li:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
  font-family: var(--font-main);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 26px;
}

/* ===== CTA BUTTON ===== */
.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-brochure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.btn-brochure:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248,122,7,0.4);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 10001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(248,122,7,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248,122,7,0.42);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-dark:hover {
  background: #222;
  border-color: #222;
  transform: translateY(-2px);
}

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--dark-bg); color: var(--white); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--primary);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.divider {
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
  transform: scale(1.06);
}
.slide.active .slide-bg {
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.25) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  color: #fff;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s 0.2s ease;
}
.slide-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--primary);
}
.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}
.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s 0.35s ease;
}
.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}
.slide-title span { color: var(--primary); }
.slide-desc {
  max-width: 520px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s 0.5s ease;
}
.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}
.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s 0.65s ease;
}
.slide.active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}
.slide-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s 0.8s ease;
}
.slide.active .slide-stats {
  opacity: 1;
  transform: translateY(0);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s;
}
.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
@media (max-width: 768px) {
  .slider-arrow { display: none; }
}

/* ===== PRODUCT CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 3/4;
  background: #1a1a1a;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.1); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0) 80%
  );
  transition: var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.5) 55%,
    rgba(248,122,7,0.1) 100%
  );
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: var(--white);
}
.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.category-card .btn {
  padding: 9px 20px;
  font-size: 0.75rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(248,122,7,0.5);
}
.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.9;
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.about-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--primary);
}
.about-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.about-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.about-point-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ===== FEATURES FLIP CARDS ===== */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.flip-box {
  perspective: 1000px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 210px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.flip-box:hover .flip-inner {
  transform: rotateY(180deg);
}
.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-front {
  background: linear-gradient(135deg, #f87a07 0%, #ff9f3c 100%);
  box-shadow: 0 8px 28px rgba(248,122,7,0.35);
}
.flip-front h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.flip-back {
  background: #1a1a1a;
  transform: rotateY(180deg);
  border: 1px solid rgba(248,122,7,0.2);
}
.flip-back p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #222;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item.large img { min-height: 380px; }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248,122,7,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  font-size: 2rem;
  color: var(--white);
}

/* ===== CLIENTS SECTION ===== */
.clients-wrapper {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}
.clients-wrapper::before,
.clients-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.clients-wrapper::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.clients-track {
  display: flex;
  gap: 24px;
  animation: scrollClients 28s linear infinite;
  width: max-content;
}
.clients-wrapper:hover .clients-track { animation-play-state: paused; }
@keyframes scrollClients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  min-height: 80px;
  min-width: 120px;
}
.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border-color: var(--primary);
}
.client-logo img {
  height: 44px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.3s;
}
.client-logo:hover img { filter: grayscale(0%); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark-bg); padding: 100px 0; }
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}
.testimonial-inner {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 52px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.testimonial-quote {
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 22px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-stars { color: var(--primary); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.testimonial-author-title { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-btn:hover { background: var(--primary); border-color: var(--primary); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dot.active { background: var(--primary); width: 28px; border-radius: 4px; }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(248,122,7,0.08) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info-block { margin-bottom: 36px; }
.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(248,122,7,0.2);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-detail-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.contact-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.map-wrap iframe { width: 100%; height: 200px; border: none; display: block; }

/* Contact Form */
.contact-form-wrap {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.contact-form-wrap p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(248,122,7,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error {
  font-size: 0.76rem;
  color: #dc3545;
  margin-top: 4px;
  display: none;
}
.form-success {
  display: none;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #b8dfcc;
  color: #155724;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 16px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(248,122,7,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.7fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(248,122,7,0.3);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.footer-map span {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.footer-map iframe {
  width: 100%;
  height: 100px;
  border: none;
  border-radius: 8px;
  filter: grayscale(40%);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-copy a { color: var(--primary); }
.footer-bottom-socials {
  display: flex;
  gap: 14px;
}
.footer-bottom-socials a {
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}
.footer-bottom-socials a:hover { color: var(--primary); }
.footer-bottom-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--dark-bg);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-banner-content { position: relative; z-index: 1; color: var(--white); }
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.page-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }

/* ===== ABOUT PAGE ===== */
.about-story { padding: 100px 0; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.mission-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mission-card-icon { font-size: 2.8rem; margin-bottom: 16px; }
.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.mission-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ===== PRODUCTS PAGE ===== */
.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(248,122,7,0.3);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card-body { padding: 24px; }
.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 24px; }
.blog-card-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-excerpt { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { font-size: 0.76rem; color: #aaa; display: flex; gap: 14px; }

/* ===== GALLERY PAGE ===== */
.gallery-masonry {
  columns: 3;
  column-gap: 14px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-item .gallery-overlay { border-radius: 12px; }

/* ===== CAREERS PAGE ===== */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.career-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
}
.career-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.career-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.career-card-meta { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.career-tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.73rem;
  font-weight: 600;
}
.career-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ===== CLIENTS PAGE ===== */
.clients-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.client-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.client-card img {
  height: 56px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.client-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.client-card-type { font-size: 0.8rem; color: var(--primary); font-weight: 600; }
.client-card-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .flip-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.large { grid-column: span 2; }
}

@media (max-width: 900px) {
  .slide-title { font-size: 2.4rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 2rem; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .clients-page-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 2; }
  .careers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-maps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 10px 0; }

  /* MOBILE NAV — Full screen overlay */
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 9999;
    overflow-y: auto;
    padding: 60px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav > li { width: 100%; max-width: 320px; }
  .main-nav > li > a {
    font-size: 1.15rem;
    padding: 14px 20px;
    color: rgba(255,255,255,0.85);
    width: 100%;
    border-radius: 10px;
  }
  .main-nav > li > a:hover,
  .main-nav > li > a.active {
    color: var(--primary);
    background: rgba(248,122,7,0.1);
  }
  .dropdown {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    animation: none;
  }
  .main-nav > li:hover .dropdown { display: none; }
  .main-nav > li.dd-open .dropdown { display: block; }
  .dropdown li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    padding: 9px 44px;
    border-bottom: none;
  }
  .dropdown li a:hover { color: var(--primary); background: transparent; padding-left: 44px; }
  .hamburger { display: flex; z-index: 10001; position: relative; }
  .btn-brochure { display: none; }
  .main-nav-close-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    z-index: 10002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: var(--transition);
  }
  .main-nav-close-btn:hover { background: var(--primary); color: #fff; }

  .hero-slider-section { height: 75vh; min-height: 500px; }
  .slide-title { font-size: 1.9rem; }
  .slide-desc { font-size: 0.95rem; }
  .slide-stats { gap: 24px; margin-top: 36px; }
  .stat-num { font-size: 1.6rem; }
  .slide-content { padding: 70px 24px 40px; }

  .categories-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .gallery-item.large img { min-height: 190px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-maps { grid-template-columns: 1fr; }

  .clients-page-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }

  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }
  .page-banner h1 { font-size: 2rem; }
  .about-grid { gap: 28px; }
  .about-points { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 1.65rem; }
  .slide-btns { flex-direction: column; gap: 10px; }
  .categories-grid { grid-template-columns: 1fr; }
  .flip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .clients-page-grid { grid-template-columns: 1fr; }
  .testimonial-inner { padding: 30px 20px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-maps { grid-template-columns: 1fr; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  z-index: 9000;
  box-shadow: 0 4px 16px rgba(248,122,7,0.5);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); background: var(--primary-dark); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.25s;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover { color: var(--primary); }

/* ========================================
   SEO PAGES - RESPONSIVE LAYOUT
======================================== */
.seo-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-main {
  min-width: 0;
}

.seo-hero-img,
.seo-img-2 {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.seo-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 30px 0;
}

.seo-text strong {
  color: #EF4E26;
  font-weight: 600;
}

.related-links {
  margin: 50px 0;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 8px;
}

.related-links h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #EF4E26;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.related-card {
  display: block;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
}

.related-card:hover {
  background: #EF4E26;
  color: #fff;
  border-color: #EF4E26;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239,78,38,0.2);
}

.seo-cta {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, #EF4E26 0%, #d63a1a 100%);
  color: #fff;
  border-radius: 12px;
  text-align: center;
}

.seo-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.seo-cta p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.seo-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.seo-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #EF4E26;
  border-bottom: 2px solid #EF4E26;
  padding-bottom: 10px;
}

.sidebar-card p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 12px;
}

.sidebar-links a {
  display: block;
  padding: 10px 15px;
  background: #f8f8f8;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-links a:hover {
  background: #EF4E26;
  color: #fff;
  transform: translateX(5px);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #EF4E26;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .seo-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .seo-sidebar {
    position: static;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .seo-cta .cta-buttons {
    flex-direction: column;
  }
  
  .seo-cta .cta-buttons a {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .seo-text {
    font-size: 15px;
  }
  
  .seo-cta {
    padding: 30px 20px;
  }
  
  .seo-cta h3 {
    font-size: 22px;
  }
  
  .sidebar-card {
    padding: 20px;
  }
}

/* ========================================
   PRODUCTS GRID - OUTDOOR KITCHEN PAGE
======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-img {
  height: 220px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

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

.product-content h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #EF4E26;
  font-weight: 600;
}

.product-content p {
  margin: 0;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   FEATURES GRID
======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(239,78,38,0.15);
  border-color: #EF4E26;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  margin: 0 0 15px 0;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
}

.feature-desc {
  margin: 0;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   VIDEO EMBED
======================================== */
.about-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.about-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-img {
    height: 180px;
    padding: 20px;
  }
  
  .product-content,
  .feature-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .product-content h3,
  .feature-title {
    font-size: 18px;
  }
  
  .product-content p,
  .feature-desc {
    font-size: 14px;
  }
}
