/* ==========================================
   SARDAS GARTEN- & HAUSMEISTERSERVICE
   Modern, Responsive Premium Styling
   ========================================== */

:root {
  --primary-green: #0d6b32;
  --primary-green-hover: #0a5226;
  --accent-light-green: #22c55e;
  --accent-light-hover: #16a34a;
  --bg-white: #ffffff;
  --bg-light-gray: #f8fafc;
  --bg-dark: #111827;
  --bg-dark-footer: #072714;
  --bg-dark-footer-border: #0f4022;
  --text-dark: #111827;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 20px 40px rgba(13, 107, 50, 0.12);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Visually hidden screen reader utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==========================================
   NAVIGATION / HEADER
   ========================================== */
.header-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 48px;
  height: 48px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 107, 50, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-green);
  text-transform: uppercase;
}

/* Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-green);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-green);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Phone Only Link */
.header-phone-only {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-light-green);
  transition: var(--transition-smooth);
}

.header-phone-only:hover {
  background-color: var(--primary-green);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(13, 107, 50, 0.2);
}

/* Header Button */
.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(13, 107, 50, 0.2);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.header-cta-btn:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 107, 50, 0.3);
}

.header-cta-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-cta-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-cta-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.header-cta-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  color: #fbbf24;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--primary-green);
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-white);
}

/* Hero Section Without Image */
.hero-section.hero-no-image {
  padding: 5rem 0 6rem;
  text-align: center;
}

.hero-centered-container {
  max-width: 850px;
  margin: 0 auto;
}

.hero-no-image .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-no-image .hero-green-line {
  margin: 0 auto 1.8rem;
}

.hero-no-image .hero-description {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-no-image .hero-actions {
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  z-index: 2;
}

.hero-heading {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.hero-heading .highlight {
  color: var(--primary-green);
  display: inline-block;
}

.hero-green-line {
  width: 70px;
  height: 5px;
  background-color: var(--primary-green);
  border-radius: 3px;
  margin-bottom: 1.8rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(13, 107, 50, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 107, 50, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-light-gray);
  color: var(--text-dark);
  padding: 1rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: #e2e8f0;
  color: var(--primary-green);
}

/* Hero Image & Soft Gradient */
.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-left-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* Quality Stamp Badge */
.quality-stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.stamp-icon {
  width: 42px;
  height: 42px;
  background-color: var(--accent-light-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stamp-text-group {
  display: flex;
  flex-direction: column;
}

.stamp-main {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stamp-sub {
  font-size: 0.72rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background-color: rgba(13, 107, 50, 0.08);
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-green);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(13, 107, 50, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  background-color: rgba(13, 107, 50, 0.08);
  color: var(--primary-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary-green);
  color: var(--bg-white);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-more-link {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
}

.services-cta-wrapper {
  text-align: center;
}

.btn-all-services {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 1.1rem 2.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(13, 107, 50, 0.25);
  transition: var(--transition-smooth);
}

.btn-all-services:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(13, 107, 50, 0.35);
}

/* ==========================================
   ADVANTAGES FULL-WIDTH GREEN BAR
   ========================================== */
.advantages-banner {
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 3.5rem 0;
  position: relative;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-smooth);
}

.advantage-item:hover .advantage-icon {
  background-color: var(--bg-white);
  color: var(--primary-green);
  transform: scale(1.1);
}

.advantage-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-white);
}

/* ==========================================
   GALLERY / WORK SECTION (HORIZONTAL CAROUSEL SLIDER)
   ========================================== */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.gallery-slider-wrapper {
  position: relative;
  padding: 0 3.2rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.8rem 0.2rem 1.2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #8cb092 #f3f4f6;
}

.gallery-grid::-webkit-scrollbar {
  height: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background: #8cb092;
  border-radius: 10px;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #236B42;
  border: 2px solid #8cb092;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.gallery-nav-btn:hover {
  background: #236B42;
  color: #ffffff;
  border-color: #236B42;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(35, 107, 66, 0.3);
}

.gallery-nav-btn.prev-btn {
  left: 0;
}

.gallery-nav-btn.next-btn {
  right: 0;
}

.gallery-card {
  flex: 0 0 calc(50% - 0.75rem);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 380px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1200px) {
  .gallery-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .gallery-slider-wrapper {
    padding: 0 2.5rem;
  }
  .gallery-card {
    flex: 0 0 88%;
    height: 300px;
  }
  .gallery-nav-btn {
    width: 38px;
    height: 38px;
  }
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  display: none !important;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light-green);
  margin-bottom: 0.3rem;
}

.gallery-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg-white);
}

