:root {
  --primary: #0A7A4A; /* Xanh lá cao cấp */
  --primary-dark: #065F3A;
  --secondary: #0A7A4A; 
  --accent: #D4AF37; /* Vàng Champagne */
  --accent-hover: #C5A030;
  --background: #FFFFFF; /* Trắng */
  --surface: #F8F9FA; /* Xám nhạt */
  --text-main: #1F2937;
  --text-muted: #4B5563;
  --border: #E5E7EB;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

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

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

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

/* Header & Topbar */
.top-bar {
  background-color: var(--secondary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

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

.top-bar-left strong {
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  gap: 1rem;
}

.top-bar-right a {
  color: white;
  opacity: 0.8;
}

.top-bar-right a:hover {
  opacity: 1;
}

.header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 90px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.search-container {
  display: flex;
  align-items: center;
}

.search-input {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 9999px 0 0 9999px;
  outline: none;
  font-family: inherit;
}

.search-btn {
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0 9999px 9999px 0;
  cursor: pointer;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Services Section */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.services {
  padding: 5rem 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: var(--surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: #111827;
  color: #D1D5DB;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col p {
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  color: #D1D5DB;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .search-container {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
}

/* Page Specific Styles (About, Services, etc) */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.page-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.content-section {
  padding: 4rem 0;
  background-color: white;
}
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.content-block {
  margin-bottom: 3rem;
}
.content-block h2 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}
.content-block h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.content-block p, .content-block li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.content-block ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

/* -----------------------------------
   HOMEPAGE SPECIFIC STYLES
   ----------------------------------- */

/* Section Typography */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Section 1: Hero Banner */
.hero-new {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background-image: url('https://images.unsplash.com/photo-1628151015968-3a4429e9ef04?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}
.hero-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7); /* Tăng độ tối của lớp overlay để làm nổi bật chữ */
}
.hero-new .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.hero-new h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #ffffff !important;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5); /* Thêm đổ bóng chữ */
}
.hero-new h2 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-new p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-accent {
  background-color: var(--accent);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Section 2: Features */
.features-section {
  padding: 5rem 0;
  background-color: var(--surface);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Section 3: Products */
.products-section {
  padding: 5rem 0;
}
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.product-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.product-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.product-card:hover .product-link {
  gap: 1rem;
}

/* Section 4: Solution */
.solution-section {
  padding: 5rem 0;
  background-color: var(--primary);
  color: white;
}
.solution-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.solution-text {
  flex: 1;
  min-width: 300px;
}
.solution-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.solution-text ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.solution-text li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}
.solution-text li i {
  color: var(--accent);
  font-size: 1.2rem;
}
.solution-img {
  flex: 1;
  min-width: 300px;
}
.solution-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Section 5: Timeline */
.timeline-section {
  padding: 5rem 0;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.timeline-item {
  position: relative;
}
.timeline-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 5px var(--accent);
}

/* Section 6: Gallery */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--surface);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 122, 74, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay h3 {
  color: white;
  transform: translateY(20px);
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

/* Section 7: Services List */
.services-section {
  padding: 5rem 0;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.service-tag {
  padding: 1rem 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  cursor: pointer;
}
.service-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Section 8: Partners Carousel */
.partners-section {
  padding: 3rem 0;
  background-color: var(--surface);
  overflow: hidden;
}
.partners-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: scroll 20s linear infinite;
  width: max-content;
}
.partners-track img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}
.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section 9: News */
.news-section {
  padding: 5rem 0;
}

/* Section 10: CTA */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ---- COMPREHENSIVE RESPONSIVE DESIGN ---- */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text p { font-size: 1.1rem; }
  .content-section, .features, .products, .solutions, .gallery, .news-section, .cta-section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  
  /* Make inline flex rows wrap properly on mobile */
  div[style*="display: flex; gap: 4rem"], 
  div[style*="display: flex; gap: 3rem"],
  div[style*="display: flex; gap: 2rem"] {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  /* Reset widths for inline flex items */
  div[style*="flex: 1"], div[style*="flex: 2"] {
    flex: none !important;
    width: 100% !important;
  }
  
  /* Adjust structural paddings */
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .page-header {
    padding: 3rem 1rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .content-block h2 {
    font-size: 1.5rem;
  }
}

/* Google Translate Customization */
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 4px;
    padding: 2px 5px !important;
    font-family: 'Inter', sans-serif !important;
}
.goog-te-gadget-simple .goog-te-menu-value span {
    color: white !important;
}
.goog-te-gadget-icon {
    display: none !important;
}
body {
    top: 0 !important;
}
.skiptranslate iframe {
    display: none !important;
}

/* Dropdown Menu Styles */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 260px;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
    z-index: 10000;
    border-radius: 8px;
    border-top: 3px solid var(--primary);
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.dropdown-content a {
    color: var(--text-main) !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: all 0.2s;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--primary) !important;
    padding-left: 25px !important;
}

@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #f8f9fa;
        margin-top: 0.5rem;
        border-top: none;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav-links > a, .dropdown > a {
        padding: 1rem 0;
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--border);
    }
    .dropdown {
        width: 100%;
    }
}

/* Mega Menu Styles */
.mega-dropdown {
    position: static;
}
.mega-menu-content {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    border-top: 3px solid var(--primary);
    padding: 2.5rem 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}
.mega-dropdown:hover .mega-menu-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.mega-menu-grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}
.mega-menu-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.mega-menu-item {
    display: flex;
    gap: 1rem;
}
.mega-item-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}
.mega-item-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.mega-item-text h3 a {
    color: var(--primary) !important;
    padding: 0 !important;
    border: none !important;
    font-weight: 700;
}
.mega-item-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}
.mega-item-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-item-text ul li {
    margin-bottom: 0.4rem;
}
.mega-item-text ul li a {
    color: var(--text-main) !important;
    padding: 0 !important;
    font-size: 0.85rem;
    border: none !important;
    display: inline-block;
    transition: color 0.2s;
}
.mega-item-text ul li a:hover {
    color: var(--primary) !important;
    background: transparent !important;
    padding-left: 5px !important;
}

@media (max-width: 1100px) {
    .mega-menu-grid {
        flex-wrap: wrap;
    }
    .mega-menu-col {
        min-width: 30%;
    }
}

@media (max-width: 992px) {
    .mega-dropdown {
        position: relative;
    }
    .mega-menu-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 1rem 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        background-color: #f8f9fa;
    }
    .mega-dropdown:hover .mega-menu-content {
        display: block;
    }
    .mega-menu-grid {
        flex-direction: column;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    .mega-menu-col {
        gap: 1.5rem;
    }
    .mega-menu-item {
        border-bottom: 1px solid var(--border);
        padding-bottom: 1.5rem;
    }
}


