/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* New Color Palette - Warm & Serene */
  --primary: #8B5A3C;        /* Warm brown */
  --primary-light: #A67C52;  /* Lighter brown */
  --primary-dark: #6B4423;   /* Darker brown */
  --secondary: #D4AF8C;      /* Cream */
  --accent: #E8D5B7;         /* Light cream */
  --text-dark: #2D1B0E;      /* Dark brown */
  --text-light: #6B4423;     /* Medium brown */
  --text-muted: #8B6F47;     /* Muted brown */
  --bg-primary: #FDF9F5;     /* Warm white */
  --bg-secondary: #F5F0E8;   /* Light cream */
  --bg-accent: #F0E6D2;      /* Very light cream */
  --border: #D4AF8C;         /* Cream border */
  --shadow: rgba(139, 90, 60, 0.1);
  --gradient: linear-gradient(135deg, #8B5A3C 0%, #A67C52 50%, #D4AF8C 100%);
}

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-primary);
}

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

/* Header Styles */
.header {
  background-color: var(--bg-primary);
  box-shadow: 0 2px 10px var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand h1 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: var(--gradient);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Button Styles */
.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--primary);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 800;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.content-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 90, 60, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.content-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px var(--shadow), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-card:hover::before {
  left: 100%;
}

.content-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.content-card p {
  margin-bottom: 15px;
  color: var(--text-light);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid var(--border);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 3px solid var(--primary);
  transform: scale(1.05);
  background: var(--bg-accent);
}

.pricing-card.featured::before {
  content: "RECOMMANDÉ";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-item {
  margin: 1rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-item span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Form Styles */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.error-message {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--accent);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--secondary) 50%, transparent 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.footer-description {
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}

.footer-column a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--secondary);
  font-size: 0.95rem;
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-newsletter {
  text-align: right;
}

.footer-newsletter h5 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 300px;
  margin-left: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: var(--secondary);
  color: var(--primary-dark);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px var(--shadow);
  z-index: 10000;
  border: 2px solid var(--primary);
  max-width: 800px;
  margin: 0 auto;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.5;
  flex: 1;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Navigation Container and Logo Styles */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section-icon {
  width: 60px;
  height: 60px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 8px var(--shadow));
}

.section-icon:hover {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 8px 16px var(--shadow));
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 800;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Card Icons */
.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px var(--shadow));
}

.card-icon:hover {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 6px 12px var(--shadow));
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 50px;
  font-weight: 800;
}

.gallery-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.gallery-slide .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 40px 30px 30px;
  border-radius: 0 0 15px 15px;
}

.gallery-slide .gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.gallery-slide .gallery-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: white;
  transform: scale(1.2);
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.faq-item:hover {
  box-shadow: 0 4px 16px var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  background: white;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-accent);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  padding-right: 16px;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-accent);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Hero Image */
.hero-image {
  margin-top: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px var(--shadow);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-newsletter {
    text-align: center;
  }
  
  .newsletter-form {
    margin: 0 auto;
    flex-direction: column;
  }
  
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .gallery-container {
    height: 350px;
  }

  .gallery-slide .gallery-overlay {
    padding: 20px;
  }

  .gallery-slide .gallery-overlay h3 {
    font-size: 1.2rem;
  }

  .gallery-slide .gallery-overlay p {
    font-size: 0.9rem;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .navbar {
    padding: 1rem 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .section {
    padding: 30px 0;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .gallery-container {
    height: 280px;
  }

  .gallery-slide .gallery-overlay {
    padding: 15px;
  }

  .gallery-slide .gallery-overlay h3 {
    font-size: 1.1rem;
  }

  .gallery-slide .gallery-overlay p {
    font-size: 0.85rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation Active State */
.nav-link.active {
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 1px;
}

/* Mobile active navigation */
@media (max-width: 768px) {
  .nav-link.active {
    background-color: var(--bg-accent);
    border-radius: 4px;
    padding: 8px 12px;
  }

  .nav-link.active::after {
    display: none;
  }
}

/* Thank You Page Styles */
.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  margin-top: 100px;
  background: var(--gradient);
  color: white;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px var(--shadow);
}

.thank-you-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.thank-you-content h1 {
  margin-bottom: 1rem;
  font-weight: 800;
}

.thank-you-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.thank-you-actions {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thank-you-actions .btn-primary {
  background: white;
  color: var(--primary);
}

.thank-you-actions .btn-primary:hover {
  background: var(--primary);
  color: white;
  border-color: white;
}

.thank-you-actions .btn-secondary {
  background: var(--primary);
  color: white;
  border-color: white;
}

.thank-you-actions .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.thank-you-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-info h3 {
  margin-bottom: 1rem;
  color: white;
}

.thank-you-info ul {
  list-style: none;
  padding: 0;
}

.thank-you-info li {
  margin-bottom: 0.5rem;
}

.thank-you-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.thank-you-info a:hover {
  color: white;
  text-decoration: underline;
}

/* Policy Pages Styles */
.policy-page {
  padding: 120px 0 80px;
  background-color: var(--bg-primary);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--border);
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.policy-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.policy-section h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 25px;
  font-weight: 600;
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.policy-section ul {
  margin: 15px 0;
  padding-left: 30px;
}

.policy-section li {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.policy-contact {
  background: var(--bg-accent);
  padding: 30px;
  border-radius: 15px;
  margin-top: 60px;
  text-align: center;
}

.policy-contact h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.policy-contact p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.policy-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.policy-contact a:hover {
  text-decoration: underline;
}

/* Responsive adjustments for thank you and policy pages */
@media (max-width: 768px) {
  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .policy-content {
    padding: 30px 20px;
    margin: 0 20px;
  }

  .policy-header h1 {
    font-size: 2rem;
  }
}

/* Additional Content Blocks */
.thank-you-additional {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.thank-you-stats {
  padding: 60px 0;
  background: var(--gradient);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.thank-you-newsletter {
  padding: 60px 0;
  background: var(--bg-primary);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 800;
}

.newsletter-content p {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Button Outline Styles */
.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px var(--shadow);
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-outline:hover::before {
  left: 100%;
}

/* Mobile responsive for buttons */
@media (max-width: 768px) {
  .btn-outline {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Enhanced button effects */
.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  font-weight: 600;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--shadow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:active {
  transform: translateY(0) scale(1.01);
  box-shadow: 0 2px 10px var(--shadow);
}

/* Icon hover effects */
.section-icon:hover,
.card-icon:hover {
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 var(--shadow);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(139, 90, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 90, 60, 0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Animation classes */
.scroll-animate {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-animate.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.scroll-animate.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

.scroll-animate.animate-scaleIn {
  animation: scaleIn 0.8s ease-out forwards;
}

.scroll-animate.animate-slideInUp {
  animation: slideInUp 0.8s ease-out forwards;
}

/* Animation delays */
.scroll-animate.delay-1 {
  animation-delay: 0.1s;
}

.scroll-animate.delay-2 {
  animation-delay: 0.2s;
}

.scroll-animate.delay-3 {
  animation-delay: 0.3s;
}

.scroll-animate.delay-4 {
  animation-delay: 0.4s;
}

.scroll-animate.delay-5 {
  animation-delay: 0.5s;
}
