/* AC LED Solar - Core Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #080808;
  --bg-secondary: #0f0f0f;
  --bg-card: rgba(20, 20, 20, 0.6);
  --border-color: rgba(255, 255, 255, 0.07);
  --border-focus: rgba(240, 180, 41, 0.5);
  
  --color-primary: #f0b429;     /* Warm Amber Gold */
  --color-primary-hover: #d39e1b;
  --color-secondary: #3b82f6;   /* Electric Blue */
  --color-secondary-hover: #2563eb;
  
  --text-main: #f3f4f6;
  --text-muted: #7c7c8c;
  --text-inverse: #080808;
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Grid & Spacing */
  --max-width: 1200px;
  --header-height: 105px;
  --header-shrink-height: 80px;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

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

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.responsive-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}
.grid-1-1 { grid-template-columns: 1fr 1fr; }
.grid-1_2-1 { grid-template-columns: 1.2fr 1fr; }
.grid-1-1_2 { grid-template-columns: 1fr 1.2fr; }
.align-start { align-items: flex-start !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-inverse);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--color-secondary);
  background-color: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  height: var(--header-shrink-height);
  background-color: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo img {
  height: 84px;
  width: auto;
  transition: height 0.4s ease;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

header.scrolled .logo img {
  height: 62px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 4px;
  z-index: 1010;
  width: 32px;
  height: 24px;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              opacity 0.3s ease,
              top 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-line:nth-child(3) { top: 100%; transform: translateY(-100%); }

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) translateX(-20px);
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Footer */
footer {
  background-color: #060910;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about img {
  height: 95px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 24px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-main);
}

.social-link:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

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

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Section Title Component */
.section-title-area {
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--border-focus);
  outline: none;
  background-color: rgba(255, 255, 255, 0.04);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.05rem;
  }
  
  header.scrolled .logo img {
    height: 50px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-alt {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Menu Button display */
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-width: none;
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
    z-index: 1000;
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

  .nav-links a {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Redesigned Homepage Custom Styles */
.font-display {
  font-family: var(--font-display);
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
  -webkit-text-fill-color: transparent;
}

/* Hero Section Split Layout */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  align-items: center;
  position: relative;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-text-side {
  padding: 80px 48px 80px 0;
  z-index: 5;
}

.hero-image-side {
  position: relative;
  height: 100%;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-left: 2px solid var(--color-primary);
}

.hero-image-side::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(8, 8, 8, 0) 60%, rgba(8, 8, 8, 0.8) 100%);
  z-index: 2;
}

.hero-img-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Marquee Trust Ticker */
.marquee-strip {
  background-color: #0c0c0c;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  padding-left: 100%;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
}

/* About / Stats Row Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-stats-image-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.about-stats-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.about-stats-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  background-color: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-primary);
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-stats-badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 1;
}

.about-stats-badge-lbl {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  margin-top: 4px;
}

.about-stats-editorial {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-number-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.stat-counter-box {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1;
  font-weight: 400;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  display: block;
}

/* Services Staggered Cards */
.services-staggered-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-portrait-card {
  position: relative;
  aspect-ratio: 1 / 1.5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.service-portrait-card:nth-child(2) {
  transform: translateY(-20px);
}

.service-portrait-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.6) 40%, rgba(8, 8, 8, 0.1) 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}

.service-portrait-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-portrait-num {
  position: absolute;
  top: 30px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: 2;
  transition: color 0.5s ease;
}

.service-portrait-card-content {
  position: relative;
  z-index: 3;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-portrait-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-portrait-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  line-height: 1.6;
}

.service-portrait-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.service-portrait-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Hover effects */
.service-portrait-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(240, 180, 41, 0.1);
  border-color: rgba(240, 180, 41, 0.3);
}

.service-portrait-card:nth-child(2):hover {
  transform: translateY(-28px);
}

.service-portrait-card:hover::before {
  background: linear-gradient(to top, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.75) 50%, rgba(8, 8, 8, 0.2) 100%);
}

.service-portrait-card:hover .service-portrait-card-bg {
  transform: scale(1.08);
}

