/*=============== FONTS ===============*/
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v22-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-v22-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/oswald-v53-latin-regular.woff2") format("woff2");
}

/*=============== VARIABLES ===============*/
:root {
  /* Colors */
  --primary-color: #9b5f7b;
  --primary-color-light: #ffd0e6;
  --primary-color-dark: #8c4a61;
  --secondary-color: #386b5a;
  --secondary-color-light: #a5f4d9;
  --secondary-color-dark: #2c795b;
  --accent-color: #2d3047;
  --text-color: #333333;
  --text-color-light: #666666;
  --background-color: #ffffff;
  --background-color-alt: #f9f9f9;
  --border-color: #eeeeee;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;

  /* Typography */
  --body-font: "Poppins", sans-serif;
  --heading-font: "Oswald", sans-serif;
  --h1-font-size: 3.5rem;
  --h2-font-size: 2.5rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /* Font weights */
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-back: -1;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*=============== BASE ===============*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--accent-color);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  text-decoration: underline;
  font-weight: 500;
  color: var(--primary-color-dark);
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  outline: none;
  border: none;
}

button {
  cursor: pointer;
}

strong.service-title,
strong.pricing-title,
strong.custom-content,
strong.info-title,
strong.footer-heading {
  display: block;
  font-weight: var(--font-semi-bold);
}

/*=============== REUSABLE CLASSES ===============*/
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  color: var(--accent-color);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-full);
}

.section-subtitle {
  color: var(--text-color-light);
  font-size: var(--normal-font-size);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  font-weight: var(--font-semi-bold);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background-color: white;
  color: var(--primary-color-dark);
}

.btn-light:hover {
  background-color: var(--background-color-alt);
  color: var(--primary-color-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--small-font-size);
}

.g-recaptcha {
  display: inline-block;
  margin: 0 auto;
  transform: scale(0.8);
  transform-origin: 0 0;
  width: 100%;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: white;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin: 0 var(--spacing-sm);
}

.nav-link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  position: relative;
  transition: color var(--transition-normal);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--spacing-md);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--accent-color);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

/*=============== HERO SECTION ===============*/
.hero {
  position: relative;
  padding: 180px 0 100px;
  background-color: var(--background-color-alt);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--spacing-md);
  color: var(--accent-color);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  animation: float 6s ease-in-out infinite;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-color-light);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
  z-index: var(--z-back);
  opacity: 0.5;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*=============== ABOUT SECTION ===============*/
