/* style.css - Updated with Pink and Powder Blue Theme */
:root {
  --pink: #f8bbd0; /* Soft pink */
  --pink-dark: #f48fb1; /* Darker pink */
  --pink-light: #fce4ec; /* Light pink */
  --blue: #b0e0e6; /* Powder blue */
  --blue-dark: #7ec8e0; /* Darker powder blue */
  --blue-light: #e0f2fe; /* Light powder blue */
  --primary: #f8bbd0; /* Pink as primary */
  --primary-dark: #f48fb1;
  --secondary: #b0e0e6; /* Powder blue as secondary */
  --secondary-dark: #7ec8e0;
  --dark: #4a4a4a; /* Soft dark for text */
  --light: #fff9fb; /* Light pinkish white */
  --gray: #7a7a7a;
  --light-gray: #f0f0f0;
  --shadow: 0 5px 20px rgba(248, 187, 208, 0.15);
  --transition: all 0.3s ease;
  --terra-blue: #1d4ac4; /* Keep TooraFlex colors */
  --flex-teal: #00c99c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--pink);
  color: var(--dark);
  border-radius: 50px; /* Rounded buttons for softer look */
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(248, 187, 208, 0.3);
}

.btn:hover {
  background-color: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(248, 187, 208, 0.4);
}

.btn-primary {
  background-color: var(--pink);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: var(--pink-dark);
}

.btn-secondary {
  background-color: var(--blue);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: var(--blue-dark);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.text-center {
  text-align: center;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(248, 187, 208, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 12px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--pink-dark);
}

.logo-text span {
  color: var(--blue-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--pink-dark);
}

.nav-links .btn {
  margin-left: 20px;
  padding: 10px 20px;
  font-size: 0.95rem;
  background-color: var(--blue);
}

.nav-links .btn:hover {
  background-color: var(--blue-dark);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  z-index: 1001;
  padding: 5px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background-color: var(--pink-light);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--pink-light) 0%,
    var(--blue-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  line-height: 1.2;
}

.hero-text h1 span {
  color: var(--pink-dark);
  position: relative;
  display: inline-block;
}

.hero-text h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--blue);
  opacity: 0.3;
  z-index: -1;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink-dark);
  font-family: "Playfair Display", serif;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.hero-image {
  flex: 1;
  text-align: center;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  border-radius: 30px 30px 30px 30px;
  box-shadow: 0 20px 40px rgba(248, 187, 208, 0.3);
  border: 5px solid white;
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(248, 187, 208, 0.4);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  border-radius: 2px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--pink-light);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, var(--pink), var(--blue));
  transition: var(--transition);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(248, 187, 208, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 28px;
  color: var(--pink-dark);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--pink-dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--blue-dark);
  gap: 12px;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff9fb, #f0faff);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--blue-light);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(176, 224, 230, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, white, var(--pink-light));
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--pink);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(248, 187, 208, 0.25);
}

.testimonial-card::before {
  content: "\201C";
  font-family: serif;
  font-size: 80px;
  position: absolute;
  top: -20px;
  left: 20px;
  color: var(--pink);
  opacity: 0.3;
}

.testimonial-rating {
  margin-bottom: 15px;
  color: #ffc107;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-light), white);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  z-index: 1;
}

@media (max-width: 992px) {
  .steps-container::before {
    display: none;
  }
}

.step-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  z-index: 2;
  border: 1px solid var(--pink-light);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(176, 224, 230, 0.3);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--pink-dark);
  font-size: 28px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.step-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: white;
  opacity: 0.9;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  background-color: white;
  color: var(--pink-dark);
  position: relative;
  z-index: 1;
}

.cta-section .btn:hover {
  background-color: var(--pink-light);
  color: var(--dark);
}

/* Footer */
footer {
  background-color: #4a4a4a;
  color: white;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: white;
  font-family: "Playfair Display", serif;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-links li i {
  color: var(--pink);
  margin-top: 4px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--pink);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  margin-top: 20px;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  transform: translateY(-5px);
}

/* ===== COPYRIGHT SECTION - KEEPING ORIGINAL DESIGN ===== */
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

.copyright p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.tooraflex-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
  padding: 0 4px;
  margin: 0 2px;
  transition: all 0.3s ease;
  position: relative;
}

.terra-part {
  color: var(--terra-blue);
  transition: all 0.2s ease;
}

.flex-part {
  color: var(--flex-teal);
  transition: all 0.2s ease;
}

.tooraflex-icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.tooraflex-name:hover .terra-part {
  color: #4a7cff;
}

.tooraflex-name:hover .flex-part {
  color: #33ffcc;
}

