/* Global Variables */
:root {
  --primary-color: #0066ff;
  --secondary-color: #333;
  --accent-color: #f8f9fa;
  --text-color: #333;
  --heading-font: 'Inter', sans-serif;
  --body-font: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
}

/* Section Styles */
.section {
  padding: 0;
  margin: 0;
}

.category-section {
  padding: 20px 0;
  margin: 0;
  background: #f8f9fa;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  color: #333;
  font-weight: normal;
  margin: 0;
}

.section-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #0066ff, #f8f9fa);
  margin: 1rem 0 2rem 0;
  width: 100px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 85vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/ev-charger-hero.jpg') center center/cover no-repeat;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  padding-top: 5vw;
  padding-bottom: 5vw;
  text-align: center;
}

.hero-main-title {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease forwards;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
  margin-bottom: 0.7rem;
}

.hero-accent-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0066ff 0%, #00c6ff 100%);
  border-radius: 3px;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 2px 8px rgba(0,102,255,0.08);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #fff !important;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.service-card {
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: rgba(0,102,255,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066ff 0%, #00c6ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 1rem;
}

.service-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.services-conclusion {
  font-size: 1.2rem;
  color: #2C2C2C;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

/* Navigation Menu */
.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown ul {
  padding: 8px 0;
  min-width: 150px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff 80%, #f4f8ff 100%);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.10), 0 1.5px 6px rgba(44,44,44,0.07);
  border: 1.5px solid #e6f0fa;
  backdrop-filter: blur(8px);
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
  transform: translateY(10px) scale(0.98);
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  display: block;
  transform: translateY(0) scale(1);
}

.navmenu .dropdown ul li {
  position: relative;
}

.navmenu .dropdown ul li:not(:last-child)::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, #e6f0fa 60%, #fff 100%);
  margin: 0 8px;
}

.navmenu .dropdown ul li a {
  padding: 8px 18px 8px 14px;
  font-size: 0.95rem;
  color: #1a2330;
  border-radius: 7px;
  margin: 1px 4px;
  transition: background 0.22s, color 0.22s, padding-left 0.22s;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.navmenu .dropdown ul li a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #0099ff 0%, #00e0ff 100%);
  border-radius: 8px 0 0 8px;
  transition: width 0.22s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}

.navmenu .dropdown ul li a:hover {
  color: #0066ff;
  background: #f4f8ff;
  padding-left: 24px;
}

.navmenu .dropdown ul li a:hover::before {
  width: 4px;
}

.navmenu .dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navmenu .dropdown > a i {
  font-size: 18px;
  margin-left: 10px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.navmenu .dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Language Switcher */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
}

.language-switcher select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5em;
}

.language-switcher select:focus {
  outline: none;
  border-color: #2C2C2C;
  box-shadow: 0 0 0 0.2rem rgba(44,44,44,0.1);
}

/* Consultation Section */
.consultation {
  padding: 40px 0;
  margin-bottom: 0;
}

.consultation-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  color: #2C2C2C;
  margin-bottom: 1rem;
}

