@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #38CA2B;
  --primary-rgb: 56, 202, 43;
  --secondary: #9522A0;
  --secondary-rgb: 149, 34, 160;
  --accent: #55EC94;
  --accent-rgb: 85, 236, 148;
  --bg: #FAF8F5;
  --bg-alt: #F0ECE6;
  --text-color: #2C2520;
  --text-muted: #6B6055;
  --section-dark: #2C2520;
  --section-accent: #EDE6DD;
  --border-color: #ddd5ca;
  --white: #ffffff;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Lato', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

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

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-color);
}

h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.25em; margin-bottom: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.grid-2 > * {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
}

.grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.grid-3 > * {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
}

.grid-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.grid-4 > * {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
}

.two-col-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.two-col-layout > *:first-child {
  flex: 2 1 400px;
}

.two-col-layout > *:last-child {
  flex: 1 1 280px;
}

.two-col-layout.reverse {
  flex-direction: row-reverse;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  width: calc(100% - 40px);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 0.6rem 1.75rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-color);
  white-space: nowrap;
  transition: color var(--transition);
}

.logo:hover {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
  display: inline-block;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(56, 202, 43, 0.07);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-color);
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  line-height: 1;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 37, 32, 0.97);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay .nav-menu {
  flex-direction: column;
  gap: 0.5rem;
  display: flex;
}

.mobile-nav-overlay .nav-link {
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
}

.mobile-nav-overlay .nav-link:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.06);
}

main {
  padding-top: 100px;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--section-dark) 0%, #1a1512 60%, var(--section-dark) 100%);
  color: var(--white);
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.hero-card:nth-child(2) {
  transform: translateX(30px);
}

.hero-card:nth-child(3) {
  transform: translateX(15px);
}

.hero-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateX(0) translateY(-4px);
}

.header-hero {
  position: relative;
  padding: 60px 0 50px;
  background: linear-gradient(160deg, var(--section-dark) 0%, #1a1512 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.header-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.header-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.header-hero p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 60px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark {
  background: var(--section-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: rgba(255,255,255,0.8);
}

.section-dark .section-header h2::after {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.section-accent {
  background: var(--section-accent);
}

.section-angled {
  position: relative;
  padding: 80px 0;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin-top: -30px;
  margin-bottom: -30px;
}

.section-angled-alt {
  position: relative;
  padding: 80px 0;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
  margin-top: -30px;
  margin-bottom: -30px;
}

.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider.flip {
  transform: scaleY(-1);
}

.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

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

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-bottom: 10px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12), rgba(var(--accent-rgb),0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: background 0.3s ease;
}

.feature:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-family: var(--font-primary);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2db823);
  color: var(--white);
  border-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
  color: var(--white);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #7a1b83;
  border-color: #7a1b83;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.3);
}

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

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

.btn-lg {
  padding: 1rem 2.75rem;
  font-size: 1.05rem;
}

.section-dark .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.section-dark .btn-outline:hover {
  background: var(--white);
  color: var(--section-dark);
}

form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--text-color);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  text-align: center;
}

.stat-item {
  flex: 1 1 160px;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.section-dark .stat-number {
  color: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.65);
}

.badge {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-primary {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
}

.badge-secondary {
  background: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary);
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--white);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
  font-size: 0.85rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  padding: 0 22px 20px;
  max-height: 400px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.cta-block {
  background: linear-gradient(135deg, var(--primary), #2aaa20);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px;
  right: -80px;
}

.cta-block::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -60px;
  left: -40px;
}

.cta-block h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-block p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-block .btn {
  position: relative;
  z-index: 1;
}

.cta-block .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.cta-block .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(var(--primary-rgb), 0.06);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
}

.trust-badge i {
  color: var(--primary);
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-in"].visible {
  opacity: 1;
}

[data-animate="slide-left"] {
  transform: translateX(-30px);
}

[data-animate="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(30px);
}

[data-animate="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="scale-up"] {
  transform: scale(0.92);
}

