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

:root {
  --primary: #047857; /* Forest Green */
  --primary-hover: #065f46;
  --text-main: #1e293b; /* Oxford Gray */
  --text-muted: #64748b;
  --bg-color: #ffffff;
  --bg-secondary: #f8fafc;
  --whatsapp: #25D366;
  --whatsapp-hover: #1da851;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(4, 120, 87, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(4, 120, 87, 0.23);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
  width: 100%;
  border-radius: 8px;
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeIn 1s ease-out;
}

.hero p {
  color: #f1f5f9;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* Service Card */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Trust Section */
.trust {
  background-color: var(--bg-secondary);
  padding: 5rem 0;
  text-align: center;
}

.trust-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 250px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.trust-item span {
  font-weight: 500;
  color: var(--text-main);
  font-size: 1.125rem;
}

.trust-header h2 {
  margin-bottom: 1rem;
}

.trust-subtitle {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.trust-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: -0.5rem;
}

/* Badges */
.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.badge-sale {
  background-color: #f97316; /* Energetic Orange */
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Pricing */
.pricing {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
}

.web-price {
  color: #059669; /* Prominent Green */
  font-weight: 800;
  font-size: 1.25rem;
}

.price-per-person {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.weather-guarantee {
  background-color: #fef3c7;
  color: #92400e;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.micro-copy {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  text-align: center;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

/* Specs */
.specs {
  list-style: none;
  margin-bottom: 1.5rem;
}

.specs li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.faq-item h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

/* Footer */
footer {
  background-color: var(--bg-color);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

footer p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }
  .trust-features {
    gap: 2rem;
  }
}
