@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif:
    "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times,
    serif;

  --color-brand-green: #5d8076;
  --color-brand-green-dark: #4a665e;
  --color-brand-dark: #35403c;
  --color-brand-light: #eef2f0;
  --color-brand-gray: #f5f7f6;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-900: #111827;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-gray-900);
  background-color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Typography utilities */
.font-serif {
  font-family: var(--font-serif);
}
.italic {
  font-style: italic;
}
.font-bold {
  font-weight: 700;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-light {
  font-weight: 300;
}

.text-brand-dark {
  color: var(--color-brand-dark);
}
.text-brand-green {
  color: var(--color-brand-green);
}
.text-gray-600 {
  color: var(--color-gray-600);
}
.text-gray-500 {
  color: var(--color-gray-500);
}
.text-white {
  color: #fff;
}

.bg-brand-light {
  background-color: var(--color-brand-light);
}
.bg-brand-gray {
  background-color: var(--color-brand-gray);
}
.bg-brand-dark {
  background-color: var(--color-brand-dark);
}
.bg-brand-green {
  background-color: var(--color-brand-green);
}
.bg-white {
  background-color: #fff;
}

/* Layout utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  z-index: 60;
  position: relative;
}

.mobile-menu-btn {
  display: block;
  z-index: 60;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.mobile-menu-btn i {
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-brand-green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-links.active {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background-color: transparent;
    opacity: 1;
    pointer-events: auto;
    font-size: 0.75rem;
  }
}

.nav-item {
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lucide {
  display: inline-block;
  vertical-align: middle;
}

/* UI Components */
.label-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.label-badge.flex-center {
  justify-content: center;
}

.label-line {
  width: 32px;
  height: 2px;
  background-color: var(--color-brand-green);
}

.label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gray-600);
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 32px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-brand-green);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-brand-green-dark);
}

.btn-icon-wrapper {
  background-color: #fff;
  color: var(--color-brand-green);
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon-wrapper {
  transform: rotate(45deg);
}

.btn-outline {
  border: 1px solid var(--color-brand-dark);
  color: var(--color-brand-dark);
}

.btn-outline:hover {
  background-color: var(--color-brand-dark);
  color: #fff;
}

.btn-outline .btn-icon-wrapper {
  background-color: var(--color-brand-dark);
  color: #fff;
}

.btn-outline:hover .btn-icon-wrapper {
  background-color: #fff;
  color: var(--color-brand-dark);
}

/* Sections */
.section {
  padding: 96px 0;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #7b9c8f 0%, #5d8076 50%, #4a665e 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 192px;
    padding-bottom: 128px;
  }
}

