/* Global Styles */
:root {
  --brand-color: #1a56a7; /* Dark blue from logo */
  --secondary-color: #0d3b7a; /* Darker blue */
  --accent-color: #3b82f6; /* Bright blue */
  --dark-color: #1f2937;
  --light-color: #f9fafb;
  --text-color: #374151;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --logo-orange: #f97316; /* Orange from logo */
  --info-bar-bg: #f8f9fa;
  --info-bar-text: #495057;
  --brand-color: #0d5a74;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--brand-color);
  color: white;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-orange {
  background-color: var(--brand-color);
}

/* Top Info Bar */
.info-bar {
  background-color: var(--info-bar-bg);
  color: var(--info-bar-text);
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #e9ecef;
}

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

.info-items {
  display: flex;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  color: var(--brand-color);
}

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

.social-links a {
  color: var(--info-bar-text);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--brand-color);
}

/* Navbar Styles */
.navbar {
  background-color: var(--brand-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 90, 116, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-color);
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links a {
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--logo-orange);
  transition: width 0.3s ease;
}

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

/* Redesigned Dropdown */
.dropdown {
  position: relative;
}

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

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style-type: none;
  padding: 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.dropdown-content li {
  margin: 0;
  padding: 0;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: var(--text-color);
  transition: all 0.2s ease;
}

.dropdown-content a i {
  margin-right: 10px;
  color: var(--brand-color);
  width: 20px;
  text-align: center;
}

.dropdown-content a:hover {
  color: var(--brand-color);
  background-color: rgba(26, 86, 167, 0.05);
  padding-left: 25px;
}

.dropdown-content li:not(:last-child) a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

.cta-buttons {
  display: flex;
  align-items: center;
}

.cta-buttons .btn {
  margin-left: 15px;
  background-color: #fff;
  color: var(--brand-color);
  font-weight: 750;
}

/* Hero Slider */
.hero {
  height: 100vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  font-weight: 800;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.2s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.4s;
}

.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Owl Carousel Customization */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.owl-nav button {
  background: rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: var(--brand-color) !important;
  transform: scale(1.1);
}

.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: var(--logo-orange) !important;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .info-bar {
    display: none;
  }

  .nav-links,
  .cta-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .navbar-container {
    padding: 15px 20px;
  }

  .logo {
    font-size: 1.3rem;
  }

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

  .hero {
    height: 90vh;
    min-height: 400px;
  }

  .hero-slide {
    background-position: center top;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow);
  padding: 20px;
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-links {
  list-style: none;
}

.mobile-links li {
  margin-bottom: 15px;
}

.mobile-links a {
  display: block;
  padding: 10px;
  font-weight: 600;
  color: var(--dark-color);
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-content {
  padding-left: 15px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-content.active {
  max-height: 500px;
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--dark-color);
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.mobile-cta-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-cta-buttons .btn {
  margin-bottom: 10px;
  text-align: center;
  margin-left: 0;
}

/* Values Section Styles */
.values-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--brand-color);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 86, 167, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon i {
  font-size: 2rem;
  color: var(--brand-color);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.value-card p {
  color: var(--text-color);
  line-height: 1.7;
}

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

  .section-header h2 {
    font-size: 2rem;
  }
}

/* About Us Section Styles */
.about-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: rgba(26, 86, 167, 0.03);
  z-index: 0;
  border-radius: 100px 0 0 0;
  transform: skewX(-20deg);
  transform-origin: top right;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}

.image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--brand-color);
  color: white;
  padding: 20px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(26, 86, 167, 0.3);
}

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

.experience-badge small {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-content {
  padding-left: 30px;
}

.section-subtitle {
  display: inline-block;
  color: var(--logo-orange);
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 40px;
  max-width: 90%;
}

.about-features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  margin-bottom: 25px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 86, 167, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--brand-color);
}