.consultation-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.consultation-benefits {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefits-header {
  margin-bottom: 2rem;
  text-align: center;
}

.benefits-header h3 {
  font-size: 1.5rem;
  color: #2C2C2C;
  margin-bottom: 0.5rem;
}

.benefits-header p {
  color: #666;
  font-size: 1rem;
}

.benefits-list {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #2C2C2C;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.benefit-item h4 {
  font-size: 1.1rem;
  color: #2C2C2C;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.consultation-guarantee {
  text-align: center;
  padding: 1rem;
  background: #eaf6ff !important;
  border-radius: 10px;
  margin-top: 2rem;
}

.consultation-guarantee i {
  font-size: 2rem;
  color: #0066ff !important;
  margin-bottom: 0.5rem;
}

.consultation-guarantee p {
  color: #0066ff !important;
  font-weight: 500;
  margin: 0;
}

/* Form Styles */
.consultation-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-label {
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 0.5rem;
}

.form-control {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #2C2C2C;
  box-shadow: 0 0 0 0.2rem rgba(44,44,44,0.1);
}

/* Button Styles */
.btn-custom,
.btn-primary,
.btn-book,
.btn-subscribe,
.download-btn {
  background: linear-gradient(135deg, #3E3A36 0%, #322E2A 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(62, 58, 54, 0.2),
             0 2px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-custom:hover,
.btn-primary:hover,
.btn-book:hover,
.btn-subscribe:hover,
.download-btn:hover {
  background: linear-gradient(135deg, #4A4642 0%, #3E3A36 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(62, 58, 54, 0.25),
             0 4px 10px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Footer Styles */
.footer {
  background: var(--secondary-color);
  color: #fff;
  padding-top: 80px;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }

  .consultation-benefits {
    margin-bottom: 2rem;
  }

  .navmenu .dropdown > a {
    position: relative;
    padding-right: 48px;
    background: none;
    border-radius: 12px;
    transition: background 0.2s;
  }

  .navmenu .dropdown > a i {
    font-size: 2rem !important;
    padding: 12px !important;
    margin-left: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 60%, #00c6ff 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,102,255,0.12);
  }

  .navmenu .dropdown ul {
    border-radius: 9px;
    padding: 5px 0;
  }

  .navmenu .dropdown ul li a {
    padding: 7px 12px 7px 10px;
    font-size: 0.93rem;
    margin: 1px 0;
  }

  .navmenu .dropdown ul li:not(:last-child)::after {
    margin: 0 5px;
  }
}

@media (max-width: 768px) {
  /* Existing mobile styles */
  .hero-section {
    min-height: 60vh;
    padding: 20px 0;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-main-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .hero-accent-bar {
    width: 60px;
    height: 3px;
    margin-bottom: 0.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }
  .services-section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .service-card {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  .service-icon i {
    font-size: 1.5rem;
  }
  .service-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .service-desc {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .services-conclusion {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .consultation-cta-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  .consultation-cta-icon {
    width: 24px;
    height: 24px;
  }
  .consultation-cta-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Partnership Page Specific Mobile Styles */
  .partnership-section {
    padding: 30px 0;
  }
  .partnership-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .partnership-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .partnership-card {
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 12px;
  }
  .partnership-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .partnership-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .partnership-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .benefits-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    gap: 0.4rem;
  }
  .contact-form {
    padding: 1.2rem;
    margin-top: 2rem;
    border-radius: 12px;
  }
  .form-label {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  .form-control {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  .btn-partnership {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  .partnership-section .shadow-sm {
    box-shadow: 0 2px 8px rgba(44,44,44,0.05) !important;
  }
  .partnership-section .shadow {
    box-shadow: 0 4px 16px rgba(44,44,44,0.08) !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition-delay: 0s !important;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.angled-divider {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #f8f9fa 60%, #0066ff 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
  margin: 0;
  padding: 0;
}

.angled-divider-reverse {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #0066ff 0%, #f8f9fa 40%);
  clip-path: polygon(0 0, 100% 100%, 100% 0, 0% 0);
  margin: 0;
  padding: 0;
}

.solutions-category-section {
  background: #fff;
  padding: 60px 0 40px 0;
}

.solutions-category-title {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  line-height: 1.1;
  margin-bottom: 0;
}

.solution-card {
  background: #f8f9fa;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1rem 1.5rem 1rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.solution-card:hover {
  box-shadow: 0 8px 32px rgba(0,102,255,0.10);
  transform: translateY(-4px) scale(1.03);
}

.solution-img-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.solution-label {
  font-size: 1.35rem;
  font-weight: 600;
  color: #222;
  margin-top: 0.5rem;
}

@media (max-width: 991px) {
  .solutions-category-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .solutions-category-section {
    padding: 40px 0 20px 0;
  }
  .solution-img-wrapper {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 767px) {
  .solutions-category-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .solution-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .solution-img-wrapper {
    width: 100px;
    height: 100px;
  }
}

/* Improved Our Products Card Styles */
.category-section .service-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2rem 1rem 1.5rem 1rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 420px;
  max-width: 350px;
  margin: 0 auto;
}

.category-section .service-card h3.category-title {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.category-section .service-image img {
  max-width: 160px;
  max-height: 120px;
  margin-bottom: 1.2rem;
  object-fit: contain;
}

.category-section .feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.category-section .feature-list li {
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.category-section .feature-list i {
  color: #0066ff;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .category-section .service-card {
    min-height: 340px;
    max-width: 100%;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .category-section .service-card h3.category-title {
    font-size: 1.5rem;
  }
  .category-section .feature-list li {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .category-section .service-card {
    min-height: 0;
    padding: 1rem 0.5rem;
    margin-bottom: 1.5rem;
  }
  .category-section .service-image img {
    max-width: 120px;
    max-height: 90px;
  }
}

/* Product Template Card Styles */
.product-template-card {
  max-width: 520px;
  min-height: 300px;
  padding: 2.2rem 2.5rem 2rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 6px 32px rgba(0,102,255,0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-template-card .service-image img {
  max-width: 150px;
  max-height: 150px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}
.product-template-card .product-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #232323;
  letter-spacing: -0.01em;
}
.product-template-card .product-desc {
  font-size: 1.18rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0;
  line-height: 1.5;
}
.product-template-card:hover {
  box-shadow: 0 16px 48px rgba(0,102,255,0.18);
  transform: translateY(-8px) scale(1.035);
}
@media (max-width: 991px) {
  .product-template-card {
    max-width: 100%;
    min-height: 220px;
    padding: 1.3rem 0.7rem 1.2rem 0.7rem;
  }
  .product-template-card .service-image img {
    max-width: 100px;
    max-height: 100px;
  }
  .product-template-card .product-title {
    font-size: 1.3rem;
  }
  .product-template-card .product-desc {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .product-template-card {
    min-height: 0;
    padding: 1rem 0.5rem;
    margin-bottom: 1.5rem;
    border-radius: 18px;
  }
  .product-template-card .service-image img {
    max-width: 70px;
    max-height: 70px;
  }
  .product-template-card .product-title {
    font-size: 1.1rem;
  }
  .product-template-card .product-desc {
    font-size: 0.95rem;
  }
}

/* Certifications & Quality Section Styles */
.certifications-quality-section {
  background: #f8f9fa;
  padding: 60px 0 40px 0;
}
.certifications-quality-section .section-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.2rem;
}
.certifications-quality-section .lead {
  color: #444;
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.cert-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 10px;
  transition: transform 0.3s ease;
}
.cert-logo:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cert-logo {
    width: 50px;
    height: 50px;
    margin: 0 6px;
  }
}

.sent-message {
  color: #0066ff !important;
  padding: 1rem;
  background: #eaf6ff !important;
  border-radius: 8px;
}

.consultation-cta-btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  background: #42a5f5;
  color: #1a2330;
  font-weight: 600;
  font-size: 1.35rem;
  padding: 16px 36px 16px 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,102,255,0.10);
  text-decoration: none;
  gap: 10px;
  z-index: 10;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.18s;
}
.consultation-cta-btn:hover {
  background: #2196f3;
  color: #fff;
  box-shadow: 0 4px 16px rgba(66,165,245,0.18);
  transform: translateY(-1px) scale(1.03);
}
.consultation-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2330;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  margin-left: 12px;
  transition: background 0.18s;
}
.consultation-cta-btn:hover .consultation-cta-icon {
  background: #0066ff;
}
.consultation-cta-icon svg {
  stroke: #fff;
  width: 22px;
  height: 22px;
}
@media (max-width: 991px) {
  .consultation-cta-btn {
    left: 8px;
    bottom: 20px;
    font-size: 1.08rem;
    padding: 10px 20px 10px 16px;
    border-radius: 10px;
    gap: 6px;
  }
  .consultation-cta-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    margin-left: 7px;
  }
  .consultation-cta-icon svg {
    width: 15px;
    height: 15px;
  }
}

.ac-hero-header {
  background: #f7f6f3;
  padding: 64px 0 48px 0;
}
.ac-hero-header .category-title {
  font-size: 3rem;
  font-weight: 800;
  color: #232323;
  margin-bottom: 18px;
}
.ac-hero-subtitle {
  font-size: 1.35rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 38px;
}
.ac-hero-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.ac-feature-card {
  background: #fff;
  border: 1.5px solid #e6f0ea;
  box-shadow: 0 2px 16px rgba(67,197,158,0.07);
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 36px;
  font-size: 1.18rem;
  color: #232323;
  font-weight: 500;
  transition: box-shadow 0.2s, border 0.2s;
  will-change: transform, opacity;
}
.ac-feature-card:hover {
  box-shadow: 0 6px 32px rgba(67,197,158,0.13);
  border: 1.5px solid #43c59e;
}
.ac-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eafaf5;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
}
.ac-feature-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke: #43c59e;
}
@media (max-width: 700px) {
  .ac-hero-header {
    padding: 36px 0 24px 0;
  }
  .ac-hero-header .category-title {
    font-size: 2rem;
  }
  .ac-hero-features {
    gap: 14px;
  }
  .ac-feature-card {
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 18px;
  }
  .ac-feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }
  .ac-feature-icon svg {
    width: 18px;
    height: 18px;
  }
}

.premium-hero-header {
  background: linear-gradient(120deg, #f7f6f3 60%, #f9fafb 100%);
  padding: 64px 0 40px 0;
  box-shadow: 0 2px 24px rgba(44,44,44,0.04);
  border-radius: 0 0 32px 32px;
}
.premium-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #232323;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.premium-hero-accent {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #43c59e 0%, #0066ff 100%);
  border-radius: 3px;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 2px 8px rgba(67,197,158,0.10);
}
.premium-hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 700px) {
  .premium-hero-header {
    padding: 36px 0 18px 0;
    border-radius: 0 0 18px 18px;
  }
  .premium-hero-title {
    font-size: 2rem;
  }
  .premium-hero-accent {
    width: 48px;
    height: 4px;
    margin-bottom: 1rem;
  }
  .premium-hero-subtitle {
    font-size: 1.05rem;
  }
}

.main-hero-header {
  background: linear-gradient(120deg, #f7f6f3 60%, #f9fafb 100%);
  padding: 80px 0 50px 0;
  box-shadow: 0 2px 24px rgba(44,44,44,0.04);
  border-radius: 0 0 32px 32px;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2rem;
}

.main-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #232323;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.main-hero-accent {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #43c59e 0%, #0066ff 100%);
  border-radius: 3px;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 2px 8px rgba(67,197,158,0.10);
}

.main-hero-subtitle {
  font-size: 1.35rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.diagonal-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, #fff 50%);
  transform: translateY(50%);
  z-index: 1;
}

/* Ensure the main content is visible */
main {
  position: relative;
  z-index: 2;
}

/* Ensure the header is visible */
.header {
  position: relative;
  z-index: 1000;
}

/* Ensure the main hero header is visible */
.main-hero-header {
  position: relative;
  z-index: 2;
}

/* Ensure the container is visible */
.container {
  position: relative;
  z-index: 3;
} 