.tooraflex-name:hover {
  transform: translateY(-1px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4a4a4a;
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: none;
}

.cookie-consent.show {
  display: block;
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
}

.cookie-text h3 i {
  color: var(--pink);
}

.cookie-text p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-link {
  color: var(--pink);
  text-decoration: none;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 50px;
}

.accept-btn {
  background-color: var(--pink);
  color: var(--dark);
}

.accept-btn:hover {
  background-color: var(--pink-dark);
}

.necessary-btn {
  background-color: transparent;
  border: 2px solid var(--blue);
  color: white;
}

.necessary-btn:hover {
  background-color: rgba(176, 224, 230, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 1 0 45%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 15px;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 0 0 20px 0;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 12px 20px;
    font-size: 1.1rem;
  }

  .nav-links .btn {
    margin: 20px auto 0;
    display: block;
    width: 200px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid,
  .features-grid,
  .testimonials-grid,
  .steps-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card,
  .feature-card,
  .testimonial-card,
  .step-card {
    padding: 25px;
  }

  .steps-container {
    gap: 20px;
  }

  .step-card {
    margin-bottom: 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    flex: 1 0 100%;
  }

  .copyright p {
    flex-direction: column;
    gap: 10px;
  }

  .logo-img {
    height: 35px;
    margin-right: 10px;
  }

  .logo-text {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .services-section,
  .why-choose-section,
  .testimonials-section,
  .how-it-works {
    padding: 50px 0;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    min-width: 100%;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .logo-img {
    height: 30px;
    margin-right: 8px;
  }

  .logo-text {
    font-size: 20px;
  }
}

/* WhatsApp Float - Keeping Original */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  color: white;
  font-size: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float-link:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-float-text {
  position: absolute;
  right: 70px;
  background: #25d366;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-text {
  opacity: 1;
  transform: translateX(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* ===== ADD THESE STYLES TO YOUR EXISTING style.css ===== */

/* Services Preview Section */
.services-preview {
  padding: 60px 0;
  background-color: white;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.preview-card {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #fff, var(--pink-light));
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--pink);
}

.preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(248, 187, 208, 0.25);
}

.preview-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.preview-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.preview-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.preview-link {
  color: var(--pink-dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.preview-link:hover {
  color: var(--blue-dark);
  gap: 10px;
}

/* Page Hero */
.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  text-align: center;
}

.page-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.page-hero-text p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Service Detail Section */
.service-detail-section {
  padding: 80px 0;
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-detail.reverse {
  flex-direction: row-reverse;
}

.service-detail-image {
  flex: 1;
}

.service-detail-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(248, 187, 208, 0.3);
  border: 5px solid white;
}

.service-detail-content {
  flex: 1;
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
}

.service-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-subtitle {
  font-size: 1.1rem;
  color: var(--pink-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.service-description {
  margin-bottom: 30px;
}

.service-description p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}

.service-features i {
  color: var(--pink-dark);
  font-size: 1.1rem;
}

/* About Page */
.about-story-section {
  padding: 80px 0;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--pink-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(248, 187, 208, 0.3);
  border: 5px solid white;
}

.mission-vision-section {
  padding: 60px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mission-card,
.vision-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--pink-light);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(248, 187, 208, 0.25);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
  color: var(--gray);
  line-height: 1.7;
}

.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--blue-light);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(176, 224, 230, 0.3);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--gray);
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--pink-light);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(248, 187, 208, 0.25);
}

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--pink);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--pink-dark);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  color: white;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Page */
.contact-main-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.required {
  color: #ff6b6b;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(248, 187, 208, 0.2);
}

textarea.form-control {
  resize: vertical;
}

.consent-group {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-checkbox input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
}

.consent-checkbox label {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.spinner {
  display: none;
}

.submit-btn:disabled .btn-text {
  display: none;
}

.submit-btn:disabled .spinner {
  display: inline-block;
}

.response-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
}

.response-message.success {
  background-color: rgba(0, 201, 156, 0.1);
  border-left: 4px solid var(--secondary);
}

.response-message.error {
  background-color: rgba(255, 107, 107, 0.1);
  border-left: 4px solid #ff6b6b;
}

.contact-info-wrapper {
  background: linear-gradient(135deg, var(--pink-light), var(--blue-light));
  padding: 40px;
  border-radius: 20px;
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-methods {
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--pink-dark);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 5px;
}

.emergency-contact {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid var(--pink);
}

.emergency-contact h4 {
  color: #ff6b6b;
  margin-bottom: 10px;
}

.emergency-contact h4 i {
  margin-right: 5px;
}

.emergency-number {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b6b;
  text-decoration: none;
  margin: 10px 0;
}

.social-connect h4 {
  margin-bottom: 15px;
}

.map-section {
  padding: 0 0 80px 0;
}

.map-container {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
}

.map-embed {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.map-info {
  text-align: center;
}

.map-info h3 {
  margin-bottom: 10px;
}

.map-info p {
  color: var(--gray);
  margin-bottom: 20px;
}

.map-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.faq-section {
  padding: 80px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--pink-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-detail,
  .service-detail.reverse,
  .about-grid {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero-text h1 {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-buttons {
    flex-direction: column;
  }

  .service-detail-content h2 {
    font-size: 1.8rem;
  }
}
/* FAQ Accordion - Fixed Styles */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--pink-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--pink-dark);
  font-size: 1.2rem;
}

.faq-item.active .faq-question {
  background-color: var(--pink-light);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: white;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Increased for longer content */
  padding: 0 20px 20px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  padding-top: 10px;
}

/* Testimonials Expandable Styles */
.testimonial-card {
  position: relative;
  transition: var(--transition);
}

.testimonial-card.expandable {
  cursor: pointer;
}

.testimonial-preview,
.testimonial-full {
  line-height: 1.6;
  color: var(--dark);
}

.testimonial-expand-btn {
  background: none;
  border: none;
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.testimonial-expand-btn:hover {
  color: var(--blue-dark);
  gap: 8px;
}

.testimonial-expand-btn i {
  font-size: 0.8rem;
}
