/* 
===============================
Table of Contents:
1. General Styles
2. Utility Classes
3. Top Bar
4. Header
5. Navigation & Mega Menu
6. Hero Section
7. Features
8. About Section
9. Products Section
10. Featured Products
11. Services Section
12. Testimonials
13. CTA Section
14. Partners
15. Footer
16. Responsive Styles
===============================
*/

/* ========== 1. General Styles ========== */
:root {
  --primary-color: #0369a1;
  --secondary-color: #1e3a8a;
  --accent-color: #f97316;
  --text-color: #1f2937;
  --text-light: #64748b;
  --light-color: #f8fafc;
  --dark-color: #0f172a;
  --border-color: #e2e8f0;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --section-padding: 80px 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul,
ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========== 2. Utility Classes ========== */
.section-padding {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--light-color);
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.5;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
}

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

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

.btn-light {
  background-color: white;
  color: var(--accent-color);
  border: 2px solid white;
}

.btn-light:hover {
  background-color: transparent;
  color: white;
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--accent-color);
}

.section-header {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.section-header .subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
}

.section-header h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  bottom: -15px;
  left: 0;
  transform: translateX(10%);
}

.section-header.text-left h2:after {
  left: 0;
  transform: none;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 20px auto 0;
}

/* ========== 3. Top Bar ========== */
.top-bar {
  background-color: var(--secondary-color);
  padding: 10px 0;
  color: white;
  font-size: 0.9rem;
}

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

.contact-info {
  display: flex;
  align-items: center;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.contact-info a:hover {
  color: white;
}

.contact-info i {
  margin-right: 8px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 15px;
  font-size: 1rem;
}

.social-links a:hover {
  color: white;
}

/* ========== 4. Header ========== */
.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  width: 180px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header-actions {
  display: flex;
  align-items: center;
}

.search-toggle {
  font-size: 1.2rem;
  margin-right: 20px;
  color: var(--text-color);
}

/* ========== 5. Navigation & Mega Menu ========== */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu {
  display: flex;
  align-items: center;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  padding: 25px 15px;
  color: var(--text-color);
  font-weight: 600;
  display: block;
}

.main-menu > li > a:hover,
.main-menu > li > a.active {
  color: var(--accent-color);
}

/* Dropdown Menu */
.main-menu .has-dropdown > a:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 0.8rem;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: white;
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 99;
}

.main-menu .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  padding: 12px 20px;
  display: block;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background-color: var(--light-color);
  color: var(--accent-color);
}

/* Mega Menu */
.has-mega-menu {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--box-shadow);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 99;
}

.main-menu .has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.mega-menu-column h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.mega-menu-column ul li {
  margin-bottom: 10px;
}

.mega-menu-column ul li a {
  color: var(--text-color);
  font-size: 0.95rem;
  display: inline-block;
  transition: var(--transition);
}

.mega-menu-column ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.mega-menu-image {
  position: relative;
}

.mega-menu-image img {
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

.mega-menu-image .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* ========== 6. Hero Section ========== */
.hero-section {
  position: relative;
  background-color: var(--light-color);
}

.hero-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 600px;
}

.hero-content {
  padding: 50px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent-color);
  display: block;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 500px;
}

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

.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* ========== 7. Features ========== */
.hero-features {
  background-color: white;
  box-shadow: var(--box-shadow);
  margin-top: -70px;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-box {
  padding: 30px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-box:last-child {
  border-right: none;
}

.feature-box:hover {
  background-color: var(--light-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========== 8. About Section ========== */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.about-content h2:after {
  left: 0;
  transform: none;
}

.feature-list {
  margin: 25px 0;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.feature-list i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background-color: var(--accent-color);
  color: white;
  padding: 20px 30px;
  border-radius: 5px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.experience-badge span {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.experience-badge p {
  color: white;
  margin: 0;
  font-weight: 500;
}

/* ========== 9. Products Section ========== */
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-category {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-category:hover {
  transform: translateY(-10px);
}

.category-image {
  height: 200px;
  overflow: hidden;
}

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

.product-category:hover .category-image img {
  transform: scale(1.1);
}

.category-content {
  padding: 20px;
}

.category-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.category-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 8px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* ========== 10. Featured Products ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-details {
  padding: 20px;
}

.product-details h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-details p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========== 11. Services Section ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover:before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .read-more {
  color: white;
}

.service-card:hover .service-icon {
  background-color: white;
  color: var(--accent-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

/* ========== 12. Testimonials ========== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin: 20px;
}

.testimonial-content {
  padding: 30px;
  position: relative;
}

.quote-icon {
  color: rgba(249, 115, 22, 0.1);
  font-size: 3rem;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background-color: var(--light-color);
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid white;
}

.author-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-details span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========== 13. CTA Section ========== */
.cta-section {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ========== 14. Partners ========== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

.partner-logo {
  text-align: center;
  padding: 20px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ========== 15. Footer ========== */
.site-footer {
  background-color: var(--dark-color);
  color: white;
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-widget h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-info a:hover {
  color: white;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

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

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-left: 20px;
}

.footer-bottom-links a:hover {
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ========== 16. Responsive Styles ========== */
@media (max-width: 1200px) {
  .hero-slide {
    min-height: 500px;
  }

  .hero-content {
    padding: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .mega-menu-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .mega-menu-image {
    display: none;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

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

  .hero-content {
    padding: 60px 20px;
    order: 2;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    height: 400px;
    order: 1;
  }

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

  .feature-box {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }

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

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

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* Mega Menu Responsive */
  .mega-menu-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .top-bar .container {
    flex-direction: column;
  }

  .contact-info {
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 0 30px;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 99;
    justify-content: flex-start;
  }

  .main-nav.active {
    right: 0;
  }

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .main-menu > li {
    width: 100%;
  }

  .main-menu > li > a {
    padding: 12px 25px;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  /* Mobile Dropdown */
  .mobile-dropdown-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 5;
  }

  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
  }

  .dropdown li a {
    padding-left: 40px;
  }

  .main-menu .has-dropdown.active .dropdown {
    display: block;
  }

  /* Mobile Mega Menu */
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .main-menu .has-mega-menu.active .mega-menu {
    display: block;
  }

  .mega-menu-column {
    margin-bottom: 15px;
  }

  .mega-menu-image {
    display: none;
  }

  /* Other Responsive Changes */
  .hero-features {
    margin-top: 0;
    border-radius: 0;
  }

  .product-category-grid,
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

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

  .footer-widgets {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
  }

  .copyright {
    margin-bottom: 15px;
  }

  /* Menu Toggle Button */
  body.menu-open {
    overflow: hidden;
  }
}

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

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info a {
    margin-right: 0;
  }

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

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom-links a {
    margin: 0;
  }

  .top-bar {
    display: none;
  }
}
