/* =========================================
   GARTEN-BETRIEB.AT – Premium Garden Website
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark: #0d3320;
  --green-main: #1a5c2e;
  --green-mid: #2d7a42;
  --green-light: #4caf68;
  --gold: #c8a456;
  --gold-light: #e0c27a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-light: #f0f4f1;
  --gray-mid: #9aab9e;
  --text-dark: #1a2415;
  --text-mid: #3d5040;
  --text-light: #7a8f7f;
  --shadow-sm: 0 2px 12px rgba(13, 51, 32, .12);
  --shadow-md: 0 8px 32px rgba(13, 51, 32, .18);
  --shadow-lg: 0 20px 60px rgba(13, 51, 32, .25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
  --nav-h: 80px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 3px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(13, 51, 32, 0.0);
  backdrop-filter: blur(0px);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(13, 51, 32, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}

.nav-logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.08);
}

.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo .logo-text span {
  display: block;
  font-size: .7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 164, 86, .4);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 40, 20, 0.97);
  backdrop-filter: blur(16px);
  padding: 2rem 5%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-110%);
  opacity: 0;
  transition: var(--transition);
  border-bottom: 2px solid var(--gold);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_garden.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(10, 40, 20, .85) 0%,
      rgba(10, 40, 20, .6) 50%,
      rgba(10, 40, 20, .3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 5%;
  margin-left: 5%;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 86, .18);
  border: 1px solid rgba(200, 164, 86, .45);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  animation: fadeInUp .8s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp .8s .15s ease both;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp .8s .3s ease both;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp .8s .45s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .95rem;
  padding: 16px 34px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(200, 164, 86, .45);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 164, 86, .55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* hero-stats now lives in .stats-strip outside the hero */

/* =========================================
   STATS STRIP (between hero and trust bar)
   ========================================= */
.stats-strip {
  background: var(--green-dark);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(200, 164, 86, .2);
  border-bottom: 1px solid rgba(200, 164, 86, .2);
}

.stats-strip .hero-stat {
  text-align: center;
  padding: 28px 40px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  min-width: 150px;
  flex: 1;
}

.stats-strip .hero-stat:last-child {
  border-right: none;
}

.hero-stat {
  text-align: center;
  padding: 16px 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  min-width: 110px;
}

.hero-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-stat .stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-hint {
  display: none;
}

.scroll-hint .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, .4);
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* =========================================
   SHARED SECTION STYLES
   ========================================= */
section {
  padding: 100px 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(26, 92, 46, .1);
  color: var(--green-main);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid rgba(26, 92, 46, .2);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title .accent {
  color: var(--green-mid);
  font-style: italic;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

.divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  border-radius: 2px;
  margin: 1.2rem 0 1.5rem;
}

.text-center .divider {
  margin: 1.2rem auto 1.5rem;
}

/* Animate on scroll — elements start VISIBLE (no-JS fallback) */
.animate-fade {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

.animate-left {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

.animate-right {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* When JS is loading (html.js-loading set before first paint), elements wait to be triggered */
html.js-loading .animate-fade {
  opacity: 0;
  transform: translateY(40px);
}

html.js-loading .animate-left {
  opacity: 0;
  transform: translateX(-50px);
}

html.js-loading .animate-right {
  opacity: 0;
  transform: translateX(50px);
}

/* Revealed state */
.animate-fade.visible {
  opacity: 1 !important;
  transform: none !important;
}

.animate-left.visible {
  opacity: 1 !important;
  transform: none !important;
}

.animate-right.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--green-dark);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .18);
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 1.8rem;
}

.service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.1rem;
  margin-top: -48px;
  position: relative;
  box-shadow: 0 4px 18px rgba(26, 92, 46, .35);
}

.service-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: .6rem;
}

.service-card-body p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-main);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 1.1rem;
  transition: gap var(--transition), color var(--transition);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--gold);
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  padding: 16px;
}

