/* ===========================
   JIMMY GARDENS – Stylesheet
   Modern · Minimal · Friendly
   =========================== */

:root {
  --green-dark:   #1E3A1F;
  --green-mid:    #2D5A2E;
  --green-light:  #A8D5A2;
  --green-pale:   #F4F9F2;
  --accent:       #7CB518;
  --accent-warm:  #EBF5D8;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #888888;
  --white:        #FFFFFF;
  --off-white:    #F9FAF7;
  --border:       #E2EBE2;
  --radius:       16px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(30,58,31,0.10);
  --shadow-lg:    0 12px 48px rgba(30,58,31,0.18);
  --transition:   0.25s ease;
  --font:         'Inter', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.1rem; }
em { font-style: italic; color: var(--accent); font-family: var(--font-serif); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,181,24,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--nav {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn--nav:hover { background: var(--green-mid); }
.btn--full { width: 100%; justify-content: center; }

/* ---- SECTION HELPERS ---- */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-warm);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header p {
  color: var(--text-mid);
  margin-top: 16px;
  font-size: 1.05rem;
}
.section-header--light h2,
.section-header--light p { color: var(--white); }

/* ---- CHECK ICON ---- */
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.check::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ========================
   NAV
======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all var(--transition);
  overflow: visible;
}
.nav--scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  overflow: visible;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.nav--scrolled .nav__logo { color: var(--text-dark); }
.logo-leaf { color: var(--accent); flex-shrink: 0; }
.nav__logo-img {
  height: 280px;
  width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
  position: fixed;
  top: 10px;
  left: 24px;
  z-index: 200;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav--scrolled .nav__links a { color: var(--text-dark); }
.nav__links a:hover { color: var(--accent); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
.nav--scrolled .nav__burger span { background: var(--text-dark); }
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.05rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { color: var(--accent); border: none; }

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('Pexels/Hero.jpg') center / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 44, 21, 0.80) 0%,
    rgba(40, 80, 42, 0.55) 60%,
    rgba(20, 44, 21, 0.70) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 80px;
  max-width: 720px;
}
.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.02em;
}
.hero__title {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.1;
}
.hero__title em {
  color: var(--green-light);
}
.hero__sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-badge svg { color: var(--green-light); }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================
   SERVICES