/* Slider Controls */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--primary-green);
  width: 28px;
  border-radius: 10px;
}

/* ==========================================
   BLACK CTA STATUS SECTION
   ========================================== */
.cta-status-section {
  padding: 2rem 0 5rem;
}

.cta-status-card {
  background-color: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-status-left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.live-pulse-badge {
  width: 54px;
  height: 54px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.live-pulse-badge::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-light-green);
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.cta-status-text {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  color: #f1f5f9;
  max-width: 650px;
}

.btn-camera-circle {
  width: 68px;
  height: 68px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(13, 107, 50, 0.4);
  transition: var(--transition-smooth);
}

.btn-camera-circle:hover {
  background-color: var(--accent-light-green);
  transform: scale(1.1) rotate(6deg);
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-highlight-box {
  background-color: var(--bg-white);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-green);
  box-shadow: var(--shadow-subtle);
}

.about-highlight-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about-highlight-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-single-card {
  max-width: 900px;
  margin: 0 auto;
}

.contact-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .contact-items-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background-color: var(--bg-light-gray);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-details p, .contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary-green);
}

.contact-form-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-family: var(--font-main);
  font-size: 0.95rem;
  background-color: #f8fafc;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(13, 107, 50, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--bg-dark-footer);
  color: #a3e635;
  color: #93c5fd;
  color: #a7f3d0;
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--primary-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  line-height: 1.7;
  font-size: 0.95rem;
  color: #d1fae5;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-links a {
  color: #a7f3d0;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease, padding 0.2s ease;
}

.footer-links i,
.footer-links svg,
.footer-links .lucide {
  color: var(--accent-light-green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--bg-dark-footer-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #a7f3d0;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.made-by-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  opacity: 0.9;
  color: #a7f3d0;
  border-left: 1px solid var(--bg-dark-footer-border);
  padding-left: 1rem;
}

.made-by-tag a {
  color: #a7f3d0;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.made-by-tag a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.made-by-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  color: #a7f3d0;
}

.legal-links a {
  color: #a7f3d0;
}

.legal-links a:hover {
  color: var(--bg-white);
}

/* ==========================================
   MODAL DIALOGS & LIGHTBOX
   ========================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-light-gray);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background-color: #e2e8f0;
  color: var(--primary-green);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent-light-green);
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .hero-img {
    height: 400px;
  }

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

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-status-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-status-left {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-menu, .header-cta-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

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

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   INHABER / OWNER MODE STYLES
   ========================================== */
.owner-control-bar {
  background: #f0fdf4;
  border: 1.5px solid #8cb092;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.owner-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #166534;
  font-size: 0.95rem;
}

.owner-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-owner-add {
  background: var(--primary-green);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn-owner-add:hover {
  background: var(--primary-dark-green);
  transform: translateY(-1px);
}

.btn-owner-logout {
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #d1d5db;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-owner-logout:hover {
  background: #e5e7eb;
  color: #111827;
}

.gallery-card {
  position: relative;
}

.gallery-card .btn-delete-card {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(220, 38, 38, 0.9);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-card .btn-delete-card:hover {
  background: rgba(185, 28, 28, 1);
  transform: scale(1.1);
}

.owner-badge-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(35, 107, 66, 0.85);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  z-index: 5;
  backdrop-filter: blur(4px);
}

/* Upload Drop Zone */
.upload-drop-zone {
  border: 2px dashed #8cb092;
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-drop-zone:hover, .upload-drop-zone.dragover {
  border-color: var(--primary-green);
  background: #f0fdf4;
}

.owner-login-btn {
  color: #8cb092 !important;
  font-size: 0.85rem;
}

.owner-login-btn:hover {
  color: #ffffff !important;
}
