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

:root {
  --primary: #00736f;
  --primary-dark: #005955;
  --primary-light: #18aaa2;
  --black: #111111;
  --text: #333333;
  --muted: #666666;
  --light: #f8f9fa;
  --border: #e5e7eb;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  background: var(--white);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar--hidden {
  transform: translateY(-110%);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 74px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.35em;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  transition: color 0.3s;
}

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

.cta-btn {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 115, 111, 0.35);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8em;
  cursor: pointer;
  color: var(--primary);
}

/* Hero */
.hero {
  margin-top: 98px;
  min-height: 90vh;
  background: linear-gradient(
    135deg,
    #070707 0%,
    var(--primary-dark) 55%,
    var(--primary) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px);
  background-size:
    200px 200px,
    150px 150px,
    250px 250px;
  background-position:
    0 0,
    50px 60px,
    130px 270px;
  animation: droplets 8s linear infinite;
  opacity: 0.25;
  z-index: 1;
}

@keyframes droplets {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 10px, transparent 10px),
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 15px, transparent 15px),
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 8px, transparent 8px);
  background-size:
    300px 300px,
    400px 400px,
    250px 250px;
  background-position:
    20% 80%,
    80% 20%,
    40% 40%;
  animation: bubbles 15s ease-in-out infinite;
  opacity: 0.45;
  z-index: 1;
}

@keyframes bubbles {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-50px) scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

.hero-logo {
  width: min(420px, 90vw);
  max-height: 150px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 18px 25px;
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-size: 5em;
  margin-bottom: 5px;
  font-weight: 950;
  letter-spacing: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(255, 255, 255, 0.25);
  }
  50% {
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(255, 255, 255, 0.45);
  }
}

.hero-subtitle {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 35px;
  font-size: 1.1em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

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

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

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

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 25px;
  font-size: 1em;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 115, 111, 0.25);
}

.btn-large {
  width: 100%;
  padding: 18px 40px;
  font-size: 1.2em;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.5s;
}

.feature-badge:nth-child(3) {
  animation-delay: 1s;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  font-size: 2em;
  animation: bounce 2s infinite;
  color: white;
  z-index: 3;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 3em;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 900;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3em;
  color: var(--muted);
  margin-bottom: 60px;
}

/* Services */
.services {
  padding: 100px 20px;
  background: white;
}

.service-category {
  margin-bottom: 24px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-dropdown {
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.service-dropdown[open] {
  border-color: var(--primary);
  box-shadow: 0 12px 35px rgba(0, 115, 111, 0.14);
}

.service-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 34px;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #eef7f6 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.service-dropdown summary::-webkit-details-marker {
  display: none;
}

.service-dropdown summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.service-dropdown[open] summary::after {
  content: "−";
}

.service-dropdown .services-grid {
  padding: 34px;
}

.category-title {
  font-size: 2.5em;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 800;
}

.service-dropdown .category-title {
  margin-bottom: 0;
  text-align: left;
}

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

.service-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 115, 111, 0.18);
  border-color: var(--primary);
}

.service-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* About / Why Choose Combined Section */
.about-new-era {
  position: relative;
  padding: 120px 20px;
  background:
    linear-gradient(rgba(0, 25, 24, 0.78), rgba(0, 25, 24, 0.78)),
    url("images/about-cleaning-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.about-new-era::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(24, 170, 162, 0.35),
    transparent 35%
  );
  z-index: 1;
}

.about-new-era .container {
  position: relative;
  z-index: 2;
}

