/* =============================================
   AMARI METHOD - WEBSITE STYLESHEET
   Matching original design with elegant cards
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bona+Nova:ital@0;1&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:wght@400;500;600;700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --primary-teal: #3d8b7d;
  --primary-teal-dark: #2a6b5f;
  --primary-teal-light: #5ba598;
  --dark-bg: #2a2a2a;
  --light-bg: #fffef5;
  --text-dark: #2a2a2a;
  --text-light: #666;
  --border-light: #ede8e0;
  --card-bg: #f5f0eb;

  --font-serif: 'Bona Nova', 'Libre Baskerville', serif;
  --font-sans: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #fffef5;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-teal-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  background: #fffef5;
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--primary-teal);
}

.nav-cta {
  background: var(--primary-teal) !important;
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-teal-dark) !important;
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero {
  background: #fffef5;
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.hero .container {
  max-width: 900px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  line-height: 1.15;
}

.hero-image-container {
  margin: 3rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-subheading {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 2rem 0 2.5rem;
  font-weight: 400;
  font-family: var(--font-serif);
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.hero-guarantee-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 400;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: none;
  font-family: var(--font-sans);
  position: relative;
}

.btn::before {
  content: '→';
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  font-size: 1.1em;
  order: -1;
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.btn-primary {
  background: var(--dark-bg);
  color: white;
  border-color: var(--dark-bg);
}

.btn-primary:hover {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
  /* Subtle hover - arrow animation is the main effect */
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 1px solid #999;
}

.btn-secondary:hover {
  background: white;
  color: var(--text-dark);
  border-color: var(--text-dark);
  /* No background color change - just arrow animation */
}

.btn-white {
  background: white;
  color: var(--primary-teal);
  border: 2px solid white;
  font-weight: 700;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-white-outline:hover {
  background: white;
  color: var(--primary-teal);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  background: #fffef5;
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.how-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.how-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.how-card h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.how-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
  font-style: italic;
}

.how-card ul {
  list-style: none;
  padding: 0;
}

.how-card li {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.how-card li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 700;
}

/* ===== TESTIMONIALS SECTION ===== */
#testimonials {
  background: white;
  padding: 5rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-teal);
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.testimonial-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-teal);
  display: block;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== WHAT MAKES DIFFERENT ===== */
#what-makes-different {
  background: white;
  padding: 5rem 2rem;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-item {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-item h3 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.comparison-item p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
#services {
  background: #fffef5;
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 700;
}

/* ===== FAQ ===== */
#faq {
  background: white;
  padding: 5rem 2rem;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: white;
  font-weight: 600;
  color: var(--primary-teal);
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(61, 139, 125, 0.05);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.5);
}

.faq-item.open .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-final h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-bg);
  color: white;
  padding: 3rem 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

section {
  position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    padding: 1rem 0;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .container {
    padding: 0 1rem;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .hero-image-container {
    margin: 1.5rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .comparison {
    grid-template-columns: 1fr;
  }
}
