/* ================================
   CSS RESET & BASE STYLES
   ================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif; /* Changed font */
  line-height: 1.6;
  color: #333;
  background-color: #fce4ec; /* Light pink background */
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif; /* Kept for headings for elegance */
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1a1a1a; /* Darker black for contrast */
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a1a;
}

p {
  margin-bottom: 1rem;
  color: #4a4a4a; /* Softer black for body text */
  font-size: 1.1rem;
}

/* ================================
   UTILITY CLASSES
   ================================ */

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #c2185b; /* Deep pink */
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px; /* Slightly rounded buttons */
  font-size: 1rem;
  font-weight: 600; /* Bolder text for buttons */
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(194, 24, 91, 0.3); /* Pink shadow */
}

.btn-primary:hover {
  background: #d81b60; /* Lighter pink on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #c2185b; /* Pink border and text */
  padding: 1rem 2rem;
  border: 2px solid #c2185b;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: #c2185b;
  color: white;
  transform: translateY(-3px);
}

.btn-cta {
  background: transparent;
  color: #c2185b; /* Pink for CTA */
  padding: 0.75rem 1.5rem;
  border: 1px solid #c2185b;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn-cta:hover {
  background: #c2185b;
  color: white;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #888;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(252, 228, 236, 0.95); /* Light pink with transparency */
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; /* Slightly larger logo */
  font-weight: 700; /* Bolder logo text */
  color: #1a1a1a;
}

.nav-logo i {
  font-size: 2rem; /* Larger icon */
  color: #c2185b; /* Pink icon */
}

.nav-menu {
  display: flex;
  gap: 2.5rem; /* Increased gap */
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  color: #333; /* Darker link color */
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #c2185b; /* Pink on hover */
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c2185b; /* Pink underline */
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px; /* Slightly larger gap */
}

.hamburger span {
  width: 30px; /* Slightly wider */
  height: 4px; /* Thicker */
  background: #1a1a1a; /* Black hamburger lines */
  transition: all 0.3s ease;
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-left: 20px;
  background: linear-gradient(
    135deg,
    #fce4ec 0%,
    #e9a8d1 100%
  ); /* Pink gradient */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 0 2rem; /* Added padding to content */
}

.hero-text {
  padding-right: 2rem;
}