.about-combined-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  color: var(--primary-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-new-era .section-title {
  color: white;
  text-align: left;
  margin-bottom: 25px;
}

.about-new-era .about-text p {
  color: #0a0b0b;
  font-size: 1.1em;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-cta {
  margin-top: 35px;
  background: rgba(255, 255, 255, 0.96);
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.about-cta h3 {
  color: var(--primary);
  font-size: 1.8em;
  margin-bottom: 12px;
}

.about-cta p {
  color: var(--muted);
  margin-bottom: 22px;
}

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

.about-benefits-panel {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.about-benefits-panel h3 {
  color: var(--primary);
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
  font-weight: 900;
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-benefit-card {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 115, 111, 0.18);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 2.4em;
  margin-bottom: 12px;
}

.about-benefit-card h4 {
  color: var(--primary);
  font-size: 1.15em;
  margin-bottom: 10px;
  font-weight: 900;
}

.about-benefit-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95em;
}

/* Reviews */
.reviews {
  padding: 70px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
}

.reviews-label,
.gallery-label {
  text-align: center;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reviews .section-title {
  max-width: 900px;
  margin: 0 auto 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.reviews .section-subtitle {
  max-width: 850px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.reviews-showcase {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 45px rgba(0, 115, 111, 0.12);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-slide {
  min-width: 100%;
}

.review-slide {
  padding: 32px 40px;
  background:
    radial-gradient(
      circle at top right,
      rgba(24, 170, 162, 0.12),
      transparent 34%
    ),
    white;
}

.review-card {
  max-width: 680px;
  margin: 0 auto;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-light)
  );
  color: white;
  font-size: 0.95rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(0, 115, 111, 0.22);
}

.review-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.review-stars {
  color: #f8b400;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.review-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: var(--primary);
  cursor: pointer;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
  transition: all 0.25s ease;
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn--prev {
  left: -21px;
}

.carousel-btn--next {
  right: -21px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 20px 0 0;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #b7d8d6;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot.active {
  width: 26px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 768px) {
  .reviews {
    padding: 55px 16px;
  }

  .reviews-showcase {
    max-width: 100%;
  }

  .review-slide {
    padding: 28px 24px;
  }

  .review-card p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .carousel-btn--prev {
    left: -8px;
  }

  .carousel-btn--next {
    right: -8px;
  }
}

@media (max-width: 480px) {
  .reviews .section-title {
    font-size: 1.75rem;
  }

  .reviews .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .review-slide {
    padding: 24px 20px;
  }

  .review-header {
    align-items: flex-start;
  }

  .review-avatar {
    width: 42px;
    height: 42px;
  }

  .review-card h3 {
    font-size: 1.1rem;
  }

  .review-card p {
    font-size: 0.94rem;
  }
}
/* Gallery */
.gallery {
  padding: 100px 20px;
  background: white;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 12px 28px;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.3s ease;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 115, 111, 0.18);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--black);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 115, 111, 0.22);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-video::before {
  content: "▶";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 900;
  pointer-events: none;
}

.gallery-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 18px 18px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 900;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.gallery-item.is-hidden {
  display: none;
}

/* Contact */
.contact {
  padding: 100px 20px;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  grid-column: 1 / 2;
  grid-row: 1;
}

.contact-form-wrapper h3 {
  font-size: 2em;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1em;
  transition: border-color 0.3s;
  font-family: inherit;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-cards {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.contact-card.highlight {
  background: linear-gradient(135deg, var(--black) 0%, var(--primary) 100%);
  color: white;
}

.contact-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.5em;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 800;
}

.contact-card.highlight h3,
.contact-card.highlight p {
  color: white;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-card.logo-card {
  background: white;
  border: 3px solid var(--primary);
  border-radius: 15px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 15px;
  display: block;
}

.logo-tagline {
  font-size: 1.1em;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.25em;
  overflow-wrap: anywhere;
}

.email-link {
  font-size: 0.95em;
}

.contact-link:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.social-btn {
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--black);
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 100%;
  max-width: 230px;
  height: auto;
  margin-bottom: 20px;
  background: white;
  border-radius: 10px;
  padding: 12px;
}

.footer-section h3 {
  color: var(--primary-light);
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 950;
}

.footer-section h4 {
  color: var(--primary-light);
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 800;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-phone,
.footer-email {
  font-size: 1.05em;
  font-weight: 800;
  color: white;
  overflow-wrap: anywhere;
}

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

.footer-section ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .logo-text {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 4em;
  }

  .section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 968px) {
  .about-combined-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-new-era {
    background-attachment: scroll;
  }

  .about-new-era .section-title,
  .section-label {
    text-align: center;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .contact-form-wrapper,
  .contact-card.logo-card,
  .contact-info-cards {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }

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

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-container .cta-btn {
    display: none;
  }

  .logo img {
    height: 58px;
  }

  .hero {
    margin-top: 82px;
    min-height: 82vh;
  }

  .hero-logo {
    max-height: 120px;
    padding: 14px 16px;
  }

  .hero-title {
    font-size: 2.7em;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1.35em;
  }

  .hero-tagline {
    font-size: 1em;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .section-subtitle {
    font-size: 1.1em;
  }

  .category-title {
    font-size: 1.8em;
  }

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

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

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

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

  .about-new-era {
    padding: 80px 16px;
  }

  .about-benefits-panel {
    padding: 28px 18px;
  }

  .about-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2.1em;
  }

  .hero-subtitle {
    font-size: 1.1em;
  }

  .section-title {
    font-size: 1.65em;
  }

  .service-card,
  .about-benefit-card,
  .contact-card {
    padding: 25px;
  }

  .contact-logo {
    max-width: 220px;
  }

  .footer-logo {
    max-width: 190px;
    margin: 0 auto 20px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .service-dropdown summary {
    padding: 22px 20px;
  }

  .service-dropdown .services-grid {
    padding: 22px 18px;
  }

  .service-dropdown summary::after {
    min-width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .reviews,
  .gallery {
    padding: 80px 16px;
  }

  .reviews-showcase {
    margin-bottom: 14px;
  }

  .review-slide {
    padding: 28px 20px;
  }

  .review-header {
    align-items: flex-start;
  }

  .review-avatar {
    width: 54px;
    height: 54px;
    font-size: 1rem;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .carousel-btn--prev {
    left: 10px;
  }

  .carousel-btn--next {
    right: 10px;
  }

  .gallery-tabs {
    gap: 10px;
  }

  .gallery-tab {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

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

@media (max-width: 480px) {
  .review-card p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }
}
