:root {
  --primary: #000000;
  --secondary: #121212;
  --accent: #c5a059;
  --text-primary: #111111;
  --text-secondary: #4a4a4a;
  --text-muted: #717171;
  --text-light: #999999;
  --bg-light: #fcfcfc;
  --off-white: #f8f8f8;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  --font-main: 'Inter', sans-serif;
  --section-padding: 120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  /* Globally remove list bullets */
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
  /* Extra safety for bullets */
}

::selection {
  background-color: var(--primary);
  color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.bg-light {
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM34 4V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-catalogue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-4px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  font-size: 1rem;
  gap: 12px;
  margin-top: 20px;
  padding: 18px 44px;
  border-radius: 50px;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.15);
}

.btn-catalogue {
  background-color: var(--accent);
  color: var(--white);
}

.btn-catalogue:hover {
  background-color: #b08e4d;
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

/* Header */
header {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

header.scrolled .nav-links a:hover {
  color: var(--accent);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  height: 100px;
}

header.scrolled .nav-container {
  height: 70px;
}

.logo-img {
  max-height: 45px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  /* Ensure it's white for dark backgrounds */
  transition: var(--transition);
}

header.scrolled .logo-img {
  max-height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Premium corporate look */
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links .btn-primary {
  padding: 12px 28px;
  font-size: 0.75rem;
}

.hamburger,
.nav-close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}




.hero h2 {
  font-size: 6rem;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.7;
  max-width: 550px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-btns .btn-secondary,
.hero-btns .btn-catalogue {
  margin-left: 0;
}

/* Trust Banner */
.trust-banner {
  background-color: var(--white);
  color: var(--text-primary);
  padding: 20px 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-premium);
  border-radius: 4px;
  border: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex: 1;
  transition: var(--transition);
  cursor: default;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--accent);
  transition: var(--transition);
}

/* Fast Delivery Animation */
.delivery .speed-lines {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transition: var(--transition);
}

.trust-item:hover .delivery .speed-lines {
  opacity: 1;
}

.trust-item:hover .delivery i {
  animation: truckVibrate 0.2s infinite linear;
}

.speed-lines span {
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  animation: speedLineMove 0.4s infinite linear;
}

.speed-lines span:nth-child(1) {
  width: 14px;
  animation-delay: 0s;
}

.speed-lines span:nth-child(2) {
  width: 10px;
  animation-delay: 0.1s;
}

.speed-lines span:nth-child(3) {
  width: 14px;
  animation-delay: 0.2s;
}

/* Quality Assured Animation */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}

.trust-item:hover .pulse-ring {
  animation: ripple 1.2s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Hospitality Focused Animation */
.trust-item:hover .hospitality i {
  animation: dishMove 0.6s ease-in-out infinite alternate;
}

@keyframes dishMove {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-8px) rotate(5deg);
  }
}

@keyframes truckVibrate {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(1px, -1px);
  }

  50% {
    transform: translate(-1px, 1px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes speedLineMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(-15px);
    opacity: 0;
  }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: left;
  position: relative;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  margin-top: 15px;
}

.section-title.center::after {
  margin: 15px auto 0;
}

/* Value Grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.value-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

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

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px solid var(--primary);
  display: inline-block;
  margin-top: 15px;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.text-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  transform: translateX(8px);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-box {
  background-color: transparent;
  padding: 0;
  text-align: left;
  transition: var(--transition);
  border: none;
}

.stat-box:hover {
  transform: none;
  box-shadow: none;
}

.stat-number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Segments */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.segment-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.segment-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.card-image {
  height: 300px;
  overflow: hidden;
  filter: grayscale(100%);
  transition: var(--transition);
}

.segment-card:hover .card-image {
  filter: grayscale(0%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.segment-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 40px;
  text-align: left;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin: -25px 0 20px 0;
  border: none;
  position: relative;
  z-index: 2;
}

.card-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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


/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 60px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 30px;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.client-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.client-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon i {
  color: var(--white);
  transform: rotateY(360deg);
}

.service-info h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-list {
  margin: 0;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-list li i {
  color: var(--accent);
  font-size: 0.75rem;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .service-card {
    padding: 30px;
  }
}

/* Brands Section */
.brands-section {
  padding: 60px 0;
  background-color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  will-change: transform;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 80px;
  padding: 20px 40px;
  align-items: center;
  flex-shrink: 0;
}

.marquee-content img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: var(--transition);
  cursor: pointer;
}

.marquee:hover img {
  opacity: 0.2;
}

.marquee-content img:hover {
  filter: grayscale(0%);
  opacity: 1 !important;
  transform: scale(1.1);
}


@keyframes scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

/* Mobile Adjustments for Brands */
@media (max-width: 768px) {
  .marquee-content {
    gap: 40px;
    padding: 20px 20px;
  }

  .marquee-content img {
    height: 35px;
  }

  .brands-section {
    padding: 40px 0;
  }

  .brands-container {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .marquee:hover img {
    opacity: 0.5;
    /* More visible on mobile touch */
  }
}


/* CTA */
.cta-section {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: var(--white);
  text-align: center;
  padding: 120px 20px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 24px;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: var(--text-muted);
  padding: 100px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 800;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.footer-col ul li i {
  color: var(--accent);
  font-size: 0.85rem;
  width: 20px;
}

.footer-col a {
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8rem;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle.center {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
}

.service-list li:hover {
  color: var(--primary);
  transform: translateX(5px);
  transition: var(--transition);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  header {
    padding: 0;
  }

  .nav-container {
    height: 70px;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--secondary);
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    box-shadow: var(--shadow-premium);
    text-align: center;
    gap: 30px;
    z-index: 2000;
  }

  .nav-links.active {
    display: flex;
    animation: slideInRight 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }

  .nav-close.active {
    display: block;
    position: fixed;
    top: 25px;
    right: 25px;
    font-size: 2.2rem;
    color: var(--white);
    z-index: 2100;
    transition: var(--transition);
  }

  .nav-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0);
    }
  }

  .hamburger {
    display: block;
    color: var(--white);
    z-index: 1002;
  }

  header.scrolled .hamburger {
    color: var(--white);
  }

  /* Hero adjustments */
  .hero {
    background-position: center;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero h2 {
    font-size: 2.2rem;
    /* Smaller for mobile */
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-secondary,
  .btn-catalogue {
    margin-left: 0;
    /* Remove margin in column layout */
  }

  /* Trust Banner */
  .trust-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  /* Section Spacing */
  .section {
    padding: 50px 0;
  }

  .about-grid,
  .value-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
  }

  .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    padding: 30px;
  }

  /* Services & Segments */
  .segment-grid,
  .services-grid {
    grid-template-columns: 1fr;
    /* Full width cards */
    padding: 0 10px;
  }

  .segment-card {
    margin-bottom: 20px;
  }

  /* Footer Improvements */
  footer {
    padding: 60px 0 30px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h4 {
    margin-bottom: 20px;
  }

  .footer-col ul li {
    justify-content: center;
    margin-bottom: 10px;
  }

  .footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

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

  .stat-box {
    padding: 20px;
  }

  .stat-number {
    font-size: 3rem;
  }
}