.hero-title {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Stronger shadow */
  max-height: 600px;
  width: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
  border-radius: 10px;
  margin: 0 2rem; /* Added margin */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; /* Slightly larger numbers */
  font-weight: 700;
  color: #c2185b; /* Pink for stats */
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #4a4a4a;
  font-size: 0.95rem; /* Slightly larger label */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
  padding: 5rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #4a4a4a;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; /* Increased gap */
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Increased gap */
  padding: 1.2rem; /* Slightly more padding */
  background: #fffafa; /* Very light pink */
  border-radius: 8px; /* Slightly more rounded */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.feature-item i {
  color: #c2185b; /* Pink icon */
  font-size: 1.4rem; /* Larger icon */
}

.feature-item span {
  font-weight: 500;
  color: #333;
}

.about-image img {
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .about-image img {
    height: 400px;
  }
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
  padding: 5rem 0;
  background: #1a1a1a; /* Black background */
  color: white;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-subtitle {
  color: #f0f0f0; /* Lighter text for subtitle */
}

.services-header h2 {
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.08); /* Slightly more opaque white */
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Added shadow */
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.15); /* More opaque white on hover */
  transform: translateY(-8px); /* Deeper lift */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-icon i {
  font-size: 2.5rem; /* Larger icon */
  color: #c2185b; /* Pink icon */
}

.service-icon span {
  font-weight: 500;
  color: white;
  font-size: 1.1rem; /* Slightly larger text */
}

.cta-section {
  text-align: center;
}

.services-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 350px; /* Slightly larger image */
  height: 250px; /* Slightly larger image */
  opacity: 0.1;
  pointer-events: none; /* Make image non-interactive */
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================
   METHODS SECTION
   ================================ */

.methods {
  padding: 5rem 0;
  background: #fce4ec; /* Light pink background */
}

.methods h2 {
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.methods > .container > p {
  text-align: center;
  max-width: 700px; /* Wider paragraph */
  margin: 0 auto 3.5rem; /* Increased bottom margin */
  font-size: 1.1rem;
  color: #4a4a4a;
}

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

.method-card {
  text-align: center;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Stronger shadow */
  padding-bottom: 2rem; /* Added padding */
}

.method-image {
  width: 100%;
  height: 280px; /* Slightly smaller image height */
  margin-bottom: 2rem;
  border-radius: 10px 10px 0 0; /* Only top corners rounded */
  overflow: hidden;
}

.method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.method-card:hover .method-image img {
  transform: scale(1.08); /* More pronounced zoom */
}

.method-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.8rem; /* Larger heading */
}

.method-card p {
  color: #666;
  line-height: 1.7; /* Increased line height */
  padding: 0 1.5rem; /* Added horizontal padding */
}

/* ================================
   BLOG SECTION
   ================================ */

.blog {
  padding: 5rem 0;
  background: #1a1a1a; /* Black background */
  color: white;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-header h2 {
  color: white;
  margin-bottom: 1rem;
}

.blog-header p {
  color: #f0f0f0;
}

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

.blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 2rem;
}

.blog-content time {
  color: #c2185b; /* Pink time */
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content h3 {
  color: white;
  margin: 1rem 0;
  font-size: 1.5rem; /* Larger heading */
}

.blog-content p {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.read-more {
  color: #c2185b; /* Pink link */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.read-more:hover {
  border-bottom-color: #c2185b;
}

/* ================================
   PRICING SECTION
   ================================ */

.pricing {
  padding: 5rem 0;
  background: #fce4ec; /* Light pink background */
  color: #1a1a1a;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.pricing-header p {
  color: #4a4a4a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  background: #c2185b; /* Pink featured card */
  border-color: #c2185b;
  transform: scale(1.08); /* More pronounced scaling */
  color: white; /* White text on pink */
  box-shadow: 0 15px 40px rgba(194, 24, 91, 0.4); /* Stronger pink shadow */
}

.pricing-card:hover {
  background: #fffafa; /* Very light pink on hover */
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
  background: #d81b60; /* Slightly lighter pink on hover */
}

.pricing-card h3 {
  color: #1a1a1a;
  font-size: 1.8rem; /* Larger heading */
  margin-bottom: 2rem;
}

.pricing-card.featured h3 {
  color: white;
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  color: #c2185b; /* Pink currency */
  vertical-align: top;
}

.pricing-card.featured .currency {
  color: white;
}

.amount {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; /* Larger amount */
  font-weight: 700;
  color: #1a1a1a;
}

.pricing-card.featured .amount {
  color: white;
}

.period {
  display: block;
  color: #4a4a4a;
  font-size: 1rem; /* Slightly larger period */
  margin-top: 0.5rem;
}

.pricing-card.featured .period {
  color: #f0f0f0;
}

.pricing-card h4 {
  color: #c2185b; /* Pink for "INCLUS" */
  font-size: 1rem; /* Slightly larger "INCLUS" */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.pricing-card.featured h4 {
  color: white;
}

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

.pricing-features li {
  color: #666;
  padding: 0.7rem 0; /* More padding */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Lighter border */
}

.pricing-card.featured .pricing-features li {
  color: #f0f0f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-pricing {
  display: inline-block;
  background: #1a1a1a; /* Black button */
  color: white;
  border: 2px solid #1a1a1a;
  padding: 1rem 2.5rem; /* More padding */
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-pricing:hover {
  background: #333; /* Darker black on hover */
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-pricing.featured {
  background: white; /* White button for featured */
  border-color: white;
  color: #c2185b; /* Pink text for featured button */
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.btn-pricing.featured:hover {
  background: #eee;
  color: #c2185b;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
  padding: 5rem 0;
  background: #1a1a1a; /* Black background */
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  color: white;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #f0f0f0;
  margin-bottom: 3rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Increased gap */
  margin-bottom: 2rem;
  padding: 1.8rem; /* More padding */
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px; /* Larger icon circle */
  height: 60px;
  background: #c2185b; /* Pink icon circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: white;
  font-size: 1.5rem; /* Larger icon */
}

.contact-details h3 {
  color: white;
  font-size: 1.2rem; /* Larger heading */
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #f0f0f0;
  margin: 0;
}

/* Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 3.5rem; /* More padding */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem; /* More padding */
  background: rgba(255, 255, 255, 0.15); /* More opaque */
  border: 2px solid transparent;
  border-radius: 5px;
  color: white;
  font-size: 1.1rem; /* Larger font */
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c2185b; /* Pink border on focus */
  background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px; /* Taller textarea */
}

.error-message {
  display: block;
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message.show {
  opacity: 1;
}

.btn-submit {
  width: 100%;
  background: #c2185b; /* Pink submit button */
  color: white;
  border: none;
  padding: 1.4rem; /* More padding */
  border-radius: 5px;
  font-size: 1.1rem; /* Larger font */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}

.btn-submit:hover {
  background: #d81b60; /* Lighter pink on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: #0d0d0d; /* Even darker black for footer */
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.footer-logo i {
  font-size: 2rem;
  color: #c2185b; /* Pink icon */
}

.footer-nav ul {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #f0f0f0;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #c2185b; /* Pink on hover */
}

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

.footer-legal a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #c2185b; /* Pink on hover */
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
  font-size: 0.9rem;
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-page {
  padding: 8rem 0 5rem;
  min-height: 100vh;
  background: #fce4ec; /* Light pink background */
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
}

.legal-header h1 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.last-updated {
  color: #4a4a4a;
  font-style: italic;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content section {
  margin-bottom: 3rem;
}

.legal-content h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #c2185b; /* Pink border */
}

.legal-content h3 {
  color: #333;
  margin: 2rem 0 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: #666;
  line-height: 1.6;
}

.legal-content a {
  color: #c2185b; /* Pink link */
  text-decoration: underline;
}

.legal-content a:hover {
  color: #d81b60; /* Lighter pink on hover */
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white; /* White background for table */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee; /* Lighter border */
}

.cookie-table th {
  background: #c2185b; /* Pink header */
  color: white;
  font-weight: 600;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* ================================
   THANK YOU PAGE
   ================================ */

.thank-you-page {
  padding: 8rem 0 5rem;
  min-height: 100vh;
  background: linear-gradient(135deg, #fce4ec 0%, #e9a8d1 100%); /* Pink gradient */
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 4rem;
  color: #c2185b; /* Pink icon */
}

.thank-you-content h1 {
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.thank-you-message {
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.thank-you-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: #c2185b; /* Pink icon background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.info-icon i {
  color: white;
  font-size: 1.5rem;
}

.info-content h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-content p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.social-follow {
  margin-bottom: 3rem;
}

.social-follow h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.social-follow p {
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.social-follow .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  background: #c2185b; /* Pink on hover */
  color: white;
}

.social-link i {
  font-size: 1.2rem;
}

.thank-you-quote {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-quote blockquote {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  position: relative;
}

.thank-you-quote blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #c2185b; /* Pink quote icon */
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.thank-you-quote cite {
  display: block;
  margin-top: 1rem;
  color: #c2185b; /* Pink cite */
  font-weight: 500;
  font-style: normal;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text {
    padding-right: 0;
  }

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-nav ul,
  .footer-legal ul {
    justify-content: center;
  }

  .thank-you-info {
    grid-template-columns: 1fr;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .social-follow .social-links {
    flex-wrap: wrap;
  }
}

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

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

  .footer-nav ul,
  .footer-legal ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ================================
   ANIMATIONS
   ================================ */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid #c2185b; /* Pink outline for focus */
  outline-offset: 2px;
}