/* Base Styles and Reset */
:root {
  /* Color palette as per requirements */
  --primary-gradient-start: #3EC1D3;
  --primary-gradient-end: #FF6F91;
  --accent-lime: #C1F26D;
  --accent-fuchsia: #FF3CAC;
  --text-dark: #1F1F2E;
  --text-light: #FFFFFF;
  --text-muted: #777777;
  --background-light: #F9F9F9;
  --border-light: #EEEEEE;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-light);
  overflow-x: hidden;
}

a {
  color: var(--primary-gradient-start);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-fuchsia);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: var(--text-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-light);
}

.btn-secondary {
  background: var(--accent-lime);
  color: var(--text-dark);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 2px solid var(--primary-gradient-start);
  background: transparent;
  color: var(--primary-gradient-start);
}

.btn-outline:hover {
  background: var(--primary-gradient-start);
  color: var(--text-light);
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow);
  padding: 15px 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo svg {
  height: 40px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 25px;
}

.nav-list li a {
  color: var(--text-dark);
  font-weight: 600;
}

.nav-list li a:hover {
  color: var(--primary-gradient-start);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  padding-right: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: var(--text-light);
  padding: 160px 0 80px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s forwards;
}
.legal h1 {
  text-align: center;
}
.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;

  animation-delay: 0.3s;
}

.hero h2::after {
  background: var(--accent-lime);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity:1;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.6s;
}

.hero .btn {
  opacity:1;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.9s;
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 200px;
  padding-right: 40px;
}

.about-image {
  flex: 1;
  min-width: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Services Section */
.services {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/v3MCeT.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-card h3, .service-card p {
  padding: 0 20px;
}

.service-card h3 {
  margin-top: 20px;
  color: var(--primary-gradient-start);
}

.service-card p {
  margin-bottom: 20px;
}

/* Why Us Section */
.why-us {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 50%;
  padding: 15px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: var(--text-light);
}

.testimonials h2::after {
  background: var(--accent-lime);
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 30px;
  padding-bottom: 20px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-right: 20px;
}

.testimonial .quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
}

.client .name {
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 20px;
}

.client .position {
  opacity: 0.8;
  margin-bottom: 0;
}

/* Contact Form Section */
.contact {
  background: var(--background-light);
}

form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.error-messages {
  max-width: 600px;
  margin: 0 auto 20px;
  background: rgba(255, 99, 71, 0.1);
  border-left: 4px solid rgba(255, 99, 71, 0.8);
  padding: 15px;
  border-radius: 5px;
}

.error {
  color: #d9534f;
  margin-bottom: 5px;
  font-size: 0.95em;
}

.error:last-child {
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-size: 1rem;
  background: white;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  width: auto;
  margin-right: 10px;
}

.checkbox label {
  margin: 0;
}

/* FAQ Section */

.faq {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: white;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-answer {
  background: var(--background-light);
  padding: 20px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Map and Contact Section */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.contact-details {
  flex: 1;
  min-width: 200px;
  padding-right: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-gradient-start);
  margin-right: 15px;
  flex-shrink: 0;
}

.map-container {
  flex: 2;
  min-width: 200px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-lime);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Legal Pages */
.legal {
  padding-top: 120px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.legal h2 {
  text-align: left;
  margin-top: 40px;
}

.legal h2::after {
  left: 0;
  transform: none;
}

.legal h3 {
  margin-top: 30px;
  color: var(--primary-gradient-start);
}

.legal ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.update-date {
  margin-top: 40px;
  font-style: italic;
  text-align: right;
  opacity: 0.7;
}

/* Thank You Page */
.thank-you {
  padding: 160px 0 80px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.thank-you h1 {
  color: var(--primary-gradient-start);
  margin-bottom: 20px;
}

.thank-you .btn {
  margin-top: 20px;
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .hero {
    padding: 120px 0 60px;
  }
  
  .about-content, .contact-wrapper {
    flex-direction: column;
  }
  
  .about-text, .contact-details {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .nav-list {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    padding-right: 0;
    margin-bottom: 15px;
  }
} 