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

:root {
  --primary: #1b4332;
  --primary-light: #2d6a4f;
  --secondary: #d4a373;
  --bg-light: #f4f1de;
  --bg-white: #ffffff;
  --text-dark: #2d3142;
  --text-light: #f8f9fa;
  --border-color: #e5e5e5;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.max-width-600 { max-width: 600px; margin: 0 auto; }
.max-width-700 { max-width: 700px; margin: 0 auto; }
.max-width-800 { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }
.section { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light); }
.margin-top { margin-top: 3rem; }
.subtitle {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Header & Nav */
.site-header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    gap: 1rem;
  }
  .nav-links.active { display: flex; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover { opacity: 0.9; }
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}
.btn-block {
  display: block;
  width: 100%;
}

/* Hero Section */
.hero-section {
  color: var(--text-light);
  text-align: center;
  padding: 8rem 0;
}
.hero-container h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.hero-container p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  .hero-container h1 { font-size: 2.2rem; }
  .hero-container p { font-size: 1rem; }
}

/* Cards & Triggers */
.card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.icon-box {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.rounded-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.shadow { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* Pricing Cards */
.price-card { position: relative; }
.price-card.featured { border: 2px solid var(--secondary); }
.price-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}
.price-card .period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
}
.plan-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  text-align: left;
}
.plan-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Testimonials */
.testimonial-card .quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--secondary);
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.checkbox-group input { margin-top: 0.25rem; }
.checkbox-group label {
  font-weight: 400;
  font-size: 0.85rem;
}
.checkbox-group label a { color: var(--primary); }

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}
.faq-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  font-size: 1rem;
  color: var(--text-dark);
}
.faq-item.active .faq-item-content {
  max-height: 500px;
  transition: max-height 0.3s ease-in-out;
  margin-top: 0.75rem;
}
.faq-item-title::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
}
.faq-item.active .faq-item-title::after { content: '−'; }

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 0;
}
.site-footer h3, .site-footer h4 { color: var(--text-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-links ul, .footer-legal ul { list-style: none; }
.footer-links li, .footer-legal li { margin-bottom: 0.5rem; }
.footer-links a, .footer-legal a {
  color: #c7d1cc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-legal a:hover { color: var(--text-light); }
.corporate-disclaimer {
  font-size: 0.8rem;
  color: #a3b899;
  margin-top: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  gap: 1rem;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}
@media (max-width: 576px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-title-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}
.page-title-section h1 { margin-bottom: 0.5rem; }
.page-title-section p { font-size: 1.1rem; }

.service-detail-card {
  padding: 0;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.card-body { padding: 2rem; }
.thank-you-main, .error-main { padding: 6rem 0; }