.hero-bg-shape {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-area {
  max-width: 36rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title span {
  color: #fff;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.625;
  max-width: 28rem;
}

.hero .label-text {
  color: #fff;
}

.hero .label-line {
  background-color: #fff;
}

.hero .btn-primary {
  background-color: #fff;
  color: var(--color-brand-dark);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
  background-color: var(--color-brand-gray);
  transform: translateY(-2px);
}

.hero .btn-primary .btn-icon-wrapper {
  background-color: var(--color-brand-dark);
  color: #fff;
}

.hero .btn-primary:hover .btn-icon-wrapper {
  background-color: var(--color-brand-green);
}

.trust-badge {
  margin-top: 64px;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.avatars {
  display: flex;
}

.avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -16px;
}
.avatars img:first-child {
  margin-left: 0;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 4px;
}
.stars i {
  fill: currentColor;
  width: 16px;
  height: 16px;
}
.rating-num {
  color: var(--color-brand-dark);
  font-weight: 700;
  font-size: 0.875rem;
  margin-left: 4px;
}
.trust-text {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.hero-image-area {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 85%;
  max-width: 28rem;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  position: absolute;
  bottom: 48px;
  right: 0;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateX(16px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-dark);
}
.contact-label {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

/* About Section */
.about-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
  color: #fff;
}
.about-image:hover .play-btn {
  transform: scale(1.1);
}
.play-btn i {
  margin-left: 4px;
  fill: #fff;
  width: 32px;
  height: 32px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-brand-dark);
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}
.section-desc {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 40px;
  line-height: 1.625;
}

/* Services */
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-3xl {
  max-width: 48rem;
}
.mb-20 {
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  gap: 64px 32px;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: #fff;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.service-img-wrap {
  height: 288px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-content {
  padding: 40px;
  position: relative;
  text-align: center;
}

.service-icon {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  background-color: var(--color-brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #fff;
  color: var(--color-brand-green);
}
.service-icon i {
  width: 40px;
  height: 40px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-top: 24px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  padding: 0 16px;
  border-left: 1px solid var(--color-gray-200);
}
.stat-item:first-child {
  border-left: none;
}
@media (max-width: 767px) {
  .stat-item:nth-child(odd) {
    border-left: none;
  }
}

.stat-num {
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-brand-dark);
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .stat-num {
    font-size: 3.75rem;
  }
}
.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-img-wrap {
  border-radius: 2.5rem;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  border-radius: 2.5rem;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-card.dark {
  background-color: var(--color-brand-dark);
  color: #fff;
}
.feature-card.light {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.feature-icon {
  margin-bottom: 40px;
}
.feature-card.dark .feature-icon {
  color: #fff;
}
.feature-card.light .feature-icon {
  color: var(--color-brand-dark);
}
.feature-icon i {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-card.light .feature-title {
  color: var(--color-brand-dark);
}

.feature-desc {
  font-size: 0.875rem;
  line-height: 1.625;
}
.feature-card.dark .feature-desc {
  color: rgba(255, 255, 255, 0.7);
}
.feature-card.light .feature-desc {
  color: var(--color-gray-500);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  border: 1px solid var(--color-gray-100);
  border-radius: 2.5rem;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 350px;
  background-color: #fff;
}
.testimonial-card.highlight {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
  z-index: 10;
  height: 400px;
}

.quote-icon {
  position: absolute;
  top: 40px;
  left: 40px;
  color: var(--color-brand-dark);
}
.quote-icon i {
  width: 48px;
  height: 48px;
}

.testimonial-text-wrap {
  position: relative;
  z-index: 10;
  margin-top: 64px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-brand-dark);
  line-height: 1.625;
}

.author-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  background-color: #fff;
  border-radius: 9999px;
  padding: 8px;
  padding-right: 24px;
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: max-content;
}
.testimonial-card.highlight .author-wrap {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}

/* --- ANIMATIONS & HOVER EFFECTS --- */

/* Scroll Reveal Classes (added via JS later) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for multiple items */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Enhanced Hover Effects */

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Service Cards */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.service-icon {
  transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.service-card:hover .service-icon {
  transform: translateX(-50%) translateY(-10px) scale(1.1);
  background-color: var(--color-brand-green);
  color: #fff;
  border-color: var(--color-brand-light);
}

/* Feature Cards (Why Choose Us) */
.feature-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card.light:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08);
}

.feature-card.dark {
  position: relative;
  overflow: hidden;
}

.feature-card.dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.feature-card.dark:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Blog Cards */
.blog-card {
  border-radius: 2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.blog-content {
  padding: 32px;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--color-brand-green);
}

/* Nav Links Underline Animation */
.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-brand-green);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.hero .nav-item::after {
  background-color: #fff;
}

.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* CTA Section improvements */
.cta-section {
  padding: 96px 0;
  background-color: var(--color-brand-dark);
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,128,118,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  max-width: 42rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.btn-cta {
  background-color: var(--color-brand-green);
  color: #fff;
}
.btn-cta:hover {
  background-color: #fff;
  color: var(--color-brand-dark);
}
.btn-cta .btn-icon-wrapper {
  background-color: #fff;
  color: var(--color-brand-green);
}
.btn-cta:hover .btn-icon-wrapper {
  background-color: var(--color-brand-dark);
  color: #fff;
}

/* Footer layout */
.footer {
  background-color: var(--color-brand-gray);
  padding-top: 96px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brand-dark);
  margin-bottom: 24px;
}

.footer-desc {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-brand-green);
  transform: translateX(4px);
}

.subscribe-wrap {
  display: flex;
  background: #fff;
  padding: 8px;
  border-radius: 9999px;
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-wrap:focus-within {
  border-color: var(--color-brand-green);
  box-shadow: 0 0 0 3px rgba(93, 128, 118, 0.1);
}

.subscribe-input {
  flex: 1;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--color-gray-900);
}

.subscribe-input::placeholder {
  color: var(--color-gray-500);
}

.btn-subscribe {
  background-color: var(--color-brand-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-subscribe:hover {
  background-color: var(--color-brand-green);
  transform: scale(1.05);
}

.btn-subscribe:active {
  transform: scale(0.95);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-200);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--color-gray-500);
  font-size: 0.875rem;
}

.footer-bottom span {
  color: var(--color-brand-dark);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-links a {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-brand-green);
}
.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-weight: 700;
  color: var(--color-brand-dark);
  font-size: 0.875rem;
}
.author-role {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-card {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(53, 64, 60, 0.9),
    rgba(53, 64, 60, 0.4),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 24rem;
}

/* CTA */
.cta-section {
  background-color: var(--color-brand-dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom-left-radius: 100px;
  z-index: 0;
}

.cta-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta-wrap {
    flex-direction: row;
  }
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  max-width: 42rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.btn-cta {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.btn-cta:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-cta .btn-icon-wrapper {
  background-color: #fff;
  color: var(--color-brand-dark);
}

/* Footer */
.footer {
  background-color: #2a332f;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 96px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  margin-bottom: 80px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 4fr 2fr 2fr 4fr;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 32px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 32px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.875rem;
}
.footer-links a {
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #fff;
}

.subscribe-wrap {
  display: flex;
  gap: 16px;
}
.subscribe-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  font-size: 0.875rem;
  color: #fff;
  width: 100%;
}
.subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.subscribe-input:focus {
  border-color: #fff;
  outline: none;
}

.btn-subscribe {
  background-color: var(--color-brand-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 32px;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-subscribe:hover {
  background-color: var(--color-brand-green-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom span {
  color: #fff;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 32px;
}
.social-links a {
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
  background-color: #20ba59;
  color: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
