/* Paste from Cloud (CSS) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2d5016;
  --primary-light: #4a7c2c;
  --accent: #a8d08d;
  --dark: #1a1a1a;
  --light: #f5f5f5;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: #fff;
}

/* Animated Header */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a0f 0%, #2d5016 50%, #4a7c2c 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(168,208,141,0.1)"/><stop offset="100%" style="stop-color:rgba(45,80,22,0.2)"/></linearGradient></defs><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="url(%23grad)"/></svg>');
  background-size: cover;
  opacity: 0.3;
  animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1200px;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 50px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(168,208,141,0.3);
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(168,208,141,0.5);
  background: #b8e09d;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Stats Bar */
.stats-bar {
  background: var(--dark);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Section Styles */
.section { padding: 100px 20px; }
.section-dark { background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%); }
.container { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 20px auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

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

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(45,80,22,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 40px auto 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

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

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
}

.service-card ul { list-style: none; padding: 0; }

.service-card li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Why Choose Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.why-card {
  text-align: center;
  padding: 50px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(45,80,22,0.12);
}

.why-icon { font-size: 3.5rem; margin-bottom: 25px; }

.why-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.why-card p { color: #666; line-height: 1.7; }

/* Process Timeline */
.process-timeline {
  max-width: 1000px;
  margin: 60px auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: translateX(-50%);
}

.process-step { display: flex; margin-bottom: 60px; position: relative; }
.process-step:nth-child(even) { flex-direction: row-reverse; }

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 30px rgba(45,80,22,0.3);
  z-index: 2;
}

.process-content {
  flex: 1;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin: 0 60px;
}

.process-step:nth-child(even) .process-content { text-align: right; }

.process-content h4 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.process-content p { color: #666; line-height: 1.7; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168,208,141,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

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

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
}

.cta-section p {
  font-size: 1.4rem;
  margin-bottom: 50px;
  opacity: 0.95;
}

.contact-box {
  background: white;
  color: var(--dark);
  padding: 50px;
  border-radius: 25px;
  display: inline-block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  text-align: left;
  max-width: 600px;
}

.contact-box h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.contact-box p { font-size: 1.1rem; margin: 15px 0; color: #555; }

.contact-box strong {
  color: var(--primary);
  display: inline-block;
  min-width: 100px;
}

@media (max-width: 768px) {
  .process-timeline::before { left: 30px; }
  .process-step, .process-step:nth-child(even) { flex-direction: column; }
  .process-number { left: 30px; transform: translateX(0); }
  .process-content, .process-step:nth-child(even) .process-content {
    margin-left: 100px;
    margin-right: 0;
    text-align: left;
  }
}

/* Add-ons */
.topbar{
  position: absolute;
  top: 0; left:0; right:0;
  z-index: 3;
  padding: 18px 22px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  color:white;
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}
.brand{ font-weight: 800; letter-spacing: 1px; }
.topbar a{
  color:white;
  text-decoration:none;
  font-weight:600;
  margin-left:18px;
  opacity:0.95;
}
.topbar a:hover{ opacity:1; text-decoration:underline; }

.btn-row{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.secondary-button{
  display:inline-block;
  margin-top:40px;
  padding:18px 50px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-weight:700;
  font-size:1.05rem;
  border-radius:50px;
  text-decoration:none;
  border:2px solid rgba(255,255,255,0.35);
  transition: all 0.35s ease;
}
.secondary-button:hover{
  transform: translateY(-5px);
  background: rgba(255,255,255,0.26);
}

.footer{
  background: #0f0f0f;
  color: rgba(255,255,255,0.85);
  padding: 30px 20px;
  text-align:center;
  font-size: 0.95rem;
}
