main {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 20, 0.62);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  padding: 2rem 1rem 5rem;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.2;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  margin: 0 auto 1.75rem;
  line-height: 1.65;
  max-width: 520px;
}

.hero-content .btn {
  min-width: 160px;
}

.hero-controls-wrap {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
}

.categories {
  background: var(--gray-100);
}

.category-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.category-card h3 {
  font-size: 0.85rem;
}

.why-us {
  background: var(--black);
  color: var(--white);
}

.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: var(--gray-500); }

.feature-card {
  padding: 2rem;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.clients-bar {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.clients-bar h3 {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.client-tag {
  padding: 0.6rem 1.25rem;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-band .btn {
  background: var(--white);
  color: var(--gold-dark);
}

.cta-band .btn:hover {
  background: var(--black);
  color: var(--white);
}

.page-hero {
  background: var(--black);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--gray-500);
  max-width: 600px;
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-parking-section .about-img,
.about-tarpaulin-section .about-img {
  aspect-ratio: 4 / 3;
}

.about-parking-section .about-img img,
.about-tarpaulin-section .about-img img,
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-parking-section p,
.about-tarpaulin-section p {
  color: var(--gray-700);
  line-height: 1.75;
}

.about-list li {
  padding: 0.6rem 0;
  padding-inline-start: 1.5rem;
  position: relative;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.about-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 700;
}

.industries-section {
  width: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0d0d0d 100%);
}

.industries-section-overlay {
  padding: 5rem 0 3.5rem;
}

.industries-section-title {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.industries-scroll-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  max-width: 100%;
}

.industries-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.industries-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.industries-scroll {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 0.5rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.industries-scroll::-webkit-scrollbar {
  display: none;
}

.industry-card {
  flex: 0 0 292px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
}

.industry-card-figure {
  position: relative;
  margin: 0;
  height: 220px;
  overflow: hidden;
}

.industry-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-figure img {
  transform: scale(1.04);
}

.industry-card-head {
  padding: 1rem 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--gold);
}

.industry-card-head h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

[dir="rtl"] .industries-scroll-outer {
  flex-direction: row-reverse;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-200);
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-img img {
  transform: scale(1.04);
}

.project-card-body {
  padding: 1.5rem;
}

.project-card-body h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.1rem;
}

.project-card-body > p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.project-meta li {
  margin-bottom: 0.35rem;
}

.project-meta strong {
  color: var(--black);
}

.project-amount {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

.project-amount span {
  color: var(--gold);
}

.projects-section {
  background: var(--gray-100);
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.page-hero--light {
  background: var(--gray-100);
  color: var(--black);
}

.page-hero--light h1 {
  color: var(--black);
}

.page-hero--light p {
  color: var(--gray-700);
}

.portfolio-section {
  background: var(--white);
}

/* Portfolio bento showcase grid */
.portfolio-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-200);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  color: var(--white);
  opacity: 1;
  transition: background 0.35s ease;
}

.showcase-item:hover .showcase-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 65%);
}

.showcase-cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.showcase-overlay h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.showcase-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
}

.showcase-featured {
  grid-column: span 6;
  grid-row: span 2;
}

.showcase-wide {
  grid-column: span 6;
}

.portfolio-showcase .showcase-normal {
  grid-column: span 3;
}

/* Home featured projects — 3 cards in a row */
.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-200);
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-img img {
  transform: scale(1.05);
}

.featured-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.featured-card-overlay h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.35;
}

.portfolio-showcase-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.showcase-card-link {
  text-decoration: none;
  display: block;
  min-height: 280px;
}

.showcase-card-link .showcase-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: min(90vw, 1100px);
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-content p {
  color: var(--white);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

[dir="rtl"] .lightbox-close { right: auto; left: 1.5rem; }
[dir="rtl"] .lightbox-prev { left: auto; right: 1.5rem; }
[dir="rtl"] .lightbox-next { right: auto; left: 1.5rem; }

.portfolio-card .card-body {
  position: relative;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  height: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  text-align: center;
}

/* PDF Page 6 — Shades & Tents */
.shades-tents-section {
  background: var(--white);
}

.shades-tents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.shades-tents-content p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.shades-tents-content p:last-child {
  margin-bottom: 0;
}

.shades-tents-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.shades-tents-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Stats band with tent background */
.stats-band {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.stats-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stats-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.88) 0%, rgba(15, 15, 20, 0.72) 100%);
}

.stats-band-inner {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-item span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

/* FAQ section */
.faq-section {
  background: var(--gray-100);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: start;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform var(--transition);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}

.faq-item.open .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 0.95rem;
}

[dir="rtl"] .faq-question {
  text-align: right;
}

@media (max-width: 1024px) {
  .portfolio-showcase {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .portfolio-showcase .showcase-featured { grid-column: span 6; grid-row: span 2; }
  .portfolio-showcase .showcase-wide { grid-column: span 3; }
  .portfolio-showcase .showcase-normal { grid-column: span 3; }
  .featured-projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { padding: 2rem 1rem 5rem; }
  .hero-controls-wrap { bottom: 1.25rem; }
  .portfolio-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .portfolio-showcase .showcase-featured,
  .portfolio-showcase .showcase-wide,
  .portfolio-showcase .showcase-normal { grid-column: span 2; grid-row: span 1; }
  .featured-projects-grid { grid-template-columns: 1fr; gap: 1rem; }
  .featured-card-overlay h3 { font-size: 1rem; }
  .industries-section-overlay { padding: 3.5rem 0 2.5rem; }
  .industry-card { flex: 0 0 240px; }
  .industry-card-figure { height: 190px; }
  .industries-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .industry-card { flex: 0 0 220px; }
  .industry-card-figure { height: 170px; }
  .projects-grid { grid-template-columns: 1fr; }
  .shades-tents-grid { grid-template-columns: 1fr; gap: 2rem; }
  .shades-tents-img { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stats-band { padding: 3.5rem 0; }
}
