/* ============================================
   GREENCCUTS – Main Stylesheet
   Design: Modern & Clean, Natural Green Palette
   ============================================ */

:root {
  --green-dark:  #1a3a2a;
  --green-main:  #2d6a4f;
  --green-mid:   #40916c;
  --green-light: #74c69d;
  --green-pale:  #d8f3dc;
  --cream:       #f9f6f0;
  --white:       #ffffff;
  --text-dark:   #1a2a1e;
  --text-mid:    #445048;
  --text-light:  #7a8f80;
  --border:      #e0e9e2;
  --shadow-sm:   0 2px 12px rgba(26,58,42,.08);
  --shadow-md:   0 8px 32px rgba(26,58,42,.12);
  --shadow-lg:   0 20px 60px rgba(26,58,42,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.75; }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 580px; margin: 1rem auto 0; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  padding: .6rem 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo img {
  height: 72px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), height var(--transition);
}
.navbar.scrolled .nav-logo img { filter: none; height: 60px; }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: .5rem .9rem;
  font-size: .92rem; font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.navbar.scrolled .nav-links > li > a { color: var(--text-dark); }
.navbar.scrolled .nav-links > li > a:hover,
.navbar.scrolled .nav-links > li > a.active {
  color: var(--green-main);
  background: var(--green-pale);
}
.arrow { font-size: .7rem; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 270px;
  padding: .5rem 0;
  z-index: 100;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: .6rem 1.25rem;
  font-size: .88rem; color: var(--text-mid);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--green-pale); color: var(--green-main); }

.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  background: var(--green-main);
  color: var(--white) !important;
  padding: .55rem 1.3rem;
  border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  transition: var(--transition);
  margin-left: .5rem;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer;
  margin-left: auto;
}
.burger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .burger span { background: var(--text-dark); }
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.slider { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,18,.72) 0%, rgba(10,30,18,.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  color: var(--white);
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 em { color: var(--green-light); font-style: italic; }
.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: rgba(255,255,255,.4);
  border: none; cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--white); transform: scale(1.3); }
.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: var(--white); border: 1px solid rgba(255,255,255,.3);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-nav:hover { background: rgba(255,255,255,.3); }
.slider-nav.prev { left: 1.5rem; }
.slider-nav.next { right: 1.5rem; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 1.75rem 0;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem 3rem;
  flex: 1; min-width: 160px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .3rem; }
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p { font-size: .9rem; flex: 1; }
.card-link {
  display: inline-block; margin-top: 1.25rem;
  color: var(--green-main); font-weight: 600; font-size: .88rem;
  transition: var(--transition);
}
.service-card:hover .card-link { transform: translateX(4px); }

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-img {
  position: relative; overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about-img-accent {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(249,246,240,.8));
}
.about-text {
  background: var(--cream);
  padding: 5rem 4rem 5rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text .section-tag { align-self: flex-start; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn { margin-top: 1rem; align-self: flex-start; }

/* ============================================
   GALLERY STRIP (infinite scroll)
   ============================================ */
.gallery-strip {
  overflow: hidden;
  padding: 3rem 0;
  background: var(--white);
}
.gallery-track {
  display: flex; gap: 1rem;
  animation: scrollTrack 40s linear infinite;
  width: max-content;
}
.gallery-track img {
  width: 320px; height: 220px;
  object-fit: cover; border-radius: var(--radius);
  flex-shrink: 0;
  transition: var(--transition);
}
.gallery-track img:hover { transform: scale(1.03); }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-strip:hover .gallery-track { animation-play-state: paused; }

/* ============================================
   RASADNIK TEASER
   ============================================ */
.rasadnik-teaser { background: var(--cream); }
.rasadnik-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.rasadnik-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/4;
  display: block;
}
.rasadnik-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.rasadnik-card:hover img { transform: scale(1.07); }
.rc-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,30,18,.75) 0%, transparent 100%);
  color: var(--white);
  padding: 2.5rem 1.25rem 1.25rem;
  font-weight: 600; font-size: 1rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  background-image: url('../images/slajder/s4.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding: 7rem 1.5rem;
  text-align: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(10,30,18,.72);
}
.cta-content {
  position: relative; z-index: 1;
  color: var(--white);
}
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-content .hero-btns { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--green-dark); color: var(--white); padding: 4rem 0 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 3rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo { height: 56px; margin-bottom: .75rem; }
.footer-slogan { color: rgba(255,255,255,.5); font-size: .88rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); }
.footer-col h4 { color: var(--white); margin-bottom: 1.25rem; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.contact-list li {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: .6rem;
}
.contact-list li a { color: rgba(255,255,255,.55); }
.contact-list li a:hover { color: var(--green-light); }
.contact-list li svg { flex-shrink: 0; color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom a { color: var(--green-light); }

/* FAB */
.fab-call {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px;
  background: var(--green-main);
  color: var(--white); border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(45,106,79,.4);
  transition: var(--transition);
}
.fab-call:hover { background: var(--green-dark); transform: scale(1.08); }

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  background: var(--green-dark);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content:'';
  position: absolute; inset: 0;
  background: url('../images/rasadnik/r1.png') center/cover;
  opacity: .2;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(2rem,5vw,3.5rem); }
.page-header p { color: rgba(255,255,255,.7); max-width: 520px; margin: 1rem auto 0; }
.breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  margin-bottom: 1rem; font-size: .85rem;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .sd-img { order: 2; }
.service-detail.reverse .sd-text { order: 1; }
.sd-img { border-radius: var(--radius-lg); overflow: hidden; }
.sd-img img { width: 100%; height: 420px; object-fit: cover; }
.sd-text .section-tag { align-self: flex-start; margin-bottom: 1rem; }
.sd-text h2 { margin-bottom: 1.25rem; }
.sd-list { margin: 1.25rem 0 1.75rem; }
.sd-list li {
  padding: .5rem 0;
  padding-left: 1.5rem; position: relative;
  color: var(--text-mid); font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.sd-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green-main); font-weight: 700;
}

