@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --primary: #2D6A4F;
  --primary-light: #40916C;
  --primary-dark: #1B4332;
  --secondary: #74C69D;
  --secondary-light: #B7E4C7;
  --accent: #D4A853;
  --accent-light: #F0C97A;
  --accent-dark: #B8862E;
  --warm: #F5ECD7;
  --warm-dark: #E8D5B0;
  --text-dark: #1A2E22;
  --text-medium: #3D5A47;
  --text-light: #6B8F74;
  --bg-light: #F8FAF8;
  --bg-cream: #FDFAF4;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(45, 106, 79, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 106, 79, 0.14);
  --shadow-lg: 0 8px 40px rgba(45, 106, 79, 0.18);
  --shadow-accent: 0 4px 20px rgba(212, 168, 83, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--warm);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ========== HEADER ========== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--secondary-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

#site-header.scrolled {
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--secondary);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img,
.header-logo svg {
  height: 44px;
  width: auto;
}

.header-logo span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.header-logo span em {
  font-style: normal;
  color: var(--accent);
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  text-decoration: none;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: var(--transition);
}

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

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

/* ========== MOBILE MENU TOGGLE ========== */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--warm);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--secondary-light);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--secondary-light);
  padding: 16px 0;
  box-shadow: var(--shadow-md);
}

.mobile-nav-link {
  display: block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: var(--warm);
  border-left-color: var(--primary);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 6px 25px rgba(45, 106, 79, 0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 25px rgba(212, 168, 83, 0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 2px solid var(--warm-dark);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-control:hover {
  border-color: var(--secondary);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
  background: var(--bg-cream);
}

.form-control::placeholder {
  color: var(--text-light);
  font-style: italic;
}

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

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D6A4F' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-error {
  font-size: 0.8rem;
  color: #DC2626;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-success {
  padding: 16px 20px;
  background: var(--secondary-light);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  font-weight: 500;
}

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(116, 198, 157, 0.15);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

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

.card-img-wrapper {
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(116, 198, 157, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--warm), var(--secondary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: rotate(8deg) scale(1.05);
}

/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(116, 198, 157, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--secondary-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

/* ========== SECTION STYLES ========== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--secondary-light);
  color: var(--primary-dark);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--primary);
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px 0;
}

/* ========== ACCORDION ========== */
.accordion-item {
  border: 1px solid var(--warm-dark);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--warm);
  color: var(--primary);
}

.accordion-header.active {
  background: var(--primary);
  color: var(--white);
}

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition);
}

.accordion-header.active .accordion-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-content {
  padding: 20px 24px;
  background: var(--bg-cream);
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  border-top: 1px solid var(--warm-dark);
}

/* ========== STATS ========== */
.stat-card {
  text-align: center;
  padding: 32px 24px;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ========== TEAM CARDS ========== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: linear-gradient(135deg, var(--secondary-light), var(--warm));
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-img {
  transform: scale(1.06);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 67, 50, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 12px;
}

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

.team-social {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.team-social:hover {
  background: var(--accent);
  color: var(--white);
}

.team-body {
  padding: 20px;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary-light);
  font-weight: 500;
}

/* ========== BLOG CARDS ========== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(116, 198, 157, 0.15);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--secondary-light);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(116, 198, 157, 0.2);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--secondary-light);
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-light);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-title {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== GALLERY ========== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 67, 50, 0.75) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-zoom {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

/* ========== PROCESS STEPS ========== */
.step-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 36px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.step-item::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 56px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(180deg, var(--secondary), transparent);
}

.step-item:last-child::before {
  display: none;
}

/* ========== PRICING ========== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--warm-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(30deg);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.price-currency {
  font-size: 1.4rem;
  vertical-align: top;
  color: var(--text-light);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--warm);
}

.pricing-feature i {
  color: var(--primary);
  font-size: 1rem;
}

/* ========== COOKIE BANNER ========== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 30px rgba(45, 106, 79, 0.15);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  color: var(--accent);
}

.cookie-btn-accept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.cookie-btn-decline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--warm-dark);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn-decline:hover {
  border-color: var(--text-light);
  color: var(--text-dark);
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--text-dark) 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(116, 198, 157, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo em {
  font-style: normal;
  color: var(--accent-light);
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(116, 198, 157, 0.3);
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--secondary-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--warm-dark);
  font-size: 0.75rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

/* ========== ALERTS & NOTIFICATIONS ========== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.alert-success {
  background: var(--secondary-light);
  color: var(--primary-dark);
  border: 1px solid var(--secondary);
}

.alert-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.alert-info {
  background: #E0F2FE;
  color: #0C4A6E;
  border: 1px solid #BAE6FD;
}

/* ========== BADGES & TAGS ========== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background: var(--secondary-light);
  color: var(--primary-dark);
}

.badge-accent {
  background: rgba(212, 168, 83, 0.15);
  color: var(--accent-dark);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(45, 106, 79, 0.3); }
  50% { box-shadow: 0 0 30px rgba(45, 106, 79, 0.6); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ========== LOADING SPINNER ========== */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--secondary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

/* ========== SKELETON LOADER ========== */
.skeleton {
  background: linear-gradient(90deg, var(--warm) 25%, var(--warm-dark) 50%, var(--warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(27, 67, 50, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* ========== UTILITY CLASSES ========== */
.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-light); }

.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.bg-warm { background-color: var(--warm); }
.bg-cream { background-color: var(--bg-cream); }

.shadow-soft { box-shadow: var(--shadow-sm); }
.shadow-medium { box-shadow: var(--shadow-md); }
.shadow-strong { box-shadow: var(--shadow-lg); }

.rounded-soft { border-radius: var(--radius-md); }
.rounded-strong { border-radius: var(--radius-lg); }

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-light), transparent);
  margin: 40px 0;
}

/* ========== MAP WRAPPER ========== */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--secondary-light);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ========== CONTACT INFO ========== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--warm-dark);
  margin-bottom: 12px;
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary-light), var(--warm));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ========== BACK TO TOP ========== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ========== TABLE STYLES ========== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

table.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.styled-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.styled-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--warm);
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition);
}

.styled-table tr:hover td {
  background: var(--warm);
  color: var(--text-dark);
}

.styled-table tr:last-child td {
  border-bottom: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .service-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 60px 0 50px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-item {
    padding-left: 60px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .btn {
    padding: 10px 22px;
  }

  .card-body {
    padding: 18px;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
    justify-content: center;
  }
}