[data-animate="scale-up"].visible {
  opacity: 1;
  transform: scale(1);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-grid img {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease;
  cursor: pointer;
}

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

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.timeline-item h4 {
  margin-bottom: 4px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.team-card {
  text-align: center;
  padding: 20px;
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--border-color);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.team-card:hover img {
  border-color: var(--primary);
  transform: scale(1.05);
}

.team-card h4 {
  margin-bottom: 4px;
}

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

.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.service-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

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

.service-card .service-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.1), rgba(var(--accent-rgb),0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

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

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 22px;
}

.blog-card-meta {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.blog-card h3 a {
  color: var(--text-color);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.event-date {
  flex-shrink: 0;
  text-align: center;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.event-date .month {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.event-date .day {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.1;
}

.event-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.event-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-widget a {
  color: var(--text-color);
  font-size: 0.9rem;
}

.sidebar-widget a:hover {
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

footer.footer-contact {
  background: var(--section-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 20px 30px;
}

footer.footer-contact .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

footer.footer-contact .footer-grid > div {
  flex: 1 1 250px;
}

footer.footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

footer.footer-contact p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  font-size: 0.92rem;
}

footer.footer-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

footer.footer-contact a:hover {
  color: var(--accent);
}

footer.footer-contact .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.footer-contact .footer-links li {
  margin-bottom: 8px;
}

footer.footer-contact .copyright {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 10px;
}

footer.footer-contact .social-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

footer.footer-contact .social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

footer.footer-contact .social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

@media screen and (max-width: 1024px) {
  h1 { font-size: 1.75rem; }
  .hero-content h1 { font-size: 2.1rem; }

  .navbar {
    border-radius: var(--radius-md);
    top: 10px;
    padding: 0.65rem 1.5rem;
  }

  .two-col-layout > *:first-child,
  .two-col-layout > *:last-child {
    flex: 1 1 100%;
  }

  .section-angled,
  .section-angled-alt {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    margin-top: -15px;
    margin-bottom: -15px;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .navbar {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    top: 8px;
  }

  .navbar .nav-menu {
    display: none;
  }

  main {
    padding-top: 80px;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 0 40px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-cards {
    margin-top: 24px;
  }

  .hero-card:nth-child(2),
  .hero-card:nth-child(3) {
    transform: none;
  }

  .header-hero {
    padding: 40px 0 35px;
  }

  .header-hero h1 {
    font-size: 1.6rem;
  }

  .content-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > * {
    flex: 1 1 100%;
  }

  .row {
    gap: 20px;
  }

  .two-col-layout {
    gap: 24px;
  }

  .two-col-layout.reverse {
    flex-direction: column;
  }

  .stats-row {
    gap: 16px;
  }

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

  .cta-block {
    padding: 40px 24px;
  }

  .cta-block h2 {
    font-size: 1.4rem;
  }

  .section-angled,
  .section-angled-alt {
    clip-path: none;
    margin: 0;
    padding: 50px 0;
  }

  .event-card {
    flex-direction: column;
    gap: 14px;
  }

  .service-card {
    flex-direction: column;
  }

  footer.footer-contact .footer-grid {
    gap: 28px;
  }

  footer.footer-contact .footer-grid > div {
    flex: 1 1 100%;
  }

  .gallery-grid img {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 60vh;
    padding: 50px 0 36px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .header-hero h1 {
    font-size: 1.35rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }

  .content-section {
    padding: 30px 0;
  }

  .card img {
    height: 180px;
  }

  .testimonial-card {
    padding: 20px 18px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card .price {
    font-size: 1.85rem;
  }

  .navbar {
    top: 6px;
    width: calc(100% - 24px);
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1rem;
  }

  footer.footer-contact {
    padding: 40px 16px 24px;
  }

  .gallery-grid img {
    flex: 1 1 100%;
  }

  .map-container iframe {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.gmb-feature {
  background: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
  border-radius: 24px;
  padding: 40px 50px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  color: var(--white);
  line-height: 1.8;
}

.gmb-feature h3 {
  margin: 0 0 15px 0;
  font-size: 1.4em;
  font-weight: 700;
  color: var(--white);
}

.gmb-feature p {
  margin: 0 0 20px 0;
  font-size: 1em;
  opacity: 0.95;
  color: var(--white);
}

.gmb-feature a {
  color: var(--white);
  text-decoration: underline;
}

.gmb-feature a:hover {
  opacity: 0.9;
}

.gmb-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
}

.rating-stars {
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
}

.rating-label {
  font-weight: 700;
  font-size: 1.1em;
  color: var(--white);
}

.gmb-contact {
  margin: 15px 0 0 0;
  font-size: 0.95em;
  opacity: 0.9;
}

@media print {
  .navbar,
  .mobile-menu-toggle,
  .mobile-nav-overlay,
  .cta-block {
    display: none;
  }

  main { padding-top: 0; }
  body { color: #000; background: #fff; }

  .hero {
    min-height: auto;
    background: #fff;
    color: #000;
    padding: 20px 0;
  }

  .hero-content h1 {
    color: #000;
  }
}