.feature-content h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-cta {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-video {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background: white;
  color: var(--dark-color);
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.btn-video i {
  margin-right: 10px;
  color: var(--brand-color);
}

.btn-video:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-left: 0;
  }

  .lead-text {
    max-width: 100%;
  }

  .about-section::before {
    width: 100%;
    border-radius: 0;
    transform: skewX(0);
    height: 40%;
    top: auto;
    bottom: 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-cta {
    flex-direction: column;
    gap: 15px;
  }

  .experience-badge {
    right: 15px;
    padding: 15px 20px;
  }

  .experience-badge span {
    font-size: 2rem;
  }
}

/* Video Popup Styles */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-popup.active {
  opacity: 1;
  visibility: visible;
}

.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: var(--brand-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.close-popup:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .video-popup-content {
    width: 95%;
    padding: 10px;
  }

  .close-popup {
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

/* ERA About Section - Modern Tech Style */
.era-about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.era-about-header {
  text-align: center;
  margin-bottom: 60px;
}

.era-subtitle {
  display: inline-block;
  background: var(--brand-color);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.era-title {
  font-size: 2.8rem;
  color: var(--dark-color);
  line-height: 1.2;
  position: relative;
  margin-bottom: 15px;
}

.era-title span {
  color: var(--brand-color);
  position: relative;
}

.era-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  opacity: 0.3;
}

.era-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

/* Image Column */
.era-image-col {
  position: relative;
}

.era-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.era-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.era-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.era-image-wrapper:hover img {
  transform: scale(1.05);
}

.era-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand-color);
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(26, 86, 167, 0.3);
  z-index: 2;
}

.badge-number {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 5px;
}

/* Content Column */
.era-mission {
  margin-bottom: 40px;
}

.era-mission p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  position: relative;
  padding-left: 30px;
}

.era-mission p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--brand-color);
  border-radius: 2px;
}

.era-expertise {
  margin-bottom: 40px;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.expertise-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 86, 167, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.expertise-icon i {
  font-size: 1.3rem;
  color: var(--brand-color);
}

.expertise-text h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.expertise-text p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.era-cta {
  display: flex;
  gap: 20px;
}

.era-btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.era-btn i {
  margin-right: 10px;
}

.era-btn-primary {
  background: var(--brand-color);
  color: white;
  box-shadow: 0 5px 15px rgba(26, 86, 167, 0.3);
}

.era-btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.era-btn-secondary {
  background: white;
  color: var(--dark-color);
  border: 1px solid #e2e8f0;
}

.era-btn-secondary:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  border-color: var(--brand-color);
}

/* Milestones */
.era-milestones {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.milestone-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.milestone {
  text-align: center;
  padding: 20px;
  position: relative;
}

.milestone:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: #e2e8f0;
}

.milestone-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1;
  margin-bottom: 10px;
}

.milestone-label {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .era-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .era-title {
    font-size: 2.3rem;
  }

  .era-badge {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .era-about-section {
    padding: 70px 0;
  }

  .era-cta {
    flex-direction: column;
    gap: 15px;
  }

  .milestone-track {
    grid-template-columns: 1fr 1fr;
  }

  .milestone:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .era-title {
    font-size: 2rem;
  }

  .milestone-track {
    grid-template-columns: 1fr;
  }

  .milestone::after {
    display: none !important;
  }
}

/* Products Section */
.era-products {
  padding: 100px 0;
  background: white;
  position: relative;
}

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

.section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-description {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view {
  background: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.quick-view:hover {
  background: var(--brand-color);
  color: white;
}

.product-details {
  padding: 20px;
}

.product-details h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.product-specs {
  margin-bottom: 20px;
}

.product-specs span {
  display: block;
  color: var(--text-color);
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-specs i {
  color: var(--brand-color);
  width: 20px;
  text-align: center;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

.price {
  font-weight: 700;
  color: var(--brand-color);
  font-size: 1.2rem;
}

.add-to-cart {
  background: var(--brand-color);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* Product Modal Styles */
.product-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.product-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-modal .modal-content {
  background: #fff;
  border-radius: 14px;
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 30px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #bbb;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}

.close-modal:hover {
  color: var(--brand-color);
}

/* Modal Body */
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.modal-image {
  border-radius: 12px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Modal Info */
.modal-info {
  padding-right: 10px;
}

.modal-info h2 {
  font-size: 2rem;
  color: #1c1c2c;
  margin-bottom: 10px;
  font-weight: 700;
}

.modal-price {
  font-size: 1.6rem;
  color: var(--brand-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.modal-description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.modal-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.modal-specs li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #444;
}

.modal-specs i {
  color: var(--brand-color);
  margin-right: 10px;
  font-size: 1rem;
  margin-top: 2px;
}

/* CTA Button */
.modal-add-to-cart {
  background: var(--brand-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.modal-add-to-cart:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.modal-image,
.modal-info {
  flex: 1 1 400px; /* flex-grow, flex-shrink, min-width */
}

/* Responsive Design */
@media (max-width: 992px) {
  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-info {
    padding: 0;
  }

  .modal-info h2 {
    font-size: 1.6rem;
  }

  .modal-price {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .modal-content {
    padding: 20px;
  }

  .modal-add-to-cart {
    width: 100%;
    justify-content: center;
  }
}

/* Owl Carousel Customization */
.products-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}

.products-slider .owl-nav button {
  pointer-events: all;
  background: white !important;
  color: var(--brand-color) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.products-slider .owl-nav button:hover {
  background: var(--brand-color) !important;
  color: white !important;
}

.products-slider .owl-dots {
  margin-top: 30px;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.products-slider .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd !important;
  transition: all 0.3s ease;
}

.products-slider .owl-dot.active {
  background: var(--brand-color) !important;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .modal-body {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .era-products {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-content {
    width: 90%;
    padding: 20px;
  }

  .products-slider .owl-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .product-footer {
    flex-direction: column;
    gap: 15px;
  }

  .add-to-cart {
    width: 100%;
    justify-content: center;
  }
}

/* Add this to your existing CSS */
.modal-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Keep the existing modal styles */
.product-modal.active .modal-content {
  display: flex;
}

/* Clients Section */
.era-clients {
  padding: 80px 0;
  background: #f9fafb;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.client-logo {
  position: relative;
  background: white;
  padding: 25px 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
  max-width: 180px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.client-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.client-logo:hover .client-tooltip {
  opacity: 1;
  bottom: -30px;
}

/* Brand Partners Section */
.era-partners {
  padding: 80px 0;
  background: white;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.partner-card {
  background: #f9fafb;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.partner-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
  border-color: var(--brand-color);
}

.partner-card img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.partner-details h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.partner-details p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Minimal Awards Section */
.era-awards-minimal {
  padding: 80px 0;
  background: #f9fafb;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.award-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--logo-orange);
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.award-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 86, 167, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--brand-color);
}

.award-content {
  flex: 1;
}

.award-content h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 8px;
  line-height: 1.4;
}

.award-content p {
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.award-year {
  display: inline-block;
  background: rgba(26, 86, 167, 0.1);
  color: var(--brand-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-card {
    padding: 25px;
  }
}

/* Footer */
.era-footer {
  background: #0a192f;
  color: white;
  font-size: 0.95rem;
}

.footer-main {
  padding: 80px 0 40px;
}

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

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

.footer-social a:hover {
  background: var(--brand-color);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--logo-orange);
}

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

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

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  color: var(--logo-orange);
  margin-top: 3px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .client-logos {
    gap: 15px;
  }

  .client-logo {
    padding: 15px 25px;
  }

  .award-year {
    position: static;
    margin-bottom: 10px;
    display: inline-block;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

[data-aos] {
  transition-property: transform, opacity;
}

/* Custom animation for value cards */
.value-card[data-aos] {
  transform: translateY(50px);
  opacity: 0;
  transition-property: transform, opacity;
}

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

/* Custom animation for image columns */
.about-image[data-aos="fade-right"],
.era-image-col[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
}

.about-image[data-aos="fade-right"].aos-animate,
.era-image-col[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

/* Custom animation for content columns */
.about-content[data-aos="fade-left"],
.era-content-col[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
}

.about-content[data-aos="fade-left"].aos-animate,
.era-content-col[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

/* Smooth transitions for all animations */
[data-aos],
[data-aos][data-aos][data-aos] {
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* Blog Section Styles */
.era-blog {
  padding: 100px 0;
  background-color: #f9fafb;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.blog-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--logo-orange);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.blog-category {
  color: var(--primary-color);
  font-weight: 600;
}

.blog-date {
  color: var(--text-color);
  opacity: 0.7;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--secondary-color);
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .era-blog {
    padding: 70px 0;
  }

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

  .blog-title {
    font-size: 1.2rem;
  }
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 15px 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 10px;
  color: #6c757d;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
  color: var(--text-color);
  opacity: 0.8;
}

/* Service Listing Header */
.service-listing-header {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.page-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Service Filters */
.service-filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-group,
.search-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-group label {
  font-weight: 600;
  color: var(--dark-color);
}

.form-select,
.form-input {
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-select {
  min-width: 200px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  appearance: none;
}

.form-input {
  flex-grow: 1;
  min-width: 250px;
}

.search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  background: rgba(26, 86, 167, 0.1);
  color: var(--primary-color);
  font-size: 2rem;
  padding: 25px;
  text-align: center;
}

.service-content {
  padding: 25px;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.service-content p {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--text-color);
}

.service-features i {
  color: var(--logo-orange);
  margin-right: 10px;
  font-size: 0.9rem;
}

.service-cta {
  padding: 20px 25px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 15px;
}

.btn-outline {
  background: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(26, 86, 167, 0.1);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-nav,
.page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-number:hover,
.page-nav:hover:not(.disabled) {
  background: rgba(26, 86, 167, 0.1);
  color: var(--primary-color);
}

.page-number.active {
  background: var(--primary-color);
  color: white;
}

.page-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .service-filters {
    flex-direction: column;
  }

  .filter-group,
  .search-group {
    width: 100%;
  }

  .service-card {
    grid-column: 1 / -1;
  }

  .service-cta {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 2rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }
}

/* Product Listing Page */
.product-listing-page {
  padding-bottom: 60px;
}

.product-listing-header {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.page-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Product Listing Layout */
.product-filters-row {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.filters-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.products-grid-container {
  flex-grow: 1;
}

/* Filter Widgets */
.filter-widget {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

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

.filter-list li {
  margin-bottom: 8px;
}

.filter-list li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}

.filter-list li a:hover,
.filter-list li.active a {
  color: var(--primary-color);
  font-weight: 600;
}

.price-range {
  padding: 15px 0;
}

.price-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-range {
  width: 100%;
  height: 8px;
  cursor: pointer;
}

.brand-filters,
.rating-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.btn-filter-apply {
  width: 100%;
  margin-top: 10px;
}

.btn-filter-reset {
  width: 100%;
  background: #f8f9fa;
  color: var(--text-color);
  margin-top: 10px;
  border: 1px solid #e9ecef;
}

/* Products Top Bar */
.products-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.sorting-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sorting-options label {
  font-weight: 600;
  color: var(--dark-color);
}

.view-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-options span {
  font-weight: 600;
  color: var(--dark-color);
}

.view-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--logo-orange);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  position: relative;
  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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-details {
  padding: 20px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product-category {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

.product-rating {
  color: #ffc107;
  font-size: 0.8rem;
}

.rating-count {
  color: var(--text-color);
  margin-left: 5px;
  opacity: 0.7;
}

.product-title {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.product-specs {
  margin: 15px 0;
}

.product-specs span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-specs i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.current-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.original-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #6c757d;
}

.btn-add-to-cart {
  padding: 8px 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-nav,
.page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-number:hover,
.page-nav:hover:not(.disabled) {
  background: rgba(26, 86, 167, 0.1);
  color: var(--primary-color);
}

.page-number.active {
  background: var(--primary-color);
  color: white;
}

/* List View */
.products-grid.list-view {
  display: block;
}

.products-grid.list-view .product-card {
  display: flex;
  height: 200px;
}

.products-grid.list-view .product-image {
  width: 250px;
  height: auto;
  flex-shrink: 0;
}

.products-grid.list-view .product-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.products-grid.list-view .product-footer {
  margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .product-filters-row {
    flex-direction: column;
  }

  .filters-sidebar {
    width: 100%;
  }

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

  .products-grid.list-view .product-card {
    height: auto;
    flex-direction: column;
  }

  .products-grid.list-view .product-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .products-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .page-title {
    font-size: 2rem;
  }
}

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

  .product-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Blog Listing Page */
.blog-listing-page {
  padding-bottom: 60px;
}

.blog-header {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.page-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Featured Post */
.featured-post-section {
  padding: 40px 0;
}

.featured-post {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-post-image {
  width: 50%;
  position: relative;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--logo-orange);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.featured-post-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.post-category {
  color: var(--primary-color);
  font-weight: 600;
}

.post-date,
.post-read-time {
  color: var(--text-color);
  opacity: 0.8;
}

.post-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--dark-color);
}

.post-excerpt {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-read-more {
  align-self: flex-start;
  padding: 12px 25px;
}

/* Blog Listing Layout */
.blog-listing-row {
  display: flex;
  gap: 30px;
}

.blog-posts-container {
  flex-grow: 1;
}

.blog-sidebar {
  width: 350px;
  flex-shrink: 0;
}

/* Blog Post Cards */
.blog-post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  display: flex;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
  width: 40%;
  flex-shrink: 0;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.post-excerpt {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.read-more-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: var(--secondary-color);
}

.read-more-link i {
  transition: transform 0.3s ease;
}

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

.post-stats {
  display: flex;
  gap: 15px;
  color: var(--text-color);
  font-size: 0.85rem;
  opacity: 0.8;
}

.post-stats i {
  margin-right: 5px;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-nav,
.page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-number:hover,
.page-nav:hover:not(.disabled) {
  background: rgba(26, 86, 167, 0.1);
  color: var(--primary-color);
}

.page-number.active {
  background: var(--primary-color);
  color: white;
}

.page-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

/* Search Widget */
.search-widget {
  display: flex;
}

.search-widget input {
  flex-grow: 1;
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px 0 0 6px;
  font-size: 0.95rem;
}

.search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0 15px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Category Widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.category-list li a:hover {
  color: var(--primary-color);
}

.category-list li a span {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

/* Popular Posts Widget */
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post {
  display: flex;
  gap: 15px;
}

.post-thumbnail {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-info h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.post-info h4 a {
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-info h4 a:hover {
  color: var(--primary-color);
}

.post-date {
  font-size: 0.8rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* Tag Cloud Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  display: inline-block;
  background: #f0f0f0;
  color: var(--text-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-cloud a:hover {
  background: var(--primary-color);
  color: white;
}

/* Newsletter Widget */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.95rem;
}

.btn-subscribe {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .featured-post-content {
    padding: 30px;
  }

  .post-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .featured-post {
    flex-direction: column;
  }

  .featured-post-image,
  .featured-post-content {
    width: 100%;
  }

  .blog-listing-row {
    flex-direction: column;
  }

  .blog-sidebar {
    width: 100%;
  }

  .blog-post-card {
    flex-direction: column;
  }

  .post-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blog-header {
    padding: 40px 0 30px;
  }

  .page-title {
    font-size: 2rem;
  }

  .featured-post-content {
    padding: 25px;
  }

  .post-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .post-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .sidebar-widget {
    padding: 20px;
  }
}

.service-hero {
  background: linear-gradient(
    135deg,
    var(--brand-color) 0%,
    var(--dark-color) 100%
  );
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/images/service-bg-pattern.png") center/cover no-repeat;
  opacity: 0.1;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.service-meta {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.service-meta-item i {
  color: var(--accent-color);
}

.service-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  margin: 3rem 0;
}

.service-image-container {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.service-image-container:hover img {
  transform: scale(1.03);
}

.service-content-area {
  line-height: 1.7;
  color: #334155;
}

.service-content-area h2 {
  color: var(--dark-color);
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.service-content-area h3 {
  color: var(--dark-color);
  margin: 1.5rem 0 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.service-content-area p {
  margin-bottom: 1.5rem;
}

.service-content-area ul,
.service-content-area ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.service-content-area li {
  margin-bottom: 0.5rem;
}

.service-content-area blockquote {
  border-left: 4px solid var(--accent-color);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
}

.service-sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.service-card h3 {
  color: var(--dark-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

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

.meta-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.meta-item i {
  color: var(--accent-color);
  margin-top: 3px;
}

.meta-content strong {
  display: block;
  color: var(--dark-color);
  margin-bottom: 0.2rem;
}

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

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

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

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .service-content-wrapper {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

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

.more-services {
  background: #f8fafc;
  padding: 4rem 0;
  margin-top: 3rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

.service-card-mini {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-card-image {
  height: 180px;
  overflow: hidden;
}

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

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

.service-card-content {
  padding: 1.5rem;
}

.service-card-content h3 {
  color: var(--dark-color);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.service-card-content p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.service-meta-mini {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-color);
  margin-bottom: 1rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
  gap: 0.8rem;
}

.service-link i {
  transition: all 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Product Hero Section */
.product-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-gallery {
  position: relative;
}

.main-product-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.thumbnail-container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--primary-color);
}

.product-detail-info {
  padding: 1rem;
}

.product-category {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #f59e0b;
}

.review-count {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 1.5rem 0;
}

.original-price {
  text-decoration: line-through;
  color: var(--gray-color);
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.discount-badge {
  background: #10b981;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.product-detail-meta {
  margin: 1.5rem 0;
}

.meta-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.meta-label {
  font-weight: 500;
  min-width: 120px;
  color: var(--dark-color);
}

.meta-value {
  color: #64748b;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 500;
}

.availability.out-of-stock {
  color: #ef4444;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.quantity-btn {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
}

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

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

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

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
}

/* Product Content Section */
.product-content-section {
  padding: 3rem 0;
}

.product-tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: #64748b;
  position: relative;
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* CKEditor Content Styling */
.product-description {
  line-height: 1.7;
  color: #334155;
}

.product-description h2,
.product-description h3,
.product-description h4 {
  color: var(--dark-color);
  margin: 1.5rem 0 1rem;
}

.product-description p {
  margin-bottom: 1.2rem;
}

.product-description ul,
.product-description ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.product-description li {
  margin-bottom: 0.5rem;
}

.product-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.product-description table th,
.product-description table td {
  padding: 0.75em;
  border: 1px solid #ddd;
}

.product-description table th {
  background-color: #f8f9fa;
}

.product-description img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border-radius: 4px;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
}

.product-specs tr:nth-child(even) {
  background: #f8fafc;
}

.product-specs td {
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
}

.spec-name {
  font-weight: 500;
  width: 30%;
}

/* Related Products */
.related-products {
  background: #f8fafc;
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: var(--dark-color);
}

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

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-card-image {
  height: 200px;
  padding: 1rem;
  background: white;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.product-card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.product-card-category {
  color: var(--gray-color);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.product-card-price {
  font-weight: 700;
  color: var(--dark-color);
  margin: 0.5rem 0;
}

.product-card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--primary-color);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: var(--secondary-color);
  gap: 0.8rem;
}

@media (max-width: 992px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    margin-bottom: 2rem;
  }
}

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(
    135deg,
    var(--brand-color) 0%,
    var(--dark-color) 100%
  );
  color: white;
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/images/blog-pattern.png") center/cover no-repeat;
  opacity: 0.1;
}

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

.blog-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-title-detail {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta-item i {
  color: var(--accent-color);
}

.blog-featured-image {
  margin: 2rem auto 0;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Blog Content Section */
.blog-content-section {
  padding: 3rem 0;
}

.blog-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* CKEditor Content Styling */
.blog-content {
  line-height: 1.8;
  color: #334155;
  font-size: 1.1rem;
}

.blog-content h2 {
  color: var(--dark-color);
  font-size: 1.8rem;
  margin: 2.5rem 0 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.blog-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.blog-content h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin: 2rem 0 1.2rem;
  font-weight: 600;
}

.blog-content h4 {
  color: var(--dark-color);
  font-size: 1.3rem;
  margin: 1.8rem 0 1rem;
  font-weight: 600;
}

.blog-content p {
  margin-bottom: 1.8rem;
}

.blog-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

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

.blog-content ul,
.blog-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.8rem;
  position: relative;
}

.blog-content ul li::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}

.blog-content ol {
  counter-reset: item;
  list-style-type: none;
}

.blog-content ol li::before {
  content: counter(item) ".";
  counter-increment: item;
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

.blog-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
  position: relative;
}

.blog-content blockquote::before {
  content: "\201C";
  font-size: 4rem;
  color: rgba(59, 130, 246, 0.1);
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  line-height: 1;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.blog-content table th,
.blog-content table td {
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.blog-content table th {
  background-color: #f1f5f9;
  font-weight: 600;
  text-align: left;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-content img:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.blog-content .image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

.blog-content .code-block {
  background: #1e293b;
  color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  overflow-x: auto;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.widget-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 0.8rem;
}

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

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

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent-color);
}

.author-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.author-bio {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
}

.popular-posts {
  list-style: none;
  padding: 0;
}

.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-image {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
}

.popular-post-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.popular-post-title a {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.popular-post-title a:hover {
  color: var(--primary-color);
}

.popular-post-date {
  font-size: 0.8rem;
  color: #64748b;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: #f1f5f9;
  border-radius: 50px;
  font-size: 0.8rem;
  color: #334155;
  transition: all 0.3s ease;
}

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

/* Blog Footer */
.blog-footer {
  padding: 2rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 3rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.blog-tag {
  padding: 0.5rem 1.2rem;
  background: #f1f5f9;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #334155;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background: var(--primary-color);
  color: white;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-label {
  font-weight: 500;
  color: var(--dark-color);
}

.share-buttons {
  display: flex;
  gap: 0.8rem;
}

.share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.share-button.facebook {
  background: #3b5998;
}

.share-button.twitter {
  background: #1da1f2;
}

.share-button.linkedin {
  background: #0077b5;
}

.share-button.pinterest {
  background: #e60023;
}

.share-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Related Posts */
.related-posts {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 0.8rem;
}

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

.post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.post-card-body {
  padding: 1.5rem;
}

.post-card-category {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.post-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.post-card-title a {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-card-title a:hover {
  color: var(--primary-color);
}

.post-card-excerpt {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Comments Section */
.comments-section {
  margin-bottom: 4rem;
}

.comment-form {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.form-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    margin-top: 3rem;
    position: static;
  }

  .blog-hero {
    padding: 3rem 0;
  }

  .blog-title {
    font-size: 2rem;
  }
}

/* Team Hero Section */
.team-hero {
  background: linear-gradient(
    135deg,
    var(--dark-color) 0%,
    var(--brand-color) 100%
  );
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/images/team-pattern.png") center/cover no-repeat;
  opacity: 0.1;
}

.team-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.team-hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.team-hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.team-card-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

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

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

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 1.5rem;
  color: white;
}

.team-card-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.team-card-position {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.team-card-social {
  display: flex;
  gap: 0.8rem;
}

.team-card-social a {
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-card-social a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.team-card-body {
  padding: 1.5rem;
}

.team-card-department {
  display: inline-block;
  background: #f1f5f9;
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.team-card-bio {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.team-card-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.team-card-contact i {
  color: var(--accent-color);
}

/* Departments Section */
.departments-section {
  background: #f8fafc;
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

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

.department-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.department-icon {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.department-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.department-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.department-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
}

/* CTA Section */
.team-cta {
  padding: 4rem 0;
  text-align: center;
}

.team-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.team-cta p {
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .team-hero h1 {
    font-size: 2.2rem;
  }

  .team-hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }
}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(
    135deg,
    var(--dark-color) 0%,
    var(--brand-color) 100%
  );
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/images/contact-pattern.png") center/cover no-repeat;
  opacity: 0.1;
}

.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact-hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}



.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-methods {
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-content p {
  color: #64748b;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.business-hours {
  margin-top: 3rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.8rem 0;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--dark-color);
}

.hours-table td:last-child {
  color: #64748b;
  text-align: right;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  height: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

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

/* Map Section */
.map-section {
  padding: 0 0 4rem;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Support Section */
.support-section {
  background: #f8fafc;
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.support-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.support-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.support-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.support-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-link:hover {
  gap: 0.8rem;
  color: var(--secondary-color);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-hero p {
    padding: 0 1rem;
  }
}

/* Page Hero Section */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--dark-color) 0%,
    var(--brand-color) 100%
  );
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/images/page-pattern.png") center/cover no-repeat;
  opacity: 0.1;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.page-hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumb-nav {
  background: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item::after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--gray-color);
}

.breadcrumb-item:last-child::after {
  display: none;
}

/* Page Content Section */
.page-content-section {
  padding: 3rem 0;
}

.page-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* CKEditor Content Styling */
.page-content {
  line-height: 1.8;
  color: #334155;
  font-size: 1.1rem;
}

.page-content h2 {
  color: var(--dark-color);
  font-size: 1.8rem;
  margin: 2.5rem 0 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.page-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.page-content h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin: 2rem 0 1.2rem;
  font-weight: 600;
}

.page-content h4 {
  color: var(--dark-color);
  font-size: 1.3rem;
  margin: 1.8rem 0 1rem;
  font-weight: 600;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

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

.page-content ul,
.page-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.8rem;
  position: relative;
}

.page-content ul li::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}

.page-content ol {
  counter-reset: item;
  list-style-type: none;
}

.page-content ol li::before {
  content: counter(item) ".";
  counter-increment: item;
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

.page-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
  position: relative;
}

.page-content blockquote::before {
  content: "\201C";
  font-size: 4rem;
  color: rgba(59, 130, 246, 0.1);
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  line-height: 1;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-content table th,
.page-content table td {
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.page-content table th {
  background-color: #f1f5f9;
  font-weight: 600;
  text-align: left;
}

.page-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.page-content img:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.page-content .image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

/* Info Cards */
.info-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    padding: 0 1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}