.about-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.about-badge .badge-text {
  font-size: .68rem;
  color: var(--green-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature i {
  color: var(--green-main);
  font-size: 1.2rem;
  margin-top: 3px;
}

.about-feature p {
  font-size: .88rem;
  color: var(--text-mid);
  font-weight: 500;
}

.phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  margin-top: 1.5rem;
}

.phone-block i {
  color: var(--gold);
  font-size: 1.5rem;
  animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {

  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-15deg);
  }

  40% {
    transform: rotate(15deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  80% {
    transform: rotate(5deg);
  }
}

.phone-block .phone-label {
  font-size: .78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-block .phone-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 700;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  background: var(--green-dark);
}

.gallery .section-tag {
  background: rgba(200, 164, 86, .15);
  color: var(--gold);
  border-color: rgba(200, 164, 86, .3);
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-title .accent {
  color: var(--gold-light);
}

.gallery .section-sub {
  color: rgba(255, 255, 255, .65);
}

.gallery .divider {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 40, 20, .85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .8);
  transform: scale(.9);
  transition: transform .3s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--gold);
}

/* =========================================
   HOOKS / WHY US
   ========================================= */
.hooks {
  background: var(--cream);
}

.hooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.hook-card {
  text-align: center;
  padding: 2.5rem 1.8rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hook-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.hook-card:hover::before {
  opacity: 1;
}

.hook-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.hook-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  transition: transform var(--transition);
}

.hook-card:hover .hook-icon {
  transform: scale(1.1) rotate(8deg);
}

.hook-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: .7rem;
}

.hook-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: .4;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: .9rem;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.testimonial-author .author-info .name {
  font-weight: 600;
  color: var(--green-dark);
  font-size: .95rem;
}

.testimonial-author .author-info .location {
  font-size: .78rem;
  color: var(--text-light);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-box:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-info-box .ico {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-box h4 {
  font-size: .78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-box a,
.contact-info-box p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: color var(--transition);
}

.contact-info-box a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: .5rem;
}

.contact-form p.sub {
  color: var(--text-light);
  font-size: .88rem;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(26, 92, 46, .12);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(26, 92, 46, .1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(26, 92, 46, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 92, 46, .45);
}

.form-success {
  display: none;
  background: rgba(76, 175, 104, .1);
  border: 2px solid var(--green-light);
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-error {
  display: none;
  background: rgba(220, 50, 50, .07);
  border: 2px solid rgba(220, 50, 50, .3);
  color: #b91c1c;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

.form-error.visible {
  display: block;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, .75);
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 50px;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-brand .f-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-brand .f-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand .f-logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: .8rem;
  margin-top: 1.4rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-col ul li a i {
  font-size: .7rem;
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* =========================================
   WHATSAPP BUTTON
   ========================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .55);
  color: var(--white);
  font-size: 1.85rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .65);
  animation: none;
}

.whatsapp-btn .wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--green-dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-btn .wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--green-dark);
}

.whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================
   FADE-IN ANIMATION
   ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-main {
    height: 360px;
  }

  .about-badge {
    right: 10px;
    bottom: -20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
  }

  .nav-links,
  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 70px 5%;
  }

  /* ---- Hero mobile ---- */
  .hero {
    align-items: flex-start;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 6%;
    padding-top: calc(var(--nav-h) + 40px);
    max-width: 100%;
    width: 100%;
  }

  .hero-badge {
    font-size: .68rem;
    padding: 6px 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-sub {
    font-size: .95rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: .85rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
  }

  /* ---- Stats strip mobile ---- */
  .stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip .hero-stat {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .stats-strip .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .08);
  }

  /* ---- Other sections ---- */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    margin-bottom: 60px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-divider {
    display: none;
  }

  .trust-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding-left: 8%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 480px) {
  .hero-content {
    padding: 0 5%;
    padding-top: calc(var(--nav-h) + 30px);
  }

  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hooks-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip .hero-stat {
    padding: 18px 10px;
  }

  .hero-stat .stat-num {
    font-size: 1.6rem;
  }
}