/* Base Styles */
:root {
  --plum: #4C0033;
  --coral: #FF6F59;
  --cream: #FFF3E1;
  --aqua: #A8E6CF;
  --charcoal: #2E2E2E;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--plum);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--coral);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--plum);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--coral);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--plum);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}

.btn-secondary:hover {
  background-color: var(--plum);
  color: var(--white);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--plum);
}

.logo a {
  color: inherit;
  text-decoration: none;
}

.main-navigation ul {
  display: flex;
  align-items: center;
}

.main-navigation li {
  margin-left: 25px;
}

.main-navigation a {
  color: var(--charcoal);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 0;
}

.main-navigation a:hover {
  color: var(--coral);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: left;
  margin-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(76, 0, 51, 0.8) 0%, rgba(76, 0, 51, 0.6) 70%, rgba(76, 0, 51, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--cream);
}

/* About Section */
.about .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about h2 {
  text-align: center;
  margin-bottom: 40px;
}

.about-text .highlight {
  color: var(--coral);
  font-weight: 700;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(76, 0, 51, 0.7) 0%, rgba(76, 0, 51, 0) 100%);
}

/* Services Section */
.services {
  background-color: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

/* Benefits Section */
.benefits .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background-color: var(--aqua);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--plum);
  font-size: 1.8rem;
}

.benefit-content {
  width: 100%;
}

.benefit-content h3 {
  margin-bottom: 0.8rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials h2 {
  color: var(--white);
}

.testimonial-slider {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slide:nth-child(1) {
  opacity: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--plum);
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* Pricing Section */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.toggle-label {
  padding: 10px 20px;
  cursor: pointer;
  background-color: var(--light-gray);
  font-weight: 600;
}

.toggle-label:first-child {
  border-radius: 4px 0 0 4px;
}

.toggle-label:last-child {
  border-radius: 0 4px 4px 0;
}

.toggle-label.active {
  background-color: var(--plum);
  color: var(--white);
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-plan {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.pricing-plan.popular {
  transform: scale(1.05);
  border: 2px solid var(--coral);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--coral);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
}

.plan-features {
  margin-bottom: 30px;
}

.plan-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.plan-features li::before {
  content: "✓";
  color: var(--aqua);
  position: absolute;
  left: 0;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--light-gray);
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-answer {
  background-color: var(--white);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

input[type="checkbox"].faq-toggle {
  display: none;
}

input[type="checkbox"].faq-toggle:checked + .faq-question::after {
  content: "-";
}

input[type="checkbox"].faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 111, 89, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 111, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 89, 0);
  }
}

/* Footer */
.site-footer {
  background-color: var(--plum);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.mission {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--coral);
}

.contact-info a:hover {
  color: var(--cream);
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--aqua);
}

.footer-links a:hover {
  color: var(--coral);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  max-width: 350px;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cookie-content p {
  margin-bottom: 15px;
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: 120px auto 60px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--plum);
}

.policy-container h1 {
  text-align: center;
  margin-bottom: 30px;
}

.policy-container h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}
