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

:root {
  --primary-color: #2C6E6A;
  --primary-light: #3D8C88;
  --primary-dark: #1F4F4C;
  --accent-color: #C9924A;
  --accent-hover: #D4A054;
  --bg-color: #F8F5F0;
  --text-color: #1A1A2E;
  --text-light: #4A4A5A;
  --white: #FFFFFF;
  --border-radius: 16px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; }
.section-padding { padding: 80px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; font-weight: 500; font-size: 1rem;
  cursor: pointer; border: none; transition: var(--transition); text-align: center;
}
.btn-primary { background-color: var(--primary-color); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(44, 110, 106, 0.3); }
.btn-accent { background-color: var(--accent-color); color: var(--white); }
.btn-accent:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(201, 146, 74, 0.3); }

.header {
  position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px); z-index: 1000; transition: var(--transition);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary-color); }
.logo img { width: 40px; height: 40px; border-radius: 8px; }
.logo span { color: var(--accent-color); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; }
.nav-links a:hover { color: var(--primary-color); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: var(--white); min-width: 250px;
  box-shadow: var(--box-shadow); border-radius: 8px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition); padding: 10px 0;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; }
.dropdown-menu li a:hover { background-color: var(--bg-color); }

.hamburger { display: none; cursor: pointer; background: none; border: none; font-size: 1.5rem; color: var(--primary-color); }

.hero {
  padding-top: 120px; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(248,245,240,1) 0%, rgba(220,230,225,1) 100%);
  position: relative; overflow: hidden;
}
.hero-content { max-width: 600px; position: relative; z-index: 1; }
.hero-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%; }
.hero-image { flex: 1; max-width: 500px; position: relative; z-index: 1; }
.hero-image img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 100%; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 30px; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 20px; }
.hero-stats div h4 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 5px; }
.hero-stats div p { font-size: 0.9rem; color: var(--text-light); }

.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.services-grid > * { flex: 1 1 250px; max-width: 350px; }
.features-grid, .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.service-card {
  background: var(--white); border-radius: var(--border-radius); padding: 40px 30px;
  text-align: center; box-shadow: var(--box-shadow); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-10px); }
.service-icon {
  width: 60px; height: 60px; background: var(--bg-color); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  color: var(--primary-color); font-size: 1.5rem;
}
.learn-more { color: var(--primary-color); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.feature-item, .step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px; }
.feature-icon, .step-icon {
  width: 80px; height: 80px; background: var(--white); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 2rem; color: var(--accent-color);
  box-shadow: var(--box-shadow); margin-bottom: 20px;
}

.testimonials { background-color: var(--primary-dark); color: var(--white); }
.testimonials h2 { color: var(--white); }
.testimonial-card {
  background: rgba(255, 255, 255, 0.05); border-radius: var(--border-radius);
  padding: 40px; border: 1px solid rgba(255, 255, 255, 0.1);
}
.stars { color: var(--accent-color); margin-bottom: 15px; }
.client-info { margin-top: 20px; display: flex; align-items: center; gap: 15px; }
.client-details h4 { color: var(--white); margin-bottom: 0; }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 8px; margin-bottom: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.faq-question {
  width: 100%; text-align: left; padding: 20px; background: none; border: none;
  font-size: 1.1rem; font-weight: 600; color: var(--primary-dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent-color); transition: var(--transition); }
.faq-item.active .faq-question::after { content: '-'; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; color: var(--text-light); }
.faq-item.active .faq-answer { padding-bottom: 20px; }

.contact-section { background-color: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-form { background: var(--bg-color); padding: 40px; border-radius: var(--border-radius); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-control {
  width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px;
  font-family: inherit; font-size: 1rem; transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary-color); }
.form-message { margin-top: 15px; padding: 10px; border-radius: 8px; display: none; }
.form-message.success { display: block; background-color: #d4edda; color: #155724; }
.form-message.error { display: block; background-color: #f8d7da; color: #721c24; }

.footer { background-color: var(--text-color); color: rgba(255, 255, 255, 0.7); padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer h3 { color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent-color); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }

.float-btn {
  position: fixed; bottom: 30px; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  color: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 99; transition: var(--transition);
}
.whatsapp-float { right: auto; left: 30px; background-color: #25D366; animation: pulse 2s infinite; }
.whatsapp-float:hover { background-color: #128C7E; }
.back-to-top { right: 30px; background-color: var(--primary-color); opacity: 0; visibility: hidden; cursor: pointer; border: none; }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background-color: var(--primary-dark); }

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.page-header { padding: 160px 0 80px; background-color: var(--primary-dark); color: var(--white); text-align: center; }
.page-header h1 { color: var(--white); margin-bottom: 0; }
.content-section { padding: 60px 0; }
.content-section p, .content-section ul, .content-section ol { margin-bottom: 20px; }
.content-section ul, .content-section ol { margin-left: 20px; }
.content-section li { margin-bottom: 10px; }

/* Carousel Styles */
.carousel-section { width: 100%; overflow: hidden; padding: 40px 0; background: var(--bg-color); }
.carousel-track { display: flex; gap: 20px; width: max-content; animation: scroll 30s linear infinite; }
.carousel-track img { height: 250px; width: 350px; object-fit: cover; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-350px * 5 - 20px * 5)); } }

@media (max-width: 768px) {
  .nav-links {
    position: absolute; top: 80px; left: 0; width: 100%; background: var(--white);
    flex-direction: column; padding: 20px; transform: translateY(-150%); opacity: 0;
  }
  .nav-links.active { transform: translateY(0); opacity: 1; }
  .dropdown-menu { position: static; display: none; opacity: 1; visibility: visible; box-shadow: none; }
  .dropdown:hover .dropdown-menu { display: block; }
  .hamburger { display: block; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero-wrapper { flex-direction: column; text-align: center; }
  .hero-image { margin-top: 30px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
}