/* ============================================
   RASADNIK PAGE
   ============================================ */
.plant-category { margin-bottom: 4rem; }
.plant-category h3 {
  font-size: 1.5rem; margin-bottom: 1.5rem;
  padding-bottom: .75rem; border-bottom: 2px solid var(--green-pale);
  color: var(--green-dark);
}
.plant-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.plant-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  background: var(--white);
}
.plant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plant-card img { width: 100%; height: 200px; object-fit: cover; }
.plant-card-body { padding: 1rem; }
.plant-card-body h4 { margin-bottom: .25rem; }
.plant-card-body p { font-size: .85rem; }

/* ============================================
   O NAMA PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 264px));
  gap: 2rem;
  justify-content: center;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}
.team-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.team-card .role { color: var(--green-main); font-size: .85rem; font-weight: 600; margin-bottom: .75rem; }
.team-card a { color: var(--text-mid); font-size: .88rem; }
.team-card a:hover { color: var(--green-main); }

/* ============================================
   KONTAKT PAGE
   ============================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 4rem; align-items: start;
}
.contact-info-box { background: var(--green-dark); border-radius: var(--radius-lg); padding: 3rem; }
.contact-info-box h3 { color: var(--white); margin-bottom: 2rem; }
.contact-detail {
  display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start;
}
.contact-detail-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-light);
}
.contact-detail-text strong { display: block; color: var(--white); margin-bottom: .2rem; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }
.contact-detail-text a,
.contact-detail-text span { color: rgba(255,255,255,.7); font-size: .95rem; }
.contact-detail-text a:hover { color: var(--green-light); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-teaser { grid-template-columns: 1fr; }
  .about-img { height: 380px; }
  .about-img-accent { display: none; }
  .about-text { padding: 3.5rem 2rem; }
  .rasadnik-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail.reverse .sd-img,
  .service-detail.reverse .sd-text { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green-dark);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { color: var(--white) !important; font-size: 1.2rem; padding: .75rem 2rem; }
  .dropdown {
    position: static; box-shadow: none; background: transparent;
    border: none; padding: 0; min-width: auto; display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,.7) !important; font-size: 1rem; text-align: center; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 45%; padding: .75rem 1rem; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .rasadnik-grid { grid-template-columns: 1fr 1fr; }

  .slider-nav { display: none; }

  .gallery-track img { width: 240px; height: 160px; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col:first-child { grid-column: auto; }

  .fab-call { display: flex; }
  .nav-logo img { height: 52px; }
  .navbar.scrolled .nav-logo img { height: 46px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form, .contact-info-box { padding: 2rem 1.5rem; }

  .cta-banner { background-attachment: scroll; }
  .cta-content .hero-btns { flex-direction: column; align-items: center; }
  .cta-content .btn { width: 100%; max-width: 280px; justify-content: center; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .rasadnik-grid { grid-template-columns: 1fr; }
  .plant-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
}

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--green-main);
  border: 2px solid var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,106,79,.3);
}

/* ============================================
   MOBILE FIXES (responsive corrections)
   ============================================ */

/* 1. Hero tag – jedan red na mobilnom */
@media (max-width: 480px) {
  .hero-tag {
    font-size: .68rem;
    letter-spacing: .06em;
    padding: .35rem .75rem;
    white-space: nowrap;
  }
}

/* 2. Inline grid sekcije (o-nama intro, rasadnik intro) – kolaps na mobilnom */
@media (max-width: 768px) {
  .inline-two-col {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .inline-two-col .col-img {
    order: -1; /* slika ide IZNAD teksta */
  }
  .inline-two-col .col-img img {
    height: 260px !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 16px;
  }
}

/* 3. service-detail – slika uvijek ispod teksta na mobilnom */
@media (max-width: 1024px) {
  .service-detail {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
  }
  .service-detail .sd-img {
    order: 2; /* slika ide ispod teksta */
  }
  .service-detail .sd-text {
    order: 1;
  }
  .sd-img img {
    height: 260px !important;
  }
}
