/* =========================================================
   Pijavica lekárska — Custom Styles
   ========================================================= */

/* ----- CSS Custom Properties ----- */
:root {
  --primary:    #2C5F4A;
  --secondary:  #8B1C2E;
  --accent:     #D4A85A;
  --dark:       #141F18;
  --light:      #F2EDE5;
  --text:       #2A2A2A;
  --text-light: #808080;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --nav-h:      72px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ----- Skip Link ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* =========================================================
   PAGE LOADER
   ========================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity .6s ease, visibility .6s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}
.loader-logo::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   NAVIGATION
   ========================================================= */
#nav_1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
#nav_1.scrolled {
  background: rgba(20,31,24,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  height: 60px;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  flex-shrink: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-links li a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  background: rgba(212,168,90,.1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--accent);
  color: var(--dark) !important;
  font-weight: 600;
  font-size: .875rem;
  padding: .625rem 1.375rem;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #e6ba6a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,90,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary svg,
.btn-secondary svg,
.btn-outline svg,
.nav-cta svg {
  display: block;
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
  top: -.5px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: .9375rem;
  padding: .875rem 2rem;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: #234e3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,95,74,.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .9375rem;
  padding: .875rem 2rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.6);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* =========================================================
   SECTION COMMON
   ========================================================= */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}