.service-portrait-card:hover .service-portrait-num {
  color: rgba(240, 180, 41, 0.15);
}

.service-portrait-card:hover .service-portrait-card-content {
  transform: translateY(0);
}

.service-portrait-card:hover .service-portrait-desc {
  opacity: 1;
  visibility: visible;
}

.service-portrait-card:hover .service-portrait-link {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.service-portrait-card:hover .service-portrait-link svg {
  transform: translateX(4px);
}

/* Why Choose Us Editorial Rows */
.why-us-editorial-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.why-us-sticky-title {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.why-us-rows {
  display: flex;
  flex-direction: column;
}

.why-us-item-row {
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 80px 1.5fr;
  gap: 24px;
  transition: all 0.3s ease;
}

.why-us-item-row:hover {
  background-color: rgba(255, 255, 255, 0.01);
  padding-left: 16px;
}

.why-us-item-row:last-child {
  border-bottom: 1px solid var(--border-color);
}

.why-us-row-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-primary);
  opacity: 0.6;
  line-height: 1;
}

.why-us-row-content h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
}

.why-us-row-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-us-item-row:hover .why-us-row-num {
  opacity: 1;
  transform: translateX(4px);
}

/* Full-bleed Cinematic CTA */
.cta-cinematic-section {
  position: relative;
  background-color: #050505;
  overflow: hidden;
  padding: 120px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-circuit-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.cta-cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Redesign Tweaks for All Screens */

/* 1. Large Screens & Above (min-width: 1400px) */
@media (min-width: 1400px) {
  .hero-split-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .hero-text-side {
    padding-right: 80px;
  }
}

/* 2. Standard Laptops & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero-split-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .hero-text-side {
    padding-right: 24px;
  }
  .about-stats-grid {
    gap: 40px;
  }
  .services-staggered-layout {
    gap: 24px;
  }
  .service-portrait-card {
    padding: 30px;
  }
  .service-portrait-num {
    font-size: 3rem;
    top: 24px;
    right: 30px;
  }
  .why-us-editorial-section {
    gap: 48px;
  }
}

/* 3. Medium Tablets - Landscape (max-width: 992px) */
@media (max-width: 992px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-text-side {
    padding: 60px 0 40px;
  }
  
  .hero-image-side {
    clip-path: none;
    min-height: 450px;
    border-left: none;
    border-top: 2px solid var(--color-primary);
    border-radius: 20px;
  }
  
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-stats-image-panel {
    min-height: 380px;
  }
  
  .services-staggered-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  
  .service-portrait-card {
    aspect-ratio: 1.5 / 1;
    min-height: 320px;
    transform: none !important; /* Remove vertical offset for stacked cards */
  }
  
  .service-portrait-card:hover {
    transform: translateY(-8px) !important;
  }
  
  .why-us-editorial-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-us-sticky-title {
    position: relative;
    top: 0;
  }
}

/* 4. Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .hero-text-side h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-image-side {
    min-height: 350px;
  }
  
  .about-stats-badge {
    bottom: 24px;
    left: 24px;
    padding: 16px 24px;
  }
  
  .about-stats-badge-num {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .why-us-item-row {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}

/* 5. Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
  .hero-text-side h1 {
    font-size: 2.2rem !important;
  }
  
  .logo-text {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
  
  .stats-number-row {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
  }
  
  .service-portrait-card {
    aspect-ratio: auto;
    min-height: 280px;
    padding: 24px;
  }
  
  .service-portrait-title {
    font-size: 1.4rem;
  }
  
  .why-us-item-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .why-us-row-num {
    font-size: 1.5rem;
  }
}

/* 6. Tiny Mobile Screens (max-width: 375px) */
@media (max-width: 375px) {
  .hero-text-side h1 {
    font-size: 1.9rem !important;
  }
  
  .logo-text {
    display: none;
  }
  
  .hero-text-side {
    padding-top: 40px;
  }
  
  .hero-text-side .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-image-side {
    min-height: 280px;
  }
}
