/* --------------------------------------------------
   CLEAN NAVBAR — WORKS PERFECTLY DESKTOP + MOBILE
-------------------------------------------------- */

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

.nav-navbar {
  width: 100%;
  background: #65c368;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.nav-container {
  top: 0;
  left: 0;
  max-width: 1200px;
  margin: auto;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* LOGO */
.logo img {
  width: 160px;
  margin-left: 0px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-menu li a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: .3s ease;
  margin-right: 20px;
}

.nav-menu li a:hover {
  color: #3f53c1;
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 220px;
  background: #fff;
  padding: 10px 0;
  border-radius: 6px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 15px;
}

.dropdown-menu li a:hover {
  background: #f7c04a;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* HAMBURGER */
.hamburger {
  font-size: 30px;
  display: none;
  color: #111;
  cursor: pointer;
}

/* HAMBURGER ANIMATION */
.hamburger {
  width: 27px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #111;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Transform to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}


/* --------------------------------------------------
      MOBILE RESPONSIVE STYLING
-------------------------------------------------- */
@media (max-width: 768px) {
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;   /* <-- this is why the height is always full screen */
  width: 260px;
  background: #ecf775;
  flex-direction: column;
  padding-top: 100px;
  gap: 25px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.15);
  transition: .4s ease;
  overflow-y: auto;
}


  .nav-menu.active {
    top: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Disable hover dropdown */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

   /* Mobile dropdown click-to-open */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #fbfbf8;
    border-radius: 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;      /* ← SHOW MENU */
  }
}

/* ── ACTIVE NAV LINK ── */
.nav-menu li a.active {
    color: #f7f461;
    font-weight: 800;
}

.nav-menu li a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: #4caf50;
    margin-top: 4px;
}


.dropdown {
    position: relative;
}

.dropdown-arrow {
    display: none;
}

@media (max-width: 768px) {
    .dropdown {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-toggle {
        flex: 1;
    }

    .dropdown-arrow {
        display: inline-flex;
        padding: 10px 15px;
        cursor: pointer;
    }

    .dropdown-menu {
        width: 100%;
    }
}


@media (max-width: 768px) {
  .nav-menu.active {
    right: 0;      /* ← SHOW MENU */
  }
}



/* ===== CSS Variables ===== */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #64748b;
  --dark: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* ── ACTIVE NAV LINK ── */
.nav-menu li a.active {
    color: #f7f461;
    font-weight: 800;
}

.nav-menu li a.active {
    content: '';
    display: block;
    height: 2px;
    background: #4caf50;
    margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-menu li a.active{
    color: #4caf50;
    font-weight: 800;
}
}



/* ===== Services Hero ===== */
.services-hero {
  position: relative;
  min-height: 97vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

/* Background Container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  z-index: 1;
}

/* Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97vh;
  background-image: url('../images/services.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Color Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97vh;
  background: linear-gradient(135deg, rgba(9, 9, 9, 0.76) 0%, rgba(17, 17, 17, 0.767) 100%);
  z-index: 2;
}

/* Content */
.hero-inner.container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-text {
  max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

 .services-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

  /* Color Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(9, 9, 9, 0.529) 0%, rgba(17, 17, 17, 0.699) 100%);
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: -95px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-200);
  max-width: 90%;
  line-height: 1.6;
  margin-top: 110px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: -50px;
}
}


.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--gray-200);
  max-width: 90%;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 65px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.25rem;
}

.feature-text {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Hero section visibility */
.services-hero {
  opacity: 1;
  transform: translateY(0);
}





/* Services Overlay Grid */
.services-overlay-grid {
    padding: 80px 0;
    background: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Overlay Grid Layout */
.overlay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Overlay Card */
.overlay-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 142, 26, 0.2);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.overlay-card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.service-tag {
    background: #ecf775;
    color: #1a202c;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    align-self: flex-start;
}

.card-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.learn-more-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid white;
}

.learn-more-btn:hover {
    background: #156615;
    transform: translateY(-2px);
}


/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.service-modal.active {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1a8e1a;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #156615;
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

/* Modal Content */
.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-tag {
    background: #ecf775;
    color: #1a202c;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-description {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.modal-details {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.modal-details h4 {
    color: #1a202c;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-details li {
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.modal-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a8e1a;
    font-weight: bold;
}

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

.modal-action a {
    display: inline-block;
    background: #1a8e1a;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modal-action a:hover {
    background: #156615;
}

/* Responsive */
@media (max-width: 1024px) {
    .overlay-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-overlay-grid {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .overlay-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .overlay-card {
        height: 280px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .overlay-card {
        height: 250px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
}

/* ===== Bottom CTA Bar ===== */
.bottom-cta-bar {
  background: linear-gradient(135deg, #1a8e1a 0%, #65c368 100%);
  color: white;
  padding: 10px 0;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.bottom-cta-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.1"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-text h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: white;
}

.cta-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn.primary {
  background: white;
  color: #1a8e1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .cta-text h3 {
    font-size: 1.6rem;
  }
  
  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .bottom-cta-bar {
    padding: 30px 0;
    margin-top: 40px;
  }
  
  .cta-text h3 {
    font-size: 1.4rem;
  }
  
  .cta-text p {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  .bottom-cta-bar {
    padding: 25px 0;
  }
  
  .cta-text h3 {
    font-size: 1.3rem;
  }
}


.modern-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    padding: 70px 0 0;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #4a5568;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #68d391;
}

.company-info { padding-right: 20px; }

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tagline {
    color: #68d391;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.company-description {
    color: #a0aec0;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #68d391;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 211, 145, 0.3);
}

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

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #68d391;
    padding-left: 8px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #68d391;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover { color: #68d391; }

/* Footer Bottom */
.footer-bottom {
    padding: 5px 0;
    overflow: hidden;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* Powered by */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

.contact-icon {
  font-size: 18px;
  color: #4caf50;
  margin-right: 10px;
  width: 25px;
}


.social-link i {
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.social-link:hover i {
  color: #f7e337;
}

.powered-link {
    display: flex;
    align-items: center;
}

.powered-logo {
    height: 100px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.powered-link:hover .powered-logo {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .company-info { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .modern-footer { padding: 50px 0 0; }
    .footer-main { grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .company-info { padding-right: 0; text-align: center; }
    .footer-section h4::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .footer-container { padding: 0 15px; }
    .footer-main { gap: 30px; }
    .social-links { justify-content: center; }
}

