:root {
  --homev1-primary: #E32D2D;
  --homev1-secondary: #1A2B4A;
  --homev1-secondary-2: #11233f;
  --homev1-text: #23324a;
  --homev1-muted: #5f6f86;
  --homev1-surface: #f3f5f8;
  --homev1-card: #ffffff;
  --homev1-radius: 16px;
  --homev1-btn-radius: 6px;
}

.homev1-reference,
.homev1-reference * {
  box-sizing: border-box;
}

.homev1-reference {
  font-family: "Open Sans", sans-serif;
  color: var(--homev1-text);
}

.homev1-reference .container,
.homev1-topbar .container,
.homev1-header .container,
.homev1-footer .container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.homev1-reference .section {
  padding: 68px 0;
}

.homev1-reference .section-title h2,
.homev1-reference h2,
.homev1-reference h3,
.homev1-reference h4,
.homev1-header,
.homev1-footer {
  font-family: "Poppins", sans-serif;
}

.homev1-reference .section-title h2 {
  color: var(--homev1-secondary);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  margin-bottom: 10px;
}

.homev1-reference .section-title p {
  color: var(--homev1-muted);
  max-width: 680px;
  margin: 0 auto 30px;
}

.homev1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--homev1-btn-radius);
  padding: 14px 28px;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s ease;
}

.homev1-btn-primary {
  background: var(--homev1-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(227, 45, 45, 0.3);
}

.homev1-btn-primary:hover {
  background: #ca2121;
}

.homev1-btn-whatsapp {
  background: #20b85a;
  color: #fff;
}

.homev1-btn-whatsapp:hover {
  background: #169649;
}

.homev1-btn-full {
  width: 100%;
}


.homev1-hero {
  min-height: 90vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(87, 139, 206, 0.22) 0%, rgba(87, 139, 206, 0) 35%),
    linear-gradient(135deg, #173258 0%, #0f2442 100%);
  color: #fff;
}

.homev1-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.homev1-hero-left {
  padding-top: 16px;
}

.homev1-kicker {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.homev1-hero-left h1 {
  color: #fff;
  font-size: clamp(3.25rem, 5.4vw, 4rem);
  line-height: 1.12;
  margin-bottom: 12px;
  font-weight: 800;
}

.homev1-hero-left p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 600px;
  margin-bottom: 24px;
}

.homev1-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.homev1-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.homev1-trust-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.homev1-trust-badges i {
  color: #ff9f9f;
}

.homev1-hero-right img {
  width: min(500px, 100%);
  border-radius: var(--homev1-radius);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.35);
  margin-left: auto;
  background: #fff;
}

.homev1-reference .service-highlights {
  padding: 22px 0 34px;
  background: #f5f7fb;
}

.homev1-reference .highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.homev1-reference .highlight-card {
  border: 1px solid #e1e8f3;
  border-radius: 12px;
  background: #fff;
  padding: 16px 10px;
  text-align: center;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.homev1-reference .highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #f1f5fc;
  color: var(--homev1-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.homev1-reference .highlight-card h4 {
  font-size: 0.86rem;
  margin: 0 0 4px;
  color: var(--homev1-secondary);
}

.homev1-reference .highlight-card p {
  font-size: 0.74rem;
  color: var(--homev1-muted);
  margin: 0;
}

.homev1-reference .about-section,
.homev1-reference .why-choose-section,
.homev1-reference .brands-section,
.homev1-reference .testimonials-section,
.homev1-reference .projects-section,
.homev1-reference .faq-section {
  background: var(--homev1-surface);
}

.homev1-reference .about-grid,
.homev1-reference .why-choose-grid,
.homev1-reference .brands-grid,
.homev1-reference .testimonials-grid,
.homev1-reference .projects-grid,
.homev1-reference .faq-grid {
  gap: 18px;
}

.homev1-reference .why-choose-card,
.homev1-reference .brand-item,
.homev1-reference .testimonial-card,
.homev1-reference .project-card,
.homev1-reference .faq-item,
.homev1-reference .about-stats .stat-item {
  background: #fff;
  border: 1px solid #e1e8f3;
  border-radius: var(--homev1-radius);
  box-shadow: 0 8px 18px rgba(26, 43, 74, 0.08);
}

.homev1-products,
.homev1-services {
  background: #fff;
  padding: 68px 0;
}

.homev1-products-grid,
.homev1-services-grid {
  display: grid;
  gap: 20px;
}

.homev1-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homev1-product-card {
  border: 1px solid #e1e8f3;
  border-radius: var(--homev1-radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(26, 43, 74, 0.08);
  background: #fff;
}

.homev1-product-image {
  height: 190px;
}

.homev1-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homev1-product-card .product-info {
  padding: 16px;
}

.homev1-product-card .product-brand {
  font-size: 0.78rem;
  color: var(--homev1-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.homev1-product-card .product-name {
  margin-bottom: 8px;
}

.homev1-product-card .product-name a {
  color: var(--homev1-secondary);
  text-decoration: none;
}

.homev1-product-card .product-specs {
  color: var(--homev1-muted);
  min-height: 40px;
  font-size: 0.86rem;
}

.homev1-product-card .product-price {
  margin: 10px 0;
}

.homev1-product-card .price-current {
  color: var(--homev1-primary);
  font-size: 1.08rem;
  font-weight: 700;
}

.homev1-services-banner {
  margin: 0 auto 24px;
  max-width: 900px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(26, 43, 74, 0.15);
}

.homev1-services-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.homev1-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homev1-service-card {
  border: 1px solid #e1e8f3;
  border-radius: var(--homev1-radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(26, 43, 74, 0.08);
}

.homev1-service-card .service-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #f2f6fc;
  color: var(--homev1-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.homev1-service-card h4 {
  margin: 0 0 8px;
  color: var(--homev1-secondary);
}

.homev1-service-card p {
  color: var(--homev1-muted);
  min-height: 45px;
}

.homev1-service-card .service-price {
  color: var(--homev1-primary);
  font-weight: 700;
}

.homev1-reference .booking-cta,
.homev1-reference .contact-cta {
  background: linear-gradient(135deg, var(--homev1-secondary) 0%, var(--homev1-secondary-2) 100%);
  color: #fff;
  padding: 64px 0;
}

.homev1-reference .booking-cta h2,
.homev1-reference .contact-cta h2 {
  color: #fff;
}

.homev1-reference .booking-cta p,
.homev1-reference .contact-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.homev1-footer {
  background: #0f1f36;
  padding-top: 60px;
}

.homev1-footer-grid {
  gap: 26px;
}

.homev1-footer .footer-title,
.homev1-footer .company-name {
  color: #fff;
}

.homev1-footer .company-tagline {
  color: #ff8f8f;
}

.homev1-footer .footer-links a,
.homev1-footer .footer-contact-item,
.homev1-footer .footer-brand p,
.homev1-footer .footer-bottom,
.homev1-footer .footer-bottom a,
.homev1-footer .footer-bottom span {
  color: #cbd6e8;
}

.homev1-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 18px;
  padding-top: 18px;
}

.homev1-footer-bottom .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1100px) {
  .homev1-reference .highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .homev1-hero {
    min-height: auto;
  }

  .homev1-hero-left {
    padding-top: 0;
  }

  .homev1-reference .highlights-grid,
  .homev1-services-grid,
  .homev1-products-grid {
    grid-template-columns: 1fr;
  }

  .homev1-services-banner img {
    height: 180px;
  }

  .homev1-footer-bottom .footer-bottom-links {
    flex-direction: column;
  }
}
