/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1B4332;
  --green: #2D6A4F;
  --green-mid: #40916C;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --cream: #F5F5DC;
  --cream-light: #FAFAF0;
  --white: #FFFFFF;
  --orange: #F4A261;
  --coral: #E76F51;
  --blue: #457B9D;
  --blue-dark: #1D3557;
  --text: #1A1A2E;
  --text-light: #4A4A5A;
  --text-muted: #7A7A8A;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--green);
  background: var(--green-pale);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: var(--radius-md) !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 30%, #40916C 60%, #52B788 100%);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(82, 183, 136, 0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(244, 162, 97, 0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(231, 111, 81, 0.2) 0%, transparent 50%);
}

.geo-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.geo-1 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  top: -50px;
  right: 10%;
  animation-delay: 0s;
}

.geo-2 {
  width: 150px;
  height: 150px;
  background: var(--coral);
  top: 20%;
  left: 5%;
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  animation-delay: 1s;
}

.geo-3 {
  width: 80px;
  height: 80px;
  background: var(--cream);
  bottom: 30%;
  left: 15%;
  animation-delay: 2s;
}

.geo-4 {
  width: 200px;
  height: 200px;
  background: var(--blue);
  bottom: -30px;
  right: 5%;
  animation-delay: 3s;
}

.geo-5 {
  width: 60px;
  height: 60px;
  background: var(--orange);
  top: 40%;
  right: 25%;
  border-radius: var(--radius-sm);
  transform: rotate(30deg);
  animation-delay: 1.5s;
}

.geo-6 {
  width: 120px;
  height: 120px;
  background: var(--green-pale);
  top: 15%;
  left: 30%;
  animation-delay: 2.5s;
}

.geo-7 {
  width: 40px;
  height: 40px;
  background: var(--coral);
  bottom: 20%;
  right: 35%;
  border-radius: var(--radius-sm);
  transform: rotate(60deg);
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-accent {
  color: var(--orange);
}

.hero-accent2 {
  color: var(--cream);
  position: relative;
}

.hero-accent2::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--coral);
  border-radius: 3px;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(250, 245, 220, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244, 162, 97, 0.4);
}

.btn-primary:hover {
  background: #e8943a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 162, 97, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(250, 245, 220, 0.7);
  font-weight: 600;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Image */
.hero-img-wrap {
  position: relative;
  z-index: 2;
}

.hero-img-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 480/560;
}

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

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}

.float-card-1 {
  top: 15%;
  left: -30px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 20%;
  left: -20px;
  animation-delay: 2s;
}

.float-icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
}

.hero-float-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
  position: relative;
}

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--green-dark);
}

.text-gradient {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ========== ABOUT ========== */
.about {
  background: var(--cream-light);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/620;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 280px;
  aspect-ratio: 280/320;
  border: 6px solid var(--cream-light);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(244, 162, 97, 0.4);
}

.about-badge svg {
  width: 18px;
  height: 18px;
}

.about-text {
  padding: 20px 0;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.about-feature-icon.green { background: var(--green); }
.about-feature-icon.orange { background: var(--orange); }
.about-feature-icon.blue { background: var(--blue); }

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== SERVICES ========== */
.services {
  background: var(--cream);
  overflow: hidden;
}

.services-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.svc-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.svc-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: -100px;
  right: -100px;
}

.svc-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--orange);
  bottom: -50px;
  left: -50px;
}

.svc-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--coral);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.service-card.featured {
  transform: scale(1.03);
}

.service-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.service-card-color {
  height: 8px;
}

.service-card-body {
  padding: 32px 28px;
}

.service-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.service-card-body > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== METHODOLOGY ========== */
.methodology {
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
}

.method-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.method-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.method-circle-1 {
  width: 500px;
  height: 500px;
  background: var(--green-light);
  top: -200px;
  left: -100px;
}

.method-circle-2 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  bottom: -100px;
  right: -50px;
}

.method-circle-3 {
  width: 150px;
  height: 150px;
  background: var(--coral);
  top: 30%;
  right: 20%;
}

.methodology .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-pale);
}

.methodology .section-title {
  color: var(--white);
}

.methodology .section-desc {
  color: rgba(250, 245, 220, 0.7);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.method-step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.method-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.method-step-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}

.method-step-dot {
  width: 12px;
  height: 12px;
  background: var(--green-light);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.method-step h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.method-step p {
  font-size: 0.9rem;
  color: rgba(250, 245, 220, 0.7);
  line-height: 1.7;
}

.method-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.method-extra-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.method-extra-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.method-extra-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.method-extra-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 2px;
}

.method-extra-card span {
  font-size: 0.8rem;
  color: rgba(250, 245, 220, 0.6);
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--cream-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.gallery-item--large {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 500px;
}

.gallery-item--large img {
  min-height: 500px;
}

.gallery-item:not(.gallery-item--large) {
  aspect-ratio: 400/350;
}

.gallery-item--wide {
  grid-column: span 7;
  aspect-ratio: 800/350;
}

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 50%, var(--blue) 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  top: -80px;
  left: -80px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--coral);
  bottom: -50px;
  right: 10%;
}

.cta-shape-3 {
  width: 100px;
  height: 100px;
  background: var(--cream);
  top: 20%;
  right: 25%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(250, 245, 220, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.contact-form-wrap {
  position: relative;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--orange));
}

.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8E8E8;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

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

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--green);
  font-weight: 700;
}

.form-success h4 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -100px;
  right: -50px;
}

.footer-shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(244, 162, 97, 0.05);
  top: -50px;
  left: -50px;
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(250, 245, 220, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Fredoka', sans-serif;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(250, 245, 220, 0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 245, 220, 0.4);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .service-card.featured {
    transform: none;
  }

  .service-card.featured:hover {
    transform: translateY(-8px);
  }

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

  .method-extra {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--large {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 350px;
  }

  .gallery-item--large img {
    min-height: 350px;
  }

  .gallery-item--wide {
    grid-column: span 12;
  }

  .gallery-item:not(.gallery-item--large) {
    grid-column: span 6;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-content {
    padding: 40px 24px;
  }

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

  .hero-float-card {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-extra {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item:not(.gallery-item--large) {
    grid-column: span 1;
    aspect-ratio: 400/300;
  }

  .gallery-item--large img,
  .gallery-item img {
    min-height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-img-float {
    right: -10px;
    bottom: -20px;
    width: 200px;
  }

  .about-badge {
    top: -15px;
    right: 20px;
  }
}
