:root {
  --primary: #dc1616;
  --primary-hover: #b10f0f;
  --accent: #16a0dc;
  --bg-dark: #121212;
  --bg-medium: #191919;
  --bg-light: #f9f9f9;
  --bg-gray: #f4f5f6;
  --text-white: #ffffff;
  --text-muted: #ebebeb;
  --text-dark: #242424;
  --font-main: "Open Sans", sans-serif;
  --font-title: "Raleway", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Topbar */
.topbar {
  background-color: var(--primary);
  color: var(--text-white);
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  background-color: var(--bg-dark);
  position: relative;
  padding: 60px 0;
  color: var(--text-white);
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 500px;
}

.hero-subtitle {
  color: var(--text-white);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.hero-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin-left: 15px;
}

.hero-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--text-white);
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.google-rating-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.google-rating-text span.nota {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.google-rating-text strong {
  font-size: 15px;
  font-weight: 800;
  color: #222;
}

.google-rating-text span.no-google {
  font-weight: 500;
  color: #444;
}

.google-rating-stars {
  display: flex;
  gap: 4px;
  color: #fbbc05;
  font-size: 16px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-title);
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-checks {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-checks div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-checks div i {
  color: var(--text-white);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Service Info Section */
.service-info {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.service-card {
  background-color: #ebebeb;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-text {
  padding: 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-text h3 {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-card-text h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-card-text p {
  color: var(--text-dark);
  font-size: 16px;
}

.highlight-red {
  color: var(--primary);
  font-weight: 600;
}

.highlight-blue {
  color: var(--accent);
  font-weight: 600;
}

.service-card-image {
  flex: 1;
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-col i {
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-col p {
  font-size: 14px;
  color: #666;
}

.service-cta {
  text-align: center;
  margin-top: 50px;
}

.service-cta h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-cta .hero-buttons {
  justify-content: center;
}

/* Features Grid (Dark Section) */
.features-grid-section {
  background-color: var(--bg-medium);
  padding: 80px 0;
  color: var(--text-white);
  text-align: center;
}

.features-grid-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.features-grid-section p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.grid-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 20px;
  margin-bottom: 60px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-item i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.grid-item span {
  font-size: 15px;
  font-weight: 600;
}

.features-grid-section .service-cta {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 0;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-gray);
  padding: 80px 0;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.google-rating {
  background-color: white;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 600;
  gap: 10px;
}

.google-rating img {
  height: 24px;
}

.google-rating .stars {
  color: #fbbc05;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  text-align: left;
}

.testimonial-card .stars {
  color: #fbbc05;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: nowrap;
}

.testimonial-card .stars i {
  flex-shrink: 0;
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  font-weight: 600;
  font-size: 14px;
}

/* About Us Section */
.about-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  color: var(--text-white);
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 15px;
}

.about-img-box {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.about-img-box.large {
  grid-row: span 2;
}

/* Bottom CTA */
.bottom-cta {
  background-color: white;
  padding: 80px 0;
  text-align: center;
}

.bottom-cta img.logo {
  height: 60px;
  margin-bottom: 20px;
}

.bottom-cta p.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.bottom-cta h2 {
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

.bottom-cta .hero-buttons {
  justify-content: center;
  margin-bottom: 40px;
}

.bottom-cta-img {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bottom-cta-img img.fade-1 {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-cta-img img.fade-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: crossfade 4s infinite alternate;
}

@keyframes crossfade {

  0%,
  35% {
    opacity: 0;
  }

  65%,
  100% {
    opacity: 1;
  }
}

/* Footer */
footer {
  background-color: var(--bg-medium);
  color: var(--text-white);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-info {
  flex: 1;
}

.footer-info img.logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-info h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 16px;
  transition: color 0.3s;
}

.social-link i {
  font-size: 24px;
}

.social-link:hover {
  color: var(--text-white);
}

.footer-map {
  flex: 1;
  max-width: 500px;
  height: 200px;
  background-color: #333;
  border-radius: 8px;
  overflow: hidden;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #888;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero {
    padding: 30px 0;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-image img {
    max-height: 300px;
  }

  .bottom-cta-img {
    max-width: 90%;
  }

  .hero-subtitle {
    justify-content: center;
    margin-bottom: 15px;
  }

  .hero-subtitle::after {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-checks {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card-image {
    min-height: 250px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .grid-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-container {
    flex-direction: column;
  }

  .about-text {
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-map {
    width: 100%;
    max-width: 100%;
  }

  .about-images {
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 20px 0 40px 0;
  }

  .hero-content h2 {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .hero h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }

  .hero-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
  }

  .hero-image {
    width: 100%;
    margin-top: 15px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .bottom-cta h2 {
    font-size: 32px;
  }

  .btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  .about-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
  }

  .about-img-box {
    width: 100%;
    height: 250px;
  }
}