.section-header--sm { margin-bottom: 2.5rem; }
.section-badge {
  display: inline-block;
  background: rgba(44,95,74,.1);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: .75rem;
}
.section-subheadline {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,31,24,.82) 0%,
    rgba(20,31,24,.65) 50%,
    rgba(139,28,46,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,168,90,.2);
  border: 1px solid rgba(212,168,90,.5);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .375rem 1.125rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .7;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { opacity:1; transform: translateX(-50%) translateY(0); }
  50% { opacity:0; transform: translateX(-50%) translateY(8px); }
}
.scroll-text {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-section {
  padding: 6rem 1.5rem;
  background: var(--light);
  overflow-x: hidden;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-stats {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-stat {
  background: rgba(20,31,24,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,168,90,.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
}

/* Mobile: pull stats out of image, sit below it */
@media (max-width: 768px) {
  .about-stats {
    position: static;
    margin-top: .75rem;
    grid-template-columns: 1fr 1fr;
    gap: .625rem;
  }
  .about-img-wrapper {
    border-radius: var(--radius-lg);
  }
  .about-stat {
    background: rgba(20,31,24,.92);
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
  }
  .stat-value { font-size: .9rem; }
  .stat-label { font-size: .68rem; }
}
.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
}
.stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
  line-height: 1.3;
}
.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-body {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.0625rem;
}
.about-body p { margin-bottom: 1rem; }
.about-body p:last-child { margin-bottom: 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-section {
  padding: 6rem 1.5rem;
  background: var(--white);
  overflow-x: hidden;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,31,24,.6) 0%, transparent 60%);
}
.service-card-icon {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .625rem;
  line-height: 1.3;
}
.service-card-desc {
  font-size: .9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   FEATURES
   ========================================================= */
.features-section {
  padding: 6rem 1.5rem;
  background: var(--dark);
  overflow-x: hidden;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.features-content-col .section-headline { color: var(--white); }
.features-content-col .section-subheadline { color: rgba(255,255,255,.65); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-item:hover {
  background: rgba(44,95,74,.25);
  border-color: rgba(44,95,74,.5);
  transform: translateY(-3px);
}
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(212,168,90,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.feature-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.features-images-col { position: relative; }
.features-img-stack {
  position: relative;
  height: 540px;
}
.features-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.features-img-1 {
  width: 70%;
  height: 380px;
  top: 0;
  right: 0;
}
.features-img-2 {
  width: 55%;
  height: 280px;
  bottom: 0;
  left: 0;
  border: 4px solid var(--dark);
}

/* =========================================================
   GALLERY — BEFORE/AFTER
   ========================================================= */
.gallery-section {
  padding: 6rem 1.5rem;
  background: var(--light);
  overflow-x: hidden;
}
.gallery-cards-grid {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Before/After Card */
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  position: relative;
  user-select: none;
}
.ba-card-inner {
  position: relative;
  width: 100%;
  padding-top: 125%;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .5s ease;
}
.ba-img--before { z-index: 2; opacity: 1; }
.ba-img--after  { z-index: 1; opacity: 1; }
.ba-card.show-after .ba-img--before { opacity: 0; }
.ba-card.show-after .ba-img--after  { z-index: 2; }

.ba-toggle-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  background: rgba(20,31,24,.75);
  backdrop-filter: blur(6px);
}
.ba-toggle-btn {
  flex: 1;
  padding: .625rem;
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), background var(--transition);
  border: none;
  background: none;
  cursor: pointer;
}
.ba-toggle-btn.active {
  color: var(--accent);
  background: rgba(212,168,90,.15);
}
.ba-card-label {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 6;
  background: rgba(20,31,24,.75);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Gallery Videos */
.gallery-videos-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.1);
}
.gallery-videos-wrapper .section-header { margin-bottom: 2rem; }
.videos-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.videos-subheadline {
  font-size: .9375rem;
  color: var(--text-light);
}
.gallery-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.video-card {
  background: var(--dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.video-card-title {
  padding: .75rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  background: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-iframe-wrapper {
  position: relative;
  padding-top: 178%;
  flex: 1;
}
.video-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  padding: 6rem 1.5rem;
  background: var(--white);
  overflow-x: hidden;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-boxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: box-shadow var(--transition);
}
.contact-info-box:hover { box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-info-content { flex: 1; }
.contact-info-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.contact-info-value {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
}
.contact-info-value a {
  color: var(--primary);
  transition: color var(--transition);
}
.contact-info-value a:hover { color: var(--secondary); }
.contact-map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-md);
  padding: .875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,95,74,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(0,0,0,.35); }
.form-textarea { resize: vertical; min-height: 130px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--dark) !important;
  background-color: #141F18 !important;
  color: rgba(255,255,255,.8);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-tagline {
  font-size: .875rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-description {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social-icon {
  display: inline-flex;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-social-icon:hover {
  color: var(--white);
}
.footer-col-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copyright {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
.footer-credit {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}
.footer-credit a {
  color: var(--accent);
  opacity: .8;
  transition: opacity var(--transition);
}
.footer-credit a:hover { opacity: 1; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
  animation: slideUpBanner .4s ease;
}
@keyframes slideUpBanner {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 200px;
}
.cookie-text p {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: .25rem;
}
.cookie-policy-link {
  font-size: .8125rem;
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  padding: .625rem 1.375rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-cookie-accept:hover { background: #234e3c; transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  font-weight: 500;
  padding: .625rem 1.125rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-cookie-decline:hover {
  border-color: rgba(255,255,255,.5);
  color: rgba(255,255,255,.9);
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity:.6; }
  50% { transform: scale(1.15); opacity:0; }
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  opacity: 0;
  border: none;
  cursor: pointer;
}
.scroll-top-btn:not([hidden]) { opacity: 1; }
.scroll-top-btn[hidden] { display: none; }
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   GSAP ANIMATION HELPER CLASSES
   ========================================================= */
.gsap-fade-up { opacity: 0; transform: translateY(40px); }
.gsap-fade-left { opacity: 0; transform: translateX(-50px); }
.gsap-fade-right { opacity: 0; transform: translateX(50px); }
.gsap-scale-up { opacity: 0; transform: scale(.92); }

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { height: 380px; }
  .features-container { grid-template-columns: 1fr; gap: 3rem; }
  .features-img-stack { height: 360px; }
  .features-img-1 { width: 65%; height: 300px; }
  .features-img-2 { width: 52%; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-videos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(20,31,24,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: .875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .nav-cta { display: none; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas > * { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
  .about-section { padding: 4rem 1.25rem; }
  .services-section { padding: 4rem 1.25rem; }
  .features-section { padding: 4rem 1.25rem; }
  .gallery-section { padding: 4rem 1.25rem; }
  .contact-section { padding: 4rem 1.25rem; }
  .faq-section { padding: 4rem 1.25rem; }
  .cta-section { padding: 4rem 1.25rem; }
  .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .features-images-col { display: none; }
  .gallery-videos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .about-img { height: 300px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-cards-grid { grid-template-columns: 1fr 1fr; }
  .gallery-videos-grid { grid-template-columns: 1fr; }
  .cookie-banner-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }

  /* About stats: tighter on small phones */
  .about-stat { padding: .75rem 1rem; }
  .stat-value { font-size: 1.6rem; }
  .stat-label { font-size: .7rem; }

  /* Services: tighter padding */
  .service-card { padding: 1.25rem; }
}

/* ---- Very small screens ≤ 350px ---- */
@media (max-width: 350px) {
  :root { --nav-h: 54px; }

  /* Containers: reduce edge padding */
  .nav-container,
  .about-container,
  .services-container,
  .features-container,
  .gallery-container,
  .contact-container,
  .faq-container,
  .cta-content { padding-left: .75rem; padding-right: .75rem; }

  /* Nav */
  .nav-logo { font-size: .95rem; }
  .nav-logo-img { width: 28px; height: 28px; }

  /* Hero */
  .hero-headline { font-size: 2rem !important; }
  .hero-subheadline { font-size: .92rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-ctas > * { width: 100%; max-width: 100%; text-align: center; justify-content: center; }

  /* About stats: single column */
  .about-stats { grid-template-columns: 1fr; gap: .5rem; }
  .about-stat { display: flex; align-items: center; gap: .75rem; text-align: left; padding: .75rem 1rem; }
  .stat-value { font-size: 1.5rem; }

  /* Images */
  .about-img { height: 240px; }

  /* Contact */
  .contact-section { padding-left: 1rem; padding-right: 1rem; }
  .contact-info-box { word-break: break-all; }
  .contact-form-wrapper { padding: 1.25rem 1rem; }

  /* CTA */
  .cta-headline { font-size: 1.6rem !important; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions > * { width: 100%; text-align: center; justify-content: center; }

  /* FAQ */
  .faq-question { padding: 1rem; font-size: .95rem; }
  .faq-answer { padding: 0 1rem; }
  .faq-item.open .faq-answer { padding: 0 1rem 1rem; }

  /* Floating buttons: closer to edge */
  .whatsapp-float { right: .75rem; bottom: 4.5rem; }
  .scroll-top-btn { right: .75rem; bottom: .75rem; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .whatsapp-float::before { animation: none; }
  .scroll-mouse::after { animation: none; }
  .loader-spinner { animation: none; }
  .gsap-fade-up, .gsap-fade-left, .gsap-fade-right, .gsap-scale-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   GSAP SAFETY FALLBACK
   If GSAP fails to load or animate, nothing stays invisible.
   GSAP overwrites these once it runs; they only matter on failure.
   ========================================================= */
/* =========================================================
   CTA BANNER SECTION
   ========================================================= */
.cta-section {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,31,24,.88) 0%, rgba(139,28,46,.75) 100%);
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-subheadline {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-large {
  padding: .9rem 2.2rem;
  font-size: 1.05rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  padding: 96px 24px;
  background: var(--light);
}
.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(44,95,74,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(44,95,74,.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-item.open .faq-question {
  color: var(--primary);
}
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* =========================================================
   GSAP SAFETY FALLBACK
   If GSAP fails to load or animate, nothing stays invisible.
   GSAP overwrites these once it runs; they only matter on failure.
   ========================================================= */
.hero-badge,
.hero-headline,
.hero-subheadline,
.hero-ctas > *,
.about-img-wrapper,
.about-text-col > *,
.service-card,
.feature-item,
.features-img-1,
.features-img-2,
.ba-card,
.video-card,
.contact-info-box,
.contact-form-wrapper,
.cta-headline,
.cta-subheadline,
.cta-actions > *,
.faq-item,
.section-header > * {
  opacity: 1;
}
