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

:root {
  --primary-blue: #00a6e8;
  --primary-dark: #0e6195;
  --text-dark: #333;
  --text-light: #666;
  --bg-white: #ffffff;
  --bg-gray: #f8f9fa;
  --border-color: #e0e0e0;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--bg-gray);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header Styles */
.header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  transition: transform 0.3s ease;
}

.logo-img {
  height: 40px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
}

.logo-text .compra {
  color: var(--primary-dark);
}

.logo-text .cargos {
  color: var(--primary-blue);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  background: var(--primary-dark);
  color: white;
  padding: 8px 15px;
  border-radius: 3px;
}

.nav-link.active::after {
  display: none;
}

.nav-link:hover::after,
.nav-link.on::after {
  width: 100%;
}

.nav-link.on {
  background: var(--primary-dark);
  color: white;
  padding: 8px 15px;
  border-radius: 3px;
}

.nav-link.on::after {
  display: none;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.globe-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.lang-links {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.lang-link {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.lang-link:hover {
  color: var(--primary-blue);
}
.lang-link.on {
  color: var(--primary-blue);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 1000px;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imageSlideInRight 1.5s ease-out forwards;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1200px;
  padding: 0 20px;
  color: white;
  opacity: 0;
  animation: slideInFromLeft 1s ease-out 0.5s forwards;
}

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

.hero-title {
  font-size: 54px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  opacity: 0;
  animation: slideInFromLeft 1s ease-out 0.8s forwards;
}

.hero-title .highlight {
  /*color: var(--primary-blue);*/
  font-size: 30px;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: white;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Section Styles */
.section {
  padding: 80px 20px;
  background: var(--bg-white);
}

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

.section-title {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
}

.partners-section .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

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

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

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

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.95), transparent);
  color: white;
}

.service-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
}

/* Service Detail Items for Services Page */
.service-detail-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 0;
  padding: 80px 40px;
  background: var(--bg-white);
}

.service-detail-item.service-detail-reverse {
  flex-direction: row-reverse;
}

.service-detail-item.service-detail-colored {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #34495e 100%);
  color: white;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 60px;
  padding-right: 60px;
}

.service-detail-image {
  flex: 0 0 45%;
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-detail-content {
  flex: 1;
}

.service-detail-content h2 {
  font-size: 19px;
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-blue);
  padding-bottom: 15px;
}

.service-detail-item.service-detail-colored .service-detail-content h2 {
  color: white;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
}

.service-detail-content ul li {
  line-height: 2;
  padding-left: 25px;
  position: relative;
}

.service-detail-content ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 12px;
}

/* Info Section */
.info-section {
  background: var(--primary-dark);
  color: white;
  margin-top: 60px;
  margin-bottom: 0px;
  padding: 100px 20px;
  position: relative;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), transparent);
}

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.info-image-wrapper {
  position: relative;
}

.info-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.info-text p {
  line-height: 1.8;
  margin-bottom: 15px;
}

/* About Section */
.about-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/about_bg.jpg") center / cover;
  color: white;
  padding: 100px 20px;
  height:1000px;
}

.about-content {
  max-width: 800px;
}

.about-title {
  font-size: 40px;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--primary-blue);
  padding-bottom: 15px;
}

.about-text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-indent: 40px;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-white);
}

.gallery-slider {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-nav {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.gallery-dot {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-blue);
  background: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  color: var(--text-dark);
}

.gallery-dot.active,
.gallery-dot:hover {
  background: var(--primary-blue);
  color: white;
}

/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
}

.blog-item {
  display: flex;
  gap: 25px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  align-items: flex-start;
}

.blog-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.blog-item-image {
  width: 200px;
  min-width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.blog-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-item-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
}

.blog-item-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light);
}

.blog-date,
.blog-views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-read-more {
  color: var(--primary-blue);
  font-weight: bold;
  margin-left: auto;
  transition: color 0.3s ease;
}

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

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
  padding: 30px 0;
}

.pagination-btn {
  padding: 10px 20px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary-dark);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-color);
  background: white;
  color: var(--text-dark);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-number:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.pagination-number.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.pagination-dots {
  color: var(--text-light);
  padding: 0 5px;
}

/* Blog Grid (for other pages) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
}

/* Blog Detail */
.blog-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-blue);
}

.article-header {
  margin-bottom: 40px;
}

.article-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.article-meta {
  color: var(--text-light);
  font-size: 14px;
}

.article-content {
  line-height: 1.8;
  font-size: 16px;
}

.article-content h6 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: var(--text-dark);
  font-weight: bold;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content img {
  max-width: 100%;
  margin: 30px 0;
  border-radius: 8px;
}

/* Contact Section */
.contact-section {
  background: var(--bg-gray);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--primary-dark);
  color: white;
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* Added styles for contact icons */
.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
}

.contact-card:hover .contact-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.8;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}

.form-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary-dark);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #1a252f;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 50px 20px 20px;
  border-top: 4px solid var(--primary-blue);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 0px;
}

.footer::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), #00c8ff, var(--primary-blue));
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* New styles for logo and company name in one line */
.footer-company-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 5px;
}

.footer-company h3 {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

/* Removed footer-company-desc styles as it's no longer needed */

.footer-nav h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
}

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

.footer-link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Optimize footer layout for mobile */
  .footer {
    padding: 40px 15px 20px;
    margin-top: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-company-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .footer-logo-img {
    width: 40px;
    height: 40px;
    padding: 4px;
  }

  .footer-company h3 {
    font-size: 16px;
    line-height: 1.3;
  }

  .footer-nav h4,
  .footer-social h4 {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }

  .footer-link {
    padding: 6px 0;
    font-size: 14px;
  }

  .footer-bottom {
    padding-top: 20px;
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Added Partners Section styles */
/* Partners Section */
.partners-section {
  background: var(--bg-gray);
  padding: 80px 20px;
  overflow: hidden;
}

.partners-section .section-title {
  text-align: center;
  display: block;
  margin: 0 auto 50px;
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll-partners 30s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-item {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0px;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

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

/* Scroll Animations */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .info-content {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 30px 20px;
  }

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

  .blog-item {
    flex-direction: column;
    gap: 15px;
  }

  .blog-item-image {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }

  .blog-item-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .blog-read-more {
    margin-left: 0;
    width: 100%;
  }

  .pagination {
    flex-direction: column;
    gap: 20px;
  }

  .pagination-numbers {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-detail-item,
  .service-detail-item.service-detail-reverse {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .service-detail-item.service-detail-colored {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-detail-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .service-detail-image img {
    height: 250px;
  }
}
