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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #fff;
}

a {
  text-decoration: none;
  cursor: pointer;
}
/* ── FLOATING WA ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.wa-float .pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483647;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8edf2;
}

.logo {
  color: #0f2027;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.logo span {
  color: #25d366;
}

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

.nav-location {
  color: #7a8fa0;
  font-size: 14px;
}

.lang-switcher {
  display: flex;
  gap: 6px;
}

.lang-btn {
  border: 2px solid #d4e0ea;
  background: #fff;
  color: #3a5568;
  border-radius: 10px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  line-height: 1;
}

.lang-btn .flag {
  font-size: 18px;
  line-height: 1;
}

.lang-btn.active {
  background: #0f2027;
  color: #fff;
  border-color: #0f2027;
  box-shadow: 0 2px 8px rgba(15, 32, 39, 0.25);
}

.lang-btn:hover:not(.active) {
  background: #f0f4f8;
  border-color: #aec4d8;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, #4e4b4b93, #4e4b4b99, #4e4b4b79),
    url("./img/bcg-hero-tablet.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  /*filter: brightness(0.4);
  /*background: #eef4fa;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

@media (min-width: 768px) {
  .hero {
    background:
      linear-gradient(to right, #4e4b4b93, #4e4b4b99, #4e4b4b79),
      url("./img/bcg-hero-tablet.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 1200px) {
  .hero {
    background:
      linear-gradient(to right, #4e4b4b93, #4e4b4b99, #4e4b4b79),
      url("./img/bcg-hero-desctop.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }
}
.hero h1 {
  color: #0f2027;
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero p.sub {
  /*color: #3a5568;
 */
  color: #1c2932;
  font-weight: 450;
  font-size: 17px;
  margin-bottom: 8px;
}

.hero p.location {
  /* color: #7a8fa0;*/

  color: #d2d8dc;
  /*color: #dce5ecf7;*/
  font-size: 14px;
  margin-bottom: 44px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.1s;
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.reply-note {
  /*color: #94a8b8;*/
  color: #d2d8dc;
  font-size: 13px;
  margin-top: 14px;
}

.price-note {
  display: inline-block;
  margin-top: 40px;
  background: #fff3cd;
  border: 1px solid #f0d87a;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #7a5800;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d4e0ea;
  border-radius: 50px;
  font-size: 13px;
  color: #3a5568;
  backdrop-filter: blur(4px);
}

.lang-badge .badge-flags {
  display: flex;
  gap: 5px;
  font-size: 18px;
  line-height: 1;
}

.lang-badge .badge-text {
  font-weight: 500;
}

.trust-strip {
  margin-top: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #d4e0ea;
  padding-top: 28px;
}

.trust-strip span {
  color: #3a5568;
  color: #d2d8dc;
  font-size: 14px;
}

.trust-strip span::before {
  content: "✓ ";
  color: #25d366;
}
.badge-flags {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-flags span {
  width: 16px;
  height: 12px;
  display: inline-flex;
  /* border-radius: 2px; */
  overflow: hidden;
  /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08); */
}

.badge-flags span svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── SECTIONS ── */
.section-wrap {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a8fa0;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: #0f2027;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-sub {
  text-align: center;
  color: #3a5568;
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ── SERVICES ── */
.services-bg {
  background: #f4f8fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #eee;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f2027;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 13px;
  color: #3a5568;
  line-height: 1.6;
}

.service-card.any {
  background: linear-gradient(135deg, #0f2027, #2c5364);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card.any .service-name {
  color: #fff;
  font-size: 16px;
}

.service-card.any .service-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.service-card.any .wa-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); */
  grid-template-columns: repeat(2, 370px);
  gap: 20px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}

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

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2ecf3;
  /* height: 300px; */
}
.photo-placeholder {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.slides img.active {
  opacity: 1;
}

.photo-placeholder button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  background: rgba(0, 0, 0, 0.35);
  color: white;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
}

.photo-placeholder .prev {
  left: 8px;
}

.photo-placeholder .next {
  right: 8px;
}
.portfolio-card:hover .photo-placeholder button {
  opacity: 1;
}
.photo-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.65;
}

.photo-placeholder button {
  z-index: 999;
}

.card-info {
  padding: 14px 18px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f2027;
}

/* ── REVIEWS ── */
.reviews-bg {
  background: #f4f8fb;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.stars {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-text {
  color: #2a6c9c;
  font-size: 14px;
  transition: transform 0.5s ease;
}

a > .rating-text {
  text-decoration: underline;
}
a > .rating-text:hover,
a > .rating-text:focus {
  text-decoration: underline;
  color: #25d366;
  font-size: 15px;
}

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

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2ecf3;
}

.review-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: #1a2e3b;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.avatar.blue {
  background: #dbeafe;
  color: #1e40af;
}

.avatar.green {
  background: #d1fae5;
  color: #065f46;
}

.avatar.orange {
  background: #fef3c7;
  color: #92400e;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f2027;
}

.reviewer-location {
  font-size: 12px;
  color: #7a8fa0;
  margin-top: 2px;
}

.reviews-wrapper {
  position: relative;
  width: 100%;
}
.review-card {
  transition: all 0.3s ease;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  padding: 40px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    padding: 40px;
    justify-content: center;
  }
  .review-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .reviews-grid {
    display: block;
  }

  .review-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

.review-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.review-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.read-more {
  margin-top: 10px;

  background: none;
  border: none;

  font-size: 13px;
  font-weight: 500;

  color: #3a7bd5;
  cursor: pointer;

  padding: 0;
  padding-bottom: 10px;

  transition: opacity 0.2s ease;
}

.read-more:hover {
  opacity: 0.7;
}

.reviews-prev,
.reviews-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: #fff;
  border: 1px solid #e2ecf3;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.reviews-prev {
  left: -10px;
}

.reviews-next {
  right: -10px;
}
/* ── CTA ── */
.cta-section {
  background: #0f2027;
  padding: 90px 24px;
  text-align: center;
}

.cta-section .cta-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #25d366;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.cta-section p {
  color: #94a8b8;
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 20px 42px;
  font-size: 19px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.btn-wa-large:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.cta-reassure {
  color: #5a7a8a;
  font-size: 13px;
  margin-top: 18px;
}

/* ── FOOTER ── */
footer {
  background: #e2ecf3;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid #ccdae6;
}

footer .logo {
  font-size: 16px;
  color: #0f2027;
}

footer p {
  color: #7a8fa0;
  font-size: 13px;
}

@media (max-width: 600px) {
  nav {
    padding: 12px 16px;
  }

  .nav-location {
    display: none;
  }

  .trust-strip {
    gap: 16px;
  }

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

  .wa-float span {
    display: none;
  }

  .wa-float {
    padding: 14px;
    border-radius: 50%;
  }
}
