/* Basic resets and typography */
:root {
  --color-text: #1f2a2e;
  --color-bg: #f4f7f6;
  --color-surface: #ffffff;
  --color-accent: #2f5d50;
  --color-accent-dark: #21453a;
  --color-accent-soft: #deebe6;
  --color-section-tint: #e8f0ed;
  --color-border: #d5dfdb;
  --color-contact-start: #1d3234;
  --color-contact-end: #2f5d50;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h2 {
  color: var(--color-accent);
}

/* NAVBAR */
.navbar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  direction: ltr;
}
.navbar .logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  text-align: start;
}
.lang-toggle {
  display: inline-block;
  background: none;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 0.4rem;
  cursor: pointer;
  margin-left: 1rem;
  font-size: 0.9rem;
  text-decoration: none;
}
.lang-toggle:hover {
  background: var(--color-accent-soft);
  text-decoration: none;
}

/* HERO */
.hero {
  background: linear-gradient(
    135deg,
    var(--color-contact-end) 0%,
    var(--color-contact-start) 100%
  );
  color: #fff;
  text-align: center;
  padding: 6rem 1rem 8rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(244, 247, 246, 0) 0%,
    rgba(244, 247, 246, 0.5) 55%,
    var(--color-bg) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Images/Image1.jpeg") center/cover no-repeat;
  background-position: top;
  mix-blend-mode: multiply;
  opacity: 0.45;
  z-index: 0;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.hero .subheadline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.hero-buttons {
  margin-bottom: 2rem;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 0.6rem;
  transition:
    background 0.3s,
    transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.hero-buttons .btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: #fff;
  color: var(--color-accent);
}
.btn-primary:hover {
  background: #eef3f1;
}
.btn-secondary {
  background: #00cc66;
  color: #fff;
}
.btn-secondary:hover {
  background: #00b85c;
}
/* ABOUT / INTRO */
.about {
  padding: 3rem 0;
  background: var(--color-surface);
}
.about .intro {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
/* SERVICES */
.services {
  padding: 4rem 0;
}
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #555;
  font-size: 1.1rem;
}
.services h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(24, 39, 45, 0.1);
}

/* WHY CHOOSE */
.why-choose {
  background: var(--color-section-tint);
  padding: 4rem 0;
}
.why-choose h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.features li {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.features li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
}

/* AREAS */
.areas {
  padding: 4rem 0;
}
.areas h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.areas p {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
}

/* PHOTOS */
.photos {
  padding: 4rem 0;
}
.photos h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.photo {
  position: relative;
  padding-top: 75%; /* aspect ratio */
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s;
}
.photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo:hover {
  transform: scale(1.03);
}

.seo-copy {
  padding: 4rem 0;
  background: var(--color-surface);
}

.seo-copy-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.seo-copy h2 {
  margin-bottom: 0;
  text-align: center;
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.seo-copy-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(24, 39, 45, 0.05);
}

.seo-copy-card--single {
  max-width: 960px;
  margin: 0 auto;
}

.seo-copy-card h3 {
  margin-bottom: 0.75rem;
  color: var(--color-accent-dark);
}

.seo-copy-card p {
  margin: 0;
  color: #425257;
}

@media (min-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CONTACT */
.contact {
  background: linear-gradient(
    135deg,
    var(--color-contact-start) 0%,
    var(--color-contact-end) 100%
  );
  color: #fff;
  padding: 4rem 0 6rem; /* reduced bottom padding for copyright */
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.contact-info {
  align-self: center;
}
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact h2 {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #fff !important;
  padding: 0.5rem 0;
  line-height: 1.2;
}
.address {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #e0e0e0;
}
.contact .phone a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
.contact .cta {
  margin-top: 0.5rem;
  font-size: 1rem;
}
.footer-bar {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #c0c0c0;
}
.contact .phone a {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  text-decoration: none;
}
.contact .btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  text-align: center;
  margin: 1rem auto;
  padding: 1rem 2rem;
  border-radius: 0.6rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(24, 39, 45, 0.22);
  transition:
    background 0.3s,
    transform 0.2s;
}
.contact .btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
}
.contact .cta {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.whatsapp-sticky {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  background: #25d366;
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border: 3px solid rgba(255, 255, 255, 0.9);
  z-index: 1200;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  animation: pulse 2s infinite;
}

.whatsapp-sticky:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.whatsapp-sticky__icon {
  width: 30px;
  height: 30px;
  display: block;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* global link color */
a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features {
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (min-width: 900px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero .subheadline {
    font-size: 1.75rem;
  }
  .contact .phone a {
    font-size: 2rem;
  }
  .about-content {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
