/* ══════════════════════════════════════════
   شراء سكراب الرياض — Flat Redesign
   No gradients · No shadows · No effects
   Font: IBM Plex Sans Arabic
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #0b0e1a;
  --bg-surface: #111528;
  --bg-card: #161a30;
  --gold: #e5b842;
  --gold-hover: #d4a537;
  --text-white: #f5f5f5;
  --text-muted: #9ca3b8;
  --border-color: #1e2340;
  --section-spacing: clamp(70px, 9vw, 110px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  direction: rtl;
  line-height: 1.8;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  color: var(--text-white);
}

ul {
  list-style: none;
}

.text-gold {
  color: var(--gold);
}

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

.section-padding {
  padding: var(--section-spacing) 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 800px;
  margin: 0 auto;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 12px auto 0;
  text-align: center;
}

/* ── Floating Buttons ── */
.floating-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9999;
}

.whatsapp-float {
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
}

.whatsapp-float:hover {
  background: #1fb855;
}

.phone-float {
  bottom: 96px;
  right: 28px;
  background: var(--gold);
  color: var(--bg-deep);
}

.phone-float:hover {
  background: var(--gold-hover);
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: auto;
  width: 46px;
  height: 46px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ── Top Bar ── */
.top-bar {
  background: #000;
  padding: 8px 0;
  font-size: 0.85rem;
  z-index: 1001;
  position: relative;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 20px;
}

.top-contact a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-contact a:hover {
  color: var(--gold);
}

.top-availability {
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-color);
  transition: padding 0.3s;
}

.navbar.scrolled {
  padding: 6px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: height 0.2s;
}

.navbar.scrolled .logo-img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  color: var(--gold);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Hero ── */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  padding: 60px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.9;
}

.hero-features {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.hero-features li i {
  color: var(--gold);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-images {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 480px;
}

.hero-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-images img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.hero-images img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.hero-images img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

/* ── Stats ── */
.stats-section {
  padding: 50px 0;
  margin-top: -40px;
  z-index: 10;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  text-align: center;
}

.stat-item {
  padding: 36px 20px;
  border-left: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-left: none;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.stat-suffix {
  font-size: 1.8rem;
  vertical-align: middle;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── About Section (Premium Redesign) ── */
.about-section {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.about-bg-glow {
  position: absolute;
  top: 10%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 48, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

/* ── Image Collage ── */
.about-collage {
  position: relative;
  min-height: 480px;
}

.collage-main {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 165, 48, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.collage-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.collage-main:hover img {
  transform: scale(1.04);
}

.collage-float {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--bg-deep);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.collage-float:hover {
  transform: translateY(-5px) scale(1.03);
}

.collage-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-float-1 {
  bottom: -30px;
  right: -20px;
  width: 180px;
  height: 140px;
}

.collage-float-2 {
  bottom: 30px;
  left: -25px;
  width: 160px;
  height: 120px;
}

.collage-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  z-index: 3;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-primary), #b8891a);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 165, 48, 0.35);
  animation: badge-pulse 3s ease-in-out infinite;
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.badge-number sup {
  font-size: 0.9rem;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 2px;
}

@keyframes badge-pulse {

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

  50% {
    transform: scale(1.06);
  }
}

/* ── Content Side ── */
.about-content {
  position: relative;
}

.about-lead {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.lead-line {
  width: 4px;
  min-height: 60px;
  background: linear-gradient(180deg, var(--gold-primary), transparent);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 4px;
}

.about-lead p {
  font-size: 1.1rem;
  color: var(--text-ivory);
  line-height: 1.9;
  margin: 0;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* ── Feature Cards ── */
.about-features-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.about-feat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}

.about-feat-card:hover {
  border-color: var(--gold);
}

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.about-feat-card:hover .feat-icon-wrap {
  background: var(--gold);
  color: var(--bg-deep);
}

.feat-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text-ivory);
}

.feat-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── CTA Sections ── */
.contact-cta-section {
  background: var(--bg-surface);
  padding: 70px 0;
  text-align: center;
}

.contact-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-cta-section p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--text-muted);
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-info-item {
  background: var(--bg-card);
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Services ── */
.services-section {
  background: var(--bg-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-card h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── Why Choose Us ── */
.why-section {
  background: var(--bg-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}

.why-card:hover {
  border-color: var(--gold);
}

.why-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-text h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Steps ── */
.steps-section {
  background: var(--bg-deep);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--bg-deep);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: background 0.2s, color 0.2s;
}

.step-card:hover .step-number {
  background: var(--gold);
  color: var(--bg-deep);
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Pricing & Service24 & Best ── */
.pricing-section {
  background: var(--bg-surface);
}

.service24-section {
  background: var(--bg-deep);
}

.best-section {
  background: var(--bg-surface);
}

.pricing-grid,
.service24-grid,
.best-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.pricing-content h3,
.service24-content h3,
.best-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.pricing-content p,
.service24-content p,
.best-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.pricing-image img,
.service24-image img,
.best-image img {
  width: 100%;
  border: 1px solid var(--border-color);
}

/* ── Company Section ── */
.company-section {
  background: var(--bg-surface);
}

.company-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.company-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.company-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.mini-stat {
  background: var(--bg-deep);
  padding: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.mini-stat h4 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 4px;
}

.mini-stat p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.company-image-wrap {
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.company-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Marquee ── */
.marquee-section {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-text {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-deep);
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.marquee-text span {
  margin: 0 20px;
  opacity: 0.5;
  font-size: 1.3rem;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Gallery ── */
.gallery-section {
  background: var(--bg-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(9) {
  grid-column: span 2;
}

.gallery-item:nth-child(7) {
  grid-row: span 2;
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg-deep);
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-btn {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.faq-btn i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.faq-item.active .faq-btn i {
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--bg-deep);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}

.faq-content p {
  padding: 0 28px 22px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── Final CTA ── */
.final-cta-section {
  background: var(--bg-card);
  padding: 80px 0;
  text-align: center;
}

.final-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.final-cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ── Footer ── */
.footer {
  background: #05060a;
  padding: 70px 0 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 16px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 4px;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── Fade In ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {

  .hero-container,
  .about-grid,
  .pricing-grid,
  .service24-grid,
  .best-grid,
  .company-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons,
  .btn-group {
    justify-content: center;
  }

  .hero-images {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-images img {
    grid-column: 1 !important;
    grid-row: auto !important;
    height: 200px !important;
  }

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

  .stat-item {
    border-left: none;
    border-bottom: 1px solid var(--border-color);
  }

  .about-collage {
    min-height: auto;
    max-width: 500px;
    margin: 0 auto 40px;
  }

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

  .about-cta-row {
    justify-content: center;
  }

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

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

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

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

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

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--bg-deep);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links.active a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-section {
    padding: 80px 0 50px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.8rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    right: 50%;
    transform: translateX(50%);
  }

  .footer-contact li {
    justify-content: center;
  }

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

  .collage-float-1,
  .collage-float-2 {
    display: none;
  }

  .about-lead {
    flex-direction: column;
    text-align: center;
  }

  .lead-line {
    width: 60px;
    min-height: 4px;
    margin: 0 auto;
  }

  .about-cta-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-features {
    align-items: flex-start;
  }

  .contact-cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-info {
    flex-direction: column;
    align-items: center;
  }
}