.about {
  background-color: var(--background-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text h3 {
  color: var(--accent-color);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-lg);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

.stat-text {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/*=============== SERVICES SECTION ===============*/
.services {
  background-color: var(--background-color-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.service-title {
  font-family: var(--heading-font);
  font-size: var(--h4-font-size);
  margin-bottom: var(--spacing-sm);
  color: var(--accent-color);
}

.service-description {
  color: var(--text-color-light);
  margin-bottom: var(--spacing-md);
}

.service-features {
  margin-bottom: var(--spacing-md);
}

.service-features li {
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--success-color);
  margin-right: var(--spacing-xs);
}

.service-features li.not-included i {
  color: var(--text-color-light);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
  transition: color var(--transition-normal);
}

.service-link i {
  margin-left: var(--spacing-xs);
  transition: transform var(--transition-normal);
}

.service-link:hover {
  color: var(--primary-color-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

/*=============== PROCESS SECTION ===============*/
.process {
  background-color: var(--background-color-alt);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: var(--primary-color-light);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  font-weight: var(--font-bold);
  border-radius: var(--border-radius-full);
  margin-right: var(--spacing-md);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-content {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  flex-grow: 1;
}

.step-content h3 {
  margin-bottom: var(--spacing-xs);
}

.step-content p {
  color: var(--text-color-light);
  margin-bottom: 0;
}

/*=============== TESTIMONIALS SECTION ===============*/
.testimonials {
  background-color: var(--background-color);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  height: auto;
  min-height: 300px;
}

.testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--spacing-sm);
  transition: transform var(--transition-normal);
  opacity: 1;
}

.testimonial-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-content::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 5px;
  font-size: 4rem;
  color: var(--primary-color-light);
  font-family: serif;
  line-height: 1;
  z-index: 0;
  opacity: 0.4;
}

.testimonial-text::after {
  content: "\201d";
  position: absolute;
  transform: translateX(-10px);
  font-size: 4rem;
  color: var(--primary-color-light);
  font-family: serif;
  line-height: 1;
  z-index: 0;
  opacity: 0.4;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-full);
  margin-right: var(--spacing-sm);
  object-fit: cover;
}

.author-info strong {
  margin-bottom: 0;
  font-size: var(--normal-font-size);
}

.author-info p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-bottom: 0;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonials-controls button {
  background-color: transparent;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  transition: all var(--transition-normal);
}

.testimonials-controls button:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.testimonials-dots {
  display: flex;
  gap: var(--spacing-xs);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--border-radius-full);
  background-color: var(--border-color);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.dot.active {
  background-color: var(--primary-color);
}

/*=============== PRICING SECTION ===============*/
.pricing {
  background-color: var(--background-color-alt);
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: var(--transition-normal);
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-normal);
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.discount {
  background-color: var(--primary-color);
  color: white;
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  border-bottom-left-radius: var(--border-radius-md);
}

.pricing-header {
  padding: var(--spacing-lg);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.pricing-price {
  margin-bottom: var(--spacing-sm);
}

.price {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--accent-color);
}

.price.annually {
  display: none;
}

.period {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.pricing-description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-bottom: 0;
}

.pricing-features {
  padding: var(--spacing-lg);
}

.pricing-features ul li {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: flex-start;
}

.pricing-features ul li i {
  margin-right: var(--spacing-xs);
  color: var(--success-color);
  margin-top: 4px;
}

.pricing-features ul li.not-included {
  color: var(--text-color-light);
}

.pricing-features ul li.not-included i {
  color: var(--text-color-light);
}

.pricing-footer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.pricing-custom {
  max-width: 800px;
  margin: 0 auto;
}

.custom-package {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.custom-content {
  flex: 1;
}

.custom-content strong {
  margin-bottom: var(--spacing-xs);
}

.custom-content p {
  color: var(--text-color-light);
  margin-bottom: 0;
}

/*=============== FAQ SECTION ===============*/
.faq {
  background-color: var(--background-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.faq-question {
  padding: var(--spacing-md);
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--accent-color);
}

.faq-toggle {
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal),
    padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  max-height: 500px;
}

/*=============== CTA SECTION ===============*/
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.cta h2 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.cta p {
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  opacity: 1;
}

/*=============== CONTACT SECTION ===============*/
.contact {
  background-color: var(--background-color-alt);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.info-item {
  display: flex;
  margin-bottom: var(--spacing-lg);
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color-light);
  border-radius: var(--border-radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: var(--spacing-md);
  color: var(--primary-color-dark);
  font-size: var(--normal-font-size);
}

.info-content strong {
  font-size: var(--normal-font-size);
  margin-bottom: var(--spacing-xs);
}

.info-content p {
  color: var(--text-color-light);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color-light);
  border-radius: var(--border-radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color-dark);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.form-group {
  flex: 0 0 calc(50% - var(--spacing-md) / 2);
}

.form-group.full-width {
  flex: 0 0 100%;
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background-color: var(--background-color-alt);
  transition: border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-color-light);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
}

.checkbox-container input {
  width: auto;
  margin-right: var(--spacing-xs);
  margin-top: 4px;
}

.checkbox-container label {
  margin-bottom: 0;
  font-size: var(--small-font-size);
}

/*=============== MAP SECTION ===============*/
.map-section {
  height: 450px;
}

.map-container {
  height: 100%;
}

.map-container iframe {
  border: none;
}

.map-iframe {
  border: 0;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--accent-color);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-logo p {
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.footer-column strong {
  color: white;
  font-size: var(--normal-font-size);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-column strong::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.footer-column ul li a:hover {
  color: white;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.7);
}

.contact-list li i {
  margin-right: var(--spacing-xs);
  margin-top: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  color: #e189b2;
  text-decoration: underline;
  transition: color var(--transition-normal);
}

.footer-bottom a:hover {
  color: white;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--small-font-size);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.heart-icon {
  color: #e25555;
}

/*=============== COOKIE CONSENT ===============*/
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-modal);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content p {
  margin-bottom: var(--spacing-md);
  font-size: var(--small-font-size);
}

.cookie-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.cookie-more {
  margin-left: auto;
  font-size: var(--small-font-size);
}

/*=============== BACK TO TOP ===============*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-5px);
}

/*=============== RESPONSIVE DESIGN ===============*/
@media screen and (max-width: 1024px) {
  :root {
    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  :root {
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.9375rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left var(--transition-normal);
    z-index: var(--z-fixed);
  }

  .nav-menu.show {
    left: 0;
  }

  .nav-item {
    margin: var(--spacing-sm) 0;
  }

  .nav-cta {
    margin: var(--spacing-md) 0 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    grid-row: 1;
    margin-bottom: var(--spacing-lg);
  }

  .hero-image img {
    animation: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-image {
    order: -1;
  }

  .testimonials-slider {
    min-height: 560px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

@media screen and (max-width: 576px) {
  :root {
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --spacing-xxl: 3rem;
  }

  .blog__data {
    padding: 0.8rem;
  }

  .blog__title {
    font-size: 1.4rem;
  }

  .blog__description h2 {
    font-size: 1.2rem;
  }

  .blog__description p {
    line-height: 1.6;
  }

  .blog__description img {
    margin: 1.2rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
    justify-content: flex-start;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .custom-package {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group {
    flex: 0 0 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .copyright {
    font-size: var(--smaller-font-size);
  }

  .contact-container {
    display: block; /* Oder grid-template-columns: 1fr; */
  }

  .contact-info,
  .contact-form-container {
    width: 100%;
    margin-bottom: var(--spacing-lg);
  }

  .form-group {
    flex: 0 0 100%;
  }
}

/* ===== ALLGEMEINE FORMATIERUNG FÜR BLOG SEITEN ===== */

.blog {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}

.blog_container {
  max-width: 1200px;
  margin: 5rem auto 1rem auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.blog__data {
  padding: 1.5rem;
}

/* Typography */
.blog__title {
  font-size: 2rem;
  line-height: 1.3;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.blog__description h2 {
  font-size: 1.5rem;
  color: #444;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog__description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.2rem;
}

.blog__description strong {
  color: #333;
  font-weight: 600;
}

/* Section spacing */
.blog__description section {
  margin-bottom: 2.5rem;
}

/* Images */
.blog__description picture {
  display: block;
  margin: 2rem 0;
}

.blog__description img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog__description img:hover {
  transform: scale(1.01);
}

/* Lists */
.blog__description ul {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.blog__description li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #555;
}

/* ===== ALLGEMEINE FORMATIERUNG FÜR RECHTLICHE SEITEN ===== */

/* Container für rechtliche Inhalte */
.impressum__container,
.disclaimer__container,
.dsgvo__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Titel der Abschnitte */
.impressum__title,
.disclaimer__title,
.dsgvo__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

/* Beschreibungstexte */
.impressum__description,
.disclaimer__description,
.dsgvo__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Überschriften innerhalb der Beschreibungen */
.dsgvo__description h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.dsgvo__description h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #444;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* Absätze */
.impressum__description p,
.disclaimer__description p,
.dsgvo__description p {
  margin-bottom: 1rem;
}

/* Hervorhebungen */
.impressum__description strong,
.disclaimer__description strong,
.dsgvo__description strong {
  font-weight: 600;
  color: #333;
}

/* Links */
.impressum__description a,
.disclaimer__description a,
.dsgvo__description a {
  color: #ff9ccb; /* Angepasst an dein Farbschema (Pink) */
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum__description a:hover,
.disclaimer__description a:hover,
.dsgvo__description a:hover {
  color: #e67ba9;
  text-decoration: underline;
}

/* Abstände zwischen Abschnitten */
.impressum__description br + p,
.disclaimer__description br + p,
.dsgvo__description br + p {
  margin-top: 1rem;
}

/* Besondere Formatierung für Widerspruchsrecht (Großbuchstaben) */
.dsgvo__description p:has(strong:contains("Widerspruchsrecht")) + p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Anpassungen */
@media screen and (max-width: 768px) {
  .blog {
    padding: 1.5rem 0.8rem;
  }

  .blog_container {
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .blog__data {
    padding: 1rem;
  }

  .blog__title {
    font-size: 1.6rem;
  }

  .blog__description h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }

  .blog__description p {
    font-size: 1rem;
  }

  .impressum__title,
  .disclaimer__title,
  .dsgvo__title {
    font-size: 2rem;
  }

  .dsgvo__description h2 {
    font-size: 1.5rem;
  }

  .dsgvo__description h3 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .impressum__container,
  .disclaimer__container,
  .dsgvo__container {
    padding: 1.5rem 1rem;
  }

  .impressum__title,
  .disclaimer__title,
  .dsgvo__title {
    font-size: 1.8rem;
  }
}