======================== */
.services {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Dekorative Blumen-Hintergründe links & rechts */
.services__deco {
  position: absolute;
  top: 0; bottom: 0;
  width: 320px;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}
.services__deco--left {
  left: -60px;
  background-image: url('https://images.unsplash.com/photo-1523301343968-6a6ebf63c672?auto=format&fit=crop&w=600&q=60');
}
.services__deco--right {
  right: -60px;
  background-image: url('https://images.unsplash.com/photo-1490750967868-88df5691894e?auto=format&fit=crop&w=600&q=60');
  transform: scaleX(-1);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

/* Stil 2: Großes Bild + Text Overlay */
.s2-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.s2-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.s2-card:hover img { transform: scale(1.07); }
.s2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,44,21,0.93) 0%, rgba(20,44,21,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}
.s2-card:hover .s2-overlay {
  background: linear-gradient(to top, rgba(20,44,21,0.97) 0%, rgba(20,44,21,0.5) 60%, rgba(20,44,21,0.1) 100%);
}
.s2-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.s2-overlay h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.s2-overlay p {
  color: rgba(255,255,255,0.0);
  font-size: 0.82rem;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, color 0.35s ease;
}
.s2-card:hover .s2-overlay p {
  max-height: 100px;
  color: rgba(255,255,255,0.85);
}

/* ========================
   WHY US
======================== */
.why {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why__deco {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1490750967868-88df5691894e?auto=format&fit=crop&w=1400&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.why__text h2 { margin-bottom: 20px; }
.why__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.why__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.98rem;
}
.why__visual { position: relative; }
.why__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.why__stat-card--1 { bottom: 32px; left: -28px; }
.why__stat-card--2 { top: 40px; right: -28px; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ========================
   PHOTO STRIP
======================== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 260px;
  overflow: hidden;
}
.photo-strip__item {
  overflow: hidden;
  position: relative;
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-strip__item:hover img {
  transform: scale(1.08);
}
.photo-strip__item--color { cursor: default; }
.photo-strip__item--color-1 {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-strip__item--color-1::after {
  content: 'We show up. We sort it.';
  color: var(--accent);
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 16px;
}
.photo-strip__item--color-2 {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-strip__item--color-2::after {
  content: 'Done properly. Every time.';
  color: var(--white);
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 16px;
}

/* ========================
   ABOUT
======================== */
.about {
  padding: 100px 0;
  background: var(--green-pale);
  position: relative;
  overflow: hidden;
}
.about__deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background-image:
    url('https://images.unsplash.com/photo-1523301343968-6a6ebf63c672?auto=format&fit=crop&w=800&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.about__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.about__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--green-light);
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__text h2 { margin-bottom: 20px; }
.about__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__phone, .about__email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-mid);
  transition: color var(--transition);
}
.about__phone:hover, .about__email:hover { color: var(--accent); }

/* ========================
   AREA
======================== */
.area {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.area__deco {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1490750967868-88df5691894e?auto=format&fit=crop&w=1400&q=50');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.05;
  pointer-events: none;
}
.area__map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.area__map-visual {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.area__map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.area__map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1416879612168-7b99fe18b9b8?auto=format&fit=crop&w=600&q=50');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.area__pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  height: 80px;
  position: relative;
  z-index: 1;
}
.area__dot {
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 2;
}
.area__ring {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
  width: 40px; height: 40px;
}
.area__ring--2 { animation-delay: 1.25s; }
@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(4); opacity: 0; }
}
.area__map-label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.area__coverage {
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.area__towns h3 { margin-bottom: 20px; }
.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.area__tags span {
  background: var(--accent-warm);
  color: var(--green-mid);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.area__note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* ========================
   CONTACT
======================== */
.contact {
  padding: 100px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.contact__deco {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1523301343968-6a6ebf63c672?auto=format&fit=crop&w=1400&q=50');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 30px;
  color: var(--white);
}
.contact__card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-light);
  margin-bottom: 12px;
}
.contact__big-phone {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color var(--transition);
}
.contact__big-phone:hover { color: var(--green-light); }

/* WhatsApp */
.contact__card--whatsapp {
  background: rgba(37,211,102,0.10);
  border-color: rgba(37,211,102,0.3);
}
.contact__whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 50px;
  margin: 12px 0 10px;
  transition: all var(--transition);
}
.contact__whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.contact__wa-num {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 6px !important;
}
.contact__card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.contact__social {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.contact__social:last-child { border: none; }
.contact__social:hover { color: var(--green-light); }
.contact__card--green {
  background: rgba(124,181,24,0.12);
  border-color: rgba(124,181,24,0.25);
}
.contact__card ul { display: flex; flex-direction: column; gap: 10px; }
.contact__card ul li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ========================
   INSTAGRAM
======================== */
.instagram {
  padding: 100px 0;
  background: var(--off-white);
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #0F1710;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo-link { display: inline-block; margin-bottom: 16px; }
.footer__brand p {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.footer__links h4, .footer__contact h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.footer__contact-link:last-child { border: none; }
.footer__contact-link:hover { color: var(--accent); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}
.footer__bottom a { color: rgba(255,255,255,0.4); }

/* ========================
   RESPONSIVE — TABLET (max 960px)
======================== */
@media (max-width: 960px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { justify-content: flex-end; }
  .nav__logo-img { height: 180px; width: 180px; top: 8px; left: 16px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr 1fr 1fr; }
  .s2-card { height: 240px; }

  /* Why */
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .why__stat-card--1 { left: 16px; bottom: 16px; }
  .why__stat-card--2 { right: 16px; top: 16px; }
  .why__img-wrap { aspect-ratio: 16/9; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img-wrap { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }

  /* Photo strip */
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .photo-strip__item:nth-child(4),
  .photo-strip__item:nth-child(5) { display: none; }

  /* Area */
  .area__map { grid-template-columns: 1fr; gap: 40px; }
  .area__map-embed { height: 320px; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ========================
   RESPONSIVE — MOBILE (max 600px)
======================== */
@media (max-width: 600px) {
  /* Logo */
  .nav__logo-img {
    height: 150px;
    width: 150px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav__inner { height: 80px; justify-content: flex-end; }

  /* Hero */
  .hero__content { padding-top: 175px; padding-bottom: 60px; }
  .hero__badge { font-size: 0.75rem; padding: 5px 12px; }
  .hero__title { font-size: 2rem; }
  .hero__sub { font-size: 0.95rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 8px; }

  /* Sections padding */
  .services,
  .why,
  .about,
  .area,
  .contact { padding: 64px 0; }

  /* Services */
  .services__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .s2-card { height: 200px; }
  .s2-overlay h3 { font-size: 0.88rem; }
  .s2-overlay p { font-size: 0.75rem; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  /* Why */
  .why__stat-card { display: none; }

  /* About */
  .about__img-wrap { aspect-ratio: 1/1; }
  .about__text h2 { font-size: 1.5rem; }

  /* Photo strip */
  .photo-strip { height: 160px; grid-template-columns: repeat(3, 1fr); }
  .photo-strip__item:nth-child(4),
  .photo-strip__item:nth-child(5) { display: none; }
  .photo-strip__item--color-2 { display: none; }

  /* Area */
  .area__map-embed { height: 260px; }
  .area__tags { gap: 6px; }
  .area__tags span { font-size: 0.78rem; padding: 4px 10px; }

  /* Contact */
  .contact__form { padding: 20px; }
  .contact__big-phone { font-size: 1.2rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 0 0; }

  /* WhatsApp float */
  .wa-float__label { display: none; }
  .wa-float { width: 56px; height: 56px; border-radius: 50%; }
}

/* ========================
   WHATSAPP FLOATING BUTTON
======================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  text-decoration: none;
  animation: wa-bounce 2s ease-in-out 2s 3;
}
.wa-float:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========================
   ANIMATIONS
======================== */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
