/* ==============================================
   Dare to Bloom - Professional Website Styles
   ============================================== */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Make all h2 headings the brand blue */
h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #1a6368 !important;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-spacer {
  height: 80px;
}

.empty-space {
  height: 60px;
}

.empty-space-after-testimonials {
  height: 80px;
}

/* Navigation Styles */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

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

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: #c31a7c;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
}

.logo:hover {
  color: #a01465;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #c31a7c;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.menu-container {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #c31a7c;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a01465;
  background: rgba(195, 26, 124, 0.1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(195,26,124,0.10);
  border-radius: 0 0 12px 12px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #c31a7c;
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #f8e4f1;
  color: #a01465;
}

/* Hide dropdown arrow for main link */
.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.7em;
  color: #c31a7c;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: var(--button-padding);
  border: 2px solid transparent;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 160px;
}

.btn-primary {
  /* Match secondary dimensions and typography */
  display: inline-block;
  background-color: #c31a7c;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.85rem 2.1rem;
  border: 2px solid #c31a7c;
  border-radius: 2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(195,26,124,0.07);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s, transform 0.18s;
}

.btn-primary:hover,
.btn-primary:focus {
  /* Keep the existing color hover behavior */
  background-color: #a01465;
  border-color: #a01465;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(195,26,124,0.13);
}

.btn-secondary {
  background-color: transparent;
  color: #c31a7c;
  border-color: #c31a7c;
}

.btn-secondary:hover {
  background-color: #c31a7c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(195, 26, 124, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #a01465;
  color: #fff;
  box-shadow: 0 4px 16px rgba(195,26,124,0.18);
  text-decoration: none;
}

/* Secondary Button */
.btn-secondary {
  display: inline-block;
  background-color: #fff;
  color: #c31a7c;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.85rem 2.1rem;
  border: 2px solid #c31a7c;
  border-radius: 2rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(195,26,124,0.07);
  cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #f8e4f1;
  color: #a01465;
  border-color: #a01465;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(195,26,124,0.13);
}

/* Hero Image Section */
.hero-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  width: 100%;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: none; /* Remove any background color */
  margin: 0; /* Remove extra margin */
  padding: 0; /* Remove extra padding */
}

.hero-image img {
  width: 100%; /* Fill the container width */
  max-width: 450px; /* Set a smaller maximum width */
  height: auto;
  object-fit: cover;
  display: block;
}



/* Hero Section */
.hero {
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px; /* Add space between hero and next section */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  text-align: center;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Struggles Section - Redesigned Sympathy Section */
.struggles-section {
  padding: 100px 0;
  background-color: #1a6368;
  color: #fff;
  position: relative;
  overflow: hidden;
}


.struggles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.struggles-content {
  position: relative;
  z-index: 1;
}

.struggles-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.struggles-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff !important;
  font-weight: 700;
}

.struggles-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.struggles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.struggle-card {
  background: #207a81;
  color: #fff;
  backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.struggle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.5s ease;
  mix-blend-mode: overlay;
}

.struggle-card:hover::before {
  left: 100%;
}

.struggle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26,99,104,0.28);
  border-color: rgba(255,255,255,0.18);
}

.struggle-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}

.struggle-card p {
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  font-size: 1rem;
}

.founder-message {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
}

.message-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.founder-avatar {
  position: relative;
}

.founder-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d63384;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.message-text blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.6;
  position: relative;
}

.message-text blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #d63384;
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

.message-text cite {
  color: #d63384;
  font-weight: 600;
  font-style: normal;
  font-size: 1.1rem;
}

/* Responsive Design for Struggles Section */
@media (max-width: 900px) {
  .struggles-header h2 {
    font-size: 2.5rem;
  }
  
  .struggles-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .founder-message {
    padding: 2rem;
  }
  
  .message-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .struggles-section {
    padding: 60px 0;
  }
  
  .struggles-header h2 {
    font-size: 2rem;
  }
  
  .struggles-grid {
    grid-template-columns: 1fr;
  }
  
  .struggle-card {
    padding: 2rem 1.5rem;
  }
  
  .founder-message {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .message-text blockquote {
    font-size: 1.1rem;
  }
  
  .founder-avatar img {
    width: 60px;
    height: 60px;
  }
}



/* Services Section */
.navigation-wrapper {
  padding: 80px 0;
  background: #ffffff;
}

.services-heading {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.services-heading p {
  font-size: 1.1rem;
  color: #666;
}



/* Keen Slider Styles */
/* Base Keen Slider container */
.keen-slider {
  display: flex !important;
  overflow: hidden;
  position: relative;
  width: 100%;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Keen Slider Slide Container */
.keen-slider__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 1rem;
  box-sizing: border-box;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  position: relative;
}

/* Ensure images in slides scale properly */
.keen-slider__slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


.keen-slider__slide h2 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
}
.keen-slider__slide p {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.keen-slider-nav {
  width: 100%;
  display: flex;
  justify-content: center; /* horizontally center the buttons */
  align-items: center;
  gap: 1rem;
  margin: 1.25rem auto 0; /* ensure it sits below the slider */
  padding: 0; /* avoid extra inline padding */
  box-sizing: border-box;
}

.keen-slider-nav button {
  /* keep original look but ensure inline size and centering */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #c31a7c;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(195,26,124,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 0; /* remove default margins that might push alignment */
  padding: 0;
  outline: none;
}

/* slightly reduce size on small screens so buttons remain visually centered */
@media (max-width: 600px) {
  .keen-slider-nav {
    gap: 0.5rem;
  }
  .keen-slider-nav button {
    width: 44px;
    height: 44px;
  }
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdf5f8 0%, #fff 100%);
}

.social-proof h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.social-proof > p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #d63384;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial span {
  font-weight: 600;
  color: #d63384;
}




/* Why Choose Us Section */
.why-choose-us-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.added-value-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.why-choose-us p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #666;
}

.why-choose-us ul {
  margin-top: 2rem;
}

.why-choose-us li {
  padding: 0.75rem 0;
  color: #666;
  position: relative;
  padding-left: 2rem;
}

.why-choose-us li:before {
  content: "✓";
  color: #d63384;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.why-choose-us-image img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Added Value Section*/



.added-value-section {
  padding: 80px 0;
  background: #fff;
}

.added-value {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.added-value h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.added-value p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.added-value ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.added-value li {
  padding: 1rem 0;
  color: #666;
  position: relative;
  padding-left: 2rem;
  border-bottom: 1px solid #eee;
}

.added-value li:before {
  content: "✓";
  color: #d63384;
  font-weight: bold;
  position: absolute;
  left: 0;
}


/* How we work Section */

.how-we-work {
  padding: 80px 0;
  background: linear-gradient(90deg, #1a6368 70%, #b99ebe 100%);
  text-align: center;
}

.how-we-work-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff !important;
}

.how-we-work-desc {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.how-we-work-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.how-we-work-block {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.how-we-work-block:hover {
  transform: translateY(-5px);
}

.how-we-work-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.how-we-work-block p {
  color: #666;
  line-height: 1.6;
}

/* How We Work - enhanced styles + alternate timeline layout */
/* These augment the existing .how-we-work rules and introduce a .timeline modifier
   so you can switch layouts without changing the HTML content. */

/* Card (default) tweaks for consistency */
.how-we-work .how-we-work-container {
  gap: 1.5rem;
}

.how-we-work .how-we-work-block {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

/* Timeline / stepper alternative: add class "timeline" to the section */
.how-we-work.timeline {
  padding-bottom: 48px; /* create room for connector */
  background: #ffffff; /* White background for service pages */
}

/* Update text colors for timeline version on white background */
.how-we-work.timeline .how-we-work-title {
  color: #1a6368 !important; /* Brand color instead of white */
}

.how-we-work.timeline .how-we-work-desc {
  color: #666; /* Dark gray instead of white */
}

.how-we-work.timeline .how-we-work-container {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0 3rem 0;
}

/* baseline connector line behind steps */
.how-we-work.timeline .how-we-work-container::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  height: 6px;
  top: 32px; /* aligns with step circles */
  background: linear-gradient(90deg, rgba(214,51,132,0.08) 0%, rgba(26,99,104,0.06) 100%);
  border-radius: 3px;
  z-index: 0;
}

/* step appearance for timeline: remove heavy card look and center content */
.how-we-work.timeline .how-we-work-block {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.75rem 0.5rem 1.75rem 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1; /* sit above connector line */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

/* numbered circle using CSS counter */
.how-we-work.timeline {
  counter-reset: step-counter;
}

.how-we-work.timeline .how-we-work-block::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d63384; /* brand accent */
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 10px 28px rgba(214,51,132,0.12);
  margin-bottom: 0.5rem;
}

.how-we-work.timeline .how-we-work-block h3 {
  font-size: 1rem;
  margin: 0;
  color: #2c3e50;
}

.how-we-work.timeline .how-we-work-block p {
  color: #666;
  font-size: 0.97rem;
  max-width: 220px;
}

/* subtle highlight for the active/hovered step */
.how-we-work.timeline .how-we-work-block:hover::before,
.how-we-work.timeline .how-we-work-block:focus-within::before {
  transform: scale(1.06);
  box-shadow: 0 16px 40px rgba(214,51,132,0.18);
}

.how-we-work.timeline .how-we-work-block:hover h3,
.how-we-work.timeline .how-we-work-block:focus-within h3 {
  color: #d63384;
}

/* Make sure long text wraps and layout stays balanced */
.how-we-work.timeline .how-we-work-block p {
  white-space: normal;
  line-height: 1.5;
}

/* Responsive: revert to stacked blocks on medium/small screens */
@media (max-width: 900px) {
  .how-we-work.timeline .how-we-work-container::after {
    left: 8%;
    right: 8%;
    top: 36px;
  }

  .how-we-work.timeline .how-we-work-block p {
    max-width: 180px;
  }
}

@media (max-width: 700px) {
  /* stacked fallback uses existing card/grid styles */
  .how-we-work.timeline .how-we-work-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .how-we-work.timeline .how-we-work-container::after {
    display: none;
  }

  .how-we-work.timeline .how-we-work-block {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    align-items: center;
    text-align: center;
    flex-direction: column;
    display: flex;
  }

  .how-we-work.timeline .how-we-work-block::before {
    width: 44px;
    height: 44px;
    margin-right: 0;
    margin-bottom: 0.75rem;
    position: relative;
    left: 0;
    top: 0;
  }

  .how-we-work.timeline .how-we-work-block h3 {
    margin-left: 0;
  }
}

/* Accessibility focus for keyboard users */
.how-we-work-block:focus {
  outline: 3px solid rgba(214,51,132,0.12);
  outline-offset: 4px;
}

/* Contact Section */
.contact-container {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8e4f1 0%, #fff 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.contact-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.founder-wrapper {
  text-align: center;
}

.founder-wrapper img {
  border-radius: 50%;
  width: 400px;
  height: 400px;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.founder-title {
  color: #d63384;
  font-weight: 500;
}

/* Footer Styles */
footer {
  background: #1a6368;
  padding: 3rem 2rem 1.5rem 2rem;
  margin-top: 3rem;
  font-family: 'Lato', Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  max-width: none;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.footer-heading h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #ffffff; /* increased contrast for accessibility */
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-text p {
  color: #fdf5f8;
  font-size: 1rem; /* slightly reduced for balance */
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
}

.footer-column ul li a {
  color: #ffffff;
  transition: color 0.18s, border-bottom-color 0.18s;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus {
  color: #b99ebe;
  border-bottom: 1px solid #a01465;
}

.footer-contact p,
.footer-location p {
  color: #fdf5f8;
  font-size: 1rem;
  margin: 0 0 0.3rem 0;
}

.footer-location p:last-child {
  margin-bottom: 0;
}

.footer-copyright {
  text-align: center;
  color: #b99ebe;
  font-size: 0.98rem;
  margin-top: 2.5rem;
  letter-spacing: 0.02em;
  font-family: 'Lato', Arial, sans-serif;
}

.footer-heading p{
  color: #fdf5f8;
  font-size: 1.05rem;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .footer-column {
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-heading h3 {
    font-size: 1.25rem;
  }
}


/* ==============================================
   New Section Styles - Redesigned Layouts
   ============================================== */

/* Value Tools Section - Centered Card Layout */
.value-tools-section {
  padding: 80px 0;
  background: #1a6368;
  text-align: center;
}

.value-tools-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.value-tools-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
}

.value-tools-header p {
  font-size: 1.1rem;
  color: #ffffff;
}

.value-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-tool-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
  border-top: 4px solid #d63384;
}

.value-tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.value-tool-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.value-tool-card p {
  color: #666;
  line-height: 1.6;
}

/* Why Choose Section - Split Layout with Feature Cards */
.why-choose-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(214, 51, 132, 0.03);
  z-index: -1;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-choose-main h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50 !important;
}

.why-choose-intro {
  font-size: 1.1rem;
  color: #666 !important;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.why-choose-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #d63384 !important;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background-color: #ffffff !important;
}

.feature-card {
  background: #fdf5f8;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-left-color: #d63384;
}


.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #2c3e50 !important;
}

.feature-card p {
  color: #666 !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-branding {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}


/* Enhanced Call To Action */
.wardrobe-cta-section {
  padding: 64px 0;
  background: #ffffff;
}

.wardrobe-cta-content {
  align-items: center;
  justify-content: center; /* center columns horizontally */
  max-width: 1100px;
  margin: 0 auto; /* center container */
  padding: 0 20px;
}

/* Make the left column content centered */
.wardrobe-cta-content .cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-text h2 {
  font-size: 2.2rem;
  color: #1a6368;
  margin-bottom: 0.75rem;
}

.cta-text .cta-sub {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

/* Ensure buttons are centered and keep spacing */
.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.cta-note {
  color: #888;
  font-size: 0.9rem;
}

.cta-link {
  color: #c31a7c;
  text-decoration: none;
  font-weight: 500;
}

.cta-link:hover {
  text-decoration: underline;
}

/* Responsive tweaks: smaller columns and stacked layout */
@media (max-width: 900px) {
  .wardrobe-cta-section {
    padding: 50px 0;
  }

  .cta-text h2 {
    font-size: 1.9rem;
  }

  .cta-text .cta-sub {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .cta-buttons {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .wardrobe-cta-section {
    padding: 40px 0;
  }

  .cta-text h2 {
    font-size: 1.7rem;
  }

  .cta-text .cta-sub {
    font-size: 0.95rem;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .cta-note {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    z-index: 99;
  }

  .menu-container.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li > a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: none;
    border-radius: 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    background: #f8f9fa;
    margin-top: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    max-height: 300px;
  }

  .dropdown-menu li a {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: #666;
  }

  .dropdown-menu li a:hover {
    background: #e9ecef;
    color: #c31a7c;
  }

  .dropdown-toggle::after {
    float: right;
  }

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

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .added-value-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .services-heading h2,
  .social-proof h2,
  .added-value h2,
  .added-value-2 h2,
  .added-value-3-title {
    font-size: 2rem;
  }

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

  .value-tools-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-choose-features {
    grid-template-columns: 1fr;
  }
  
  .why-choose-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .value-tools-header h2,
  .why-choose-main h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sympathy-content h2,
  .services-heading h2,
  .social-proof h2,
  .added-value h2,
  .added-value-2 h2,
  .added-value-3-title,
  .contact-text h3 {
    font-size: 1.8rem;
  }

  .added-value-container {
    grid-template-columns: 1fr;
  }

  .keen-slider {
    padding: 0 15px;
  }

  .founder-wrapper img {
    width: 150px;
    height: 150px;
  }
  
  .value-tool-card {
    padding: 2rem 1.5rem;
  }
  
  .tool-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .why-choose-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

/* Print styles */
@media print {
  .navbar,
  .hamburger,
  .keen-slider-nav,
  .contact-buttons {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}


/*Services Main Page*/

.services-hero {
  background: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-text {
  text-align: center;
}

.services-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.services-hero-image img {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 500px;
  height: auto;
}

.services-hero-buttons {
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .services-hero {
    min-height: 70vh;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .services-hero-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .services-hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .services-hero-text h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .services-hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .services-hero-image {
    margin-top: 1.5rem;
  }
  
  .services-hero-image img {
    max-width: 400px;
  }
  
  .services-hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .services-hero-buttons .btn-primary,
  .services-hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 0.5rem 0;
  }
}

@media (max-width: 600px) {
  .services-hero {
    min-height: 60vh;
    padding-top: 70px;
    padding-bottom: 30px;
  }
  
  .services-hero-text h1 {
    font-size: 1.8rem;
  }
  
  .services-hero-text h2 {
    font-size: 1.3rem;
  }
  
  .services-hero-image img {
    max-width: 300px;
  }
  
  .services-hero-buttons {
    gap: 1.25rem;
    flex-direction: column;
  }
  
  .services-hero-buttons .btn-primary,
  .services-hero-buttons .btn-secondary {
    margin: 0.75rem 0;
    max-width: 250px;
  }
}


/* Individual Service Page Hero Styling*/

.services-hero-page {
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.services-hero-container-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-hero-content-page {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 2.5rem;
  align-items: center;
}

.services-hero-text-page {
  text-align: left;
}

@media (max-width: 900px) {
  .services-hero-page {
    min-height: 70vh;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .services-hero-content-page {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .services-hero-text-page {
    text-align: center;
  }
  
  .services-hero-text-page h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .services-hero-text-page h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .services-hero-text-page p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .services-hero-image {
    order: -1; /* image first on narrow screens */
    margin-bottom: 1rem;
  }
  
  .services-hero-image img {
    max-width: 400px;
  }
  
  .services-hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .services-hero-buttons .btn-primary,
  .services-hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .services-hero-page {
    min-height: 60vh;
    padding-top: 70px;
    padding-bottom: 30px;
  }
  
  .services-hero-text-page h1 {
    font-size: 1.8rem;
  }
  
  .services-hero-text-page h2 {
    font-size: 1.3rem;
  }
  
  .services-hero-image img {
    max-width: 300px;
  }
}

/* Services Grid Section */
.services-grid-section {
  padding: 80px 0;
  background: #ffffff;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 1.75rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(214,51,132,0.10);
  border-color: rgba(214,51,132,0.12);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-card a {
  display: inline-block;
  align-self: flex-start;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 2px solid #c31a7c;
  background: transparent;
  color: #c31a7c;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card a:hover,
.service-card a:focus {
  background: #c31a7c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(195,26,124,0.12);
}

/* Small accent for alternating cards */
.service-card:nth-child(odd) {
  border-top: 4px solid rgba(214,51,132,0.06);
}

/* Make all service cards equal height regardless of text length */
.services-grid {
  align-items: stretch; /* ensure grid tracks stretch items vertically */
}

.services-grid > * {
  /* ensure any direct child of the grid stretches and participates correctly */
  align-self: stretch;
}

.service-card {
  height: 100%; /* fill the grid cell so all cards in a row match height */
  display: flex;
  flex-direction: column;
}

/* Ensure CTA anchors stay visually separated at the bottom */
.service-card a {
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .service-card {
    height: auto; /* allow natural flow on very small screens */
  }
}

/* Mobile optimization for service grid */
@media (max-width: 900px) {
  .services-grid-section {
    padding: 60px 0;
  }
  
  .services-grid {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
  }
  
  .service-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
  }
  
  .service-card a {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .services-grid-section {
    padding: 40px 0;
  }
  
  .services-grid {
    padding: 0 15px;
    gap: 1.25rem;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
}

/* Service Highlight Sections (Individual service details) */
.service-highlight {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.service-highlight-content {
  padding: 1rem 1.5rem;
  text-align: left;
}

.service-highlight h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.service-highlight h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: #666;
  font-weight: 600;
}

.service-highlight p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-highlight a {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid #c31a7c;
  background: transparent;
  color: #c31a7c;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.service-highlight a:hover,
.service-highlight a:focus {
  background: #c31a7c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(195,26,124,0.12);
}

.service-highlight-image {
  text-align: center;
}

.service-highlight-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  display: inline-block;
}

/* Alternate the layout for visual variety: image left on even items */
.service-highlight:nth-of-type(even) .service-highlight-content {
  order: 2;
}

.service-highlight:nth-of-type(even) .service-highlight-image {
  order: 1;
}

/* Keep content nicely centered on small screens */
@media (max-width: 900px) {
  .service-highlight {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 1.5rem;
  }

  .service-highlight-content {
    text-align: center;
  }

  .service-highlight:nth-of-type(even) .service-highlight-content,
  .service-highlight:nth-of-type(even) .service-highlight-image {
    order: initial;
  }

  .service-highlight-image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .service-highlight {
    padding: 28px 12px;
    gap: 1rem;
  }

  .service-highlight h2 {
    font-size: 1.5rem;
  }

  .service-highlight h3 {
    font-size: 1rem;
  }
}



/* Service Pages */



/* Problem / Solution Section (reusable across service pages) */
.problem-solution-section {
  padding: 80px 0;
  background: #1a6368;
}

.problem-solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.problem,
.solution {
  background: #fff;
  padding: 2.25rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.problem h2,
.solution h2 {
  font-size: 1rem;
  color: var(--brand-pink);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.problem h3,
.solution h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.problem p,
.solution p {
  color: #666;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.problem ul,
.solution ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: grid;
  gap: 0.6rem;
}

.problem li::before,
.solution li::before {
  content: "✓";
  display: inline-block;
  min-width: 1.2em;
  margin-right: 0.6rem;
  color: var(--brand-pink);
  font-weight: 700;
}

.problem-solution-cta {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.875rem;
  align-items: center;
}

/* Keep CTAs left-aligned on wide layouts, center on small screens */
.problem-solution-cta .btn-primary,
.problem-solution-cta .btn-secondary {
  padding: 0.75rem 1.8rem;
  min-width: 160px;
}

/* Visual accent: subtle left stripe on Problem card to distinguish columns */
.problem {
  border-left: 6px solid rgba(214,51,132,0.08);
}

.solution {
  border-left: 6px solid rgba(26,99,104,0.06);
}

/* Hover lift for both cards */
.problem:hover,
.solution:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .problem-solution-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .problem-solution-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .problem h3,
  .solution h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .problem-solution-section {
    padding: 60px 0;
  }

  .problem,
  .solution {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .problem li::before,
  .solution li::before {
    min-width: 1em;
  }

  .problem h3,
  .solution h3 {
    font-size: 1.1rem;
  }

  .problem-solution-cta .btn-primary,
  .problem-solution-cta .btn-secondary {
    width: 100%;
    max-width: 250px;
    padding: 0.85rem 1.2rem;
  }
}

/* Learning Section (reusable across service pages) */
.learning-section {
  padding: 72px 0;
  background: #ffffff;
}

.learning-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.learning-content-title {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.learning-list h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
  text-transform: none;
}

.learning-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.learning-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #ffffff;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  color: #444;
  line-height: 1.5;
}

/* small circular accent before each item */
.learning-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d63384; /* branding accent */
  margin-top: 6px;
  flex: 0 0 12px;
}

/* Learning Cards - visual styles for .learning-cards and .learning-card */
.learning-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: left;
}

/* Use flex layout so cards flow horizontally and wrap */
.learning-cards {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  align-items: stretch; /* ensure equal height */
}

/* each card becomes a flex item with a sensible base width */
.learning-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 140px;
  flex: 1 1 240px; /* grow, shrink, basis */
  max-width: 1fr;
}

/* Ensure cards behave as columns and stretch to equal height */
.learning-cards > * {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.learning-card h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.learning-card p {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .learning-section {
    padding: 60px 0;
  }

  .learning-title {
    text-align: center;
    font-size: 1.8rem;
  }
  .learning-cards {
    gap: 1rem;
    justify-content: center;
  }

  .learning-card {
    flex: 1 1 280px;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .learning-section {
    padding: 50px 0;
  }

  .learning-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .learning-card {
    padding: 1rem;
    min-height: auto;
    flex: 1 1 100%; /* full width on small screens */
  }
  
  .learning-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .learning-card h3 {
    font-size: 1rem;
  }

  .learning-card p {
    font-size: 0.9rem;
  }
}

/* Accessibility: keyboard focus */
.learning-card:focus {
  outline: 3px solid rgba(214,51,132,0.12);
  outline-offset: 4px;
}

/* Use Case Section - standardized across service pages */
.use-case-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #f8e4f1 0%, #fff 100%);
}

.use-case-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.use-case-content > h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.use-case-steps {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.use-case-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  flex: 1 1 30%;
  min-width: 220px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.use-case-step-title {
  font-size: 1.05rem;
  margin: 0;
  color: #2c3e50;
}

.use-case-step-desc {
  margin: 0.35rem 0 0 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.98rem;
}

/* Quote styling */
.use-case-quote {
  margin-top: 1rem;
  font-style: italic;
  color: #2c3e50;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  text-align: center;
}

/* Hover / focus lift */
.use-case-step:hover,
.use-case-step:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.08);
}

/* Responsive behavior */
@media (max-width: 900px) {
  .use-case-steps {
    gap: 1rem;
    justify-content: center;
  }
  .use-case-step {
    flex: 1 1 45%;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .use-case-steps {
    flex-direction: column;
  }
  .use-case-step {
    flex: 1 1 100%;
    padding: 1rem;
    align-items: flex-start;
  }
  .use-case-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .use-case-content > h2 {
    font-size: 1.6rem;
  }
}

/* Use Case - alternate horizontal layout to avoid repeated centered cards */
.use-case-section.horizontal {
  background: linear-gradient(135deg, #fdf5f8 0%, #fff 100%);
}

.use-case-section.horizontal .use-case-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.use-case-section.horizontal .use-case-steps {
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  justify-content: center;
  counter-reset: usecase-step;
  padding: 1rem 0 0 0;
}

.use-case-section.horizontal .use-case-step {
  background: transparent; /* remove card background */
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

/* number badge generated with CSS counter */
.use-case-section.horizontal .use-case-step::before {
  counter-increment: usecase-step;
  content: counter(usecase-step);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d63384;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(214,51,132,0.14);
  font-size: 1rem;
}

.use-case-section.horizontal .use-case-step-title {
  font-size: 1.05rem;
  color: #2c3e50;
  margin-top: 0.35rem;
}

.use-case-section.horizontal .use-case-step-desc {
  color: #666;
  font-size: 0.98rem;
  line-height: 1.5;
}

.use-case-section.horizontal .use-case-quote {
  margin-top: 1rem;
  max-width: 820px;
  text-align: center;
  background: transparent;
  box-shadow: none;
  border: none;
  font-style: italic;
  color: #2c3e50;
}

/* Hover / focus subtle emphasis without card lift */
.use-case-section.horizontal .use-case-step:hover .use-case-step-title,
.use-case-section.horizontal .use-case-step:focus-within .use-case-step-title {
  color: #d63384;
}

/* Responsive: stack steps vertically on smaller screens */
@media (max-width: 900px) {
  .use-case-section.horizontal .use-case-steps {
    gap: 1rem;
  }
  .use-case-section.horizontal .use-case-step {
    max-width: 100%;
    padding: 0.5rem 0;
  }
  .use-case-section.horizontal .use-case-step::before {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .use-case-section.horizontal .use-case-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .use-case-section.horizontal .use-case-step {
    align-items: flex-start;
    text-align: left;
    padding-left: 0.5rem;
  }
  .use-case-section.horizontal .use-case-step::before {
    margin-right: 0.6rem;
    position: relative;
    left: 0;
  }
}

/* Remove numeric badges from the horizontal use-case layout */
.use-case-section.horizontal .use-case-step::before {
  /* no numbering — hide the pseudo-element entirely */
  content: none;
  display: none;
}

/* small spacing adjustment since badges are removed */
.use-case-section.horizontal .use-case-step-title {
  margin-top: 0.15rem;
}


/* Why choose use Service Pages */

/* Why Choose Section - Split Layout with Feature Cards */
.why-choose-section-services {
  padding: 80px 0;
  background: #1a6368;
  position: relative;
  overflow: hidden;
}

.why-choose-section-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(214, 51, 132, 0.03);
  z-index: -1;
}

.why-choose-content-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-choose-main-services h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff !important; 
}

.why-choose-intro-services {
  font-size: 1.1rem;
  color: #ffffff !important;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.why-choose-stats-services {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number-services {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label-services {
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-features-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background-color: #1a6368 !important;
}

.feature-card-services {
  background: #fdf5f8;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-left-color: #d63384;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-branding {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

/* Mobile optimization for Why Choose section */
@media (max-width: 900px) {
  .why-choose-section-services {
    padding: 60px 0;
  }

  .why-choose-content-services {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .why-choose-main-services h2 {
    font-size: 2rem;
  }

  .why-choose-intro-services {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .why-choose-stats-services {
    justify-content: center;
    gap: 3rem;
  }

  .why-choose-features-services {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .why-choose-section-services {
    padding: 50px 0;
  }

  .why-choose-main-services h2 {
    font-size: 1.8rem;
  }

  .why-choose-intro-services {
    font-size: 0.95rem;
  }

  .why-choose-stats-services {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number-services {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h4 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/* ==============================================
   ABOUT US PAGE STYLES
   ============================================== */

/* Hero */
.about-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(180deg, rgba(253,245,248,0.6) 0%, rgba(255,255,255,0.4) 100%);
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-text h1 {
  font-size: 2.8rem;
  color: #1a6368;
  margin-bottom: 0.5rem;
}

.about-hero-text h2 {
  font-size: 1.25rem;
  color: #d63384;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.about-hero-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Mission / Values */
.about-mission {
     padding: 4rem 0;
  background: #fff;
}

.about-mission-content h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: #fdf5f8;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card h3 {
  color: #1a6368;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #555;
  line-height: 1.6;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}

/* About statement */
.about-statement {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fdf5f8 0%, #fff 100%);
}
.statement-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.statement-content h2 {
  font-size: 2rem;
  color: #1a6368;
  margin-bottom: 1rem;
}

.statement-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}



/* Qualifications */
.about-qualifications {
  padding: 4rem 0;
  background: #1a6368;
}

.qualifications-content h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff !important;
}

.qualifications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.qualification-text p {
  color: #ffffff;
  line-height:  1.7;
  margin-bottom: 1rem;
}

.qualification-skills h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.qualification-skills li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  color: #ffffff;
}

/* Contact CTA */
.about-contact-cta {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(253,245,248,0.9) 100%);
}

.about-cta-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2rem;
  color: #1a6368;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: #555;
  margin-bottom: 1.25rem;
}

.founder-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-info img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  margin-bottom: 1rem;
}

.founder-name {
  color: #1a6368;
  font-weight: 700;
}

.founder-title {
  color: #d63384;
}

/* Mobile optimization for About Us page */
@media (max-width: 900px) {
  /* About Hero Section */
  .about-hero {
    padding: 4rem 0 2rem;
  }
  
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 20px;
  }
  
  .about-hero-text h1 {
    font-size: 2.2rem;
  }
  
  .about-hero-text h2 {
    font-size: 1.1rem;
  }
  
  .about-hero-text p {
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-hero-image {
    order: -1; /* Image first on mobile */
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Mission/Values Section */
  .about-mission {
    padding: 3rem 0;
  }
  
  .about-mission-content {
    padding: 0 20px;
  }
  
  .about-mission-content h2 {
    font-size: 1.8rem;
  }
  
  .mission-values {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 500px;
    margin: 2rem auto 0;
  }
  
  .value-card {
    padding: 1.25rem;
  }
  
  .value-card h3 {
    font-size: 1.1rem;
  }
  
  .value-card p {
    font-size: 0.95rem;
  }
  
  /* About Statement Section */
  .about-statement {
    padding: 3rem 0;
  }
  
  .statement-content h2 {
    font-size: 1.7rem;
  }
  
  .statement-content p {
    font-size: 1rem;
  }
  
  /* Qualifications Section */
  .about-qualifications {
    padding: 3rem 0;
  }
  
  .qualifications-content {
    padding: 0 20px;
  }
  
  .qualifications-content h2 {
    font-size: 1.8rem;
  }
  
  .qualifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .qualification-text p {
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .qualification-skills {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .qualification-skills ul {
    text-align: left;
  }
  
  /* Contact CTA Section */
  .about-contact-cta {
    padding: 3rem 0 4rem;
  }
  
  .about-cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
    text-align: center;
  }
  
  .cta-text h2 {
    font-size: 1.8rem;
  }
  
  .cta-text p {
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  
  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .founder-info {
    order: -1; /* Image first on mobile */
  }
  
  .founder-info img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 600px) {
  /* About Hero Section */
  .about-hero {
    padding: 3rem 0 1.5rem;
  }
  
  .about-hero-content {
    padding: 0 15px;
  }
  
  .about-hero-text h1 {
    font-size: 1.9rem;
  }
  
  .about-hero-text h2 {
    font-size: 1rem;
  }
  
  .about-hero-text p {
    font-size: 0.95rem;
  }
  
  .about-hero-image {
    max-width: 300px;
  }
  
  /* Mission/Values Section */
  .about-mission {
    padding: 2.5rem 0;
  }
  
  .about-mission-content {
    padding: 0 15px;
  }
  
  .about-mission-content h2 {
    font-size: 1.6rem;
  }
  
  .mission-values {
    gap: 1rem;
  }
  
  .value-card {
    padding: 1rem;
  }
  
  .value-card h3 {
    font-size: 1rem;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
  
  /* About Statement Section */
  .about-statement {
    padding: 2.5rem 0;
  }
  
  .statement-content {
    padding: 0 15px;
  }
  
  .statement-content h2 {
    font-size: 1.5rem;
  }
  
  .statement-content p {
    font-size: 0.95rem;
  }
  
  /* Qualifications Section */
  .about-qualifications {
    padding: 2.5rem 0;
  }
  
  .qualifications-content {
    padding: 0 15px;
  }
  
  .qualifications-content h2 {
    font-size: 1.6rem;
  }
  
  .qualification-text p {
    font-size: 0.95rem;
  }
  
  .qualification-skills h3 {
    font-size: 1.1rem;
  }
  
  .qualification-skills li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  
  /* Contact CTA Section */
  .about-contact-cta {
    padding: 2.5rem 0 3rem;
  }
  
  .about-cta-content {
    padding: 0 15px;
  }
  
  .cta-text h2 {
    font-size: 1.6rem;
  }
  
  .cta-text p {
    font-size: 0.95rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .founder-info img {
    width: 120px;
    height: 120px;
  }
  
  .founder-name {
    font-size: 0.95rem;
  }
  
  .founder-title {
    font-size: 0.85rem;
  }
}

/* ==============================================
   CONTACT PAGE STYLES (ensure contact.html looks correct)
   ============================================== */

.contact-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #1a6368 0%, #0f4a4f 100%);
  color: #fff;
}

.contact-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.contact-hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-hero-text h2 {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95) !important;
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-hero-text p {
  color: rgba(255,255,255,0.9);
  max-width: 760px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.contact-main {
  padding: 4rem 0 6rem;
  background: #f8f9fa;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 2.25rem;
  align-items: start;
  padding: 0 1rem;
}

.contact-details {
  background: #fff;
  padding: 2.25rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.contact-details h2 {
  margin-bottom: 1rem;
  color: #1a6368;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-method {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-method h3 {
  font-size: 1rem;
  color: #1a6368;
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: #444;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2.25rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.contact-form h2 { margin-bottom: 1rem; color: #1a6368; }

.form-group { margin-bottom: 1rem; }

.form-group label { display:block; margin-bottom: .45rem; color:#333; font-weight:600; }

.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding: .9rem 1rem; border:2px solid #eee; border-radius:10px; font-size:1rem; transition: border-color .18s ease, box-shadow .18s ease; background:#fff;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:#1a6368; box-shadow:0 6px 24px rgba(26,99,104,0.08); }

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

.contact-form .btn-primary { width:100%; padding:.9rem 1rem; font-size:1.05rem; border-radius:10px; }

/* --- Appointment Form Section Styling --- */

/* Center the form section and main content */
.form-hero {
  background: linear-gradient(90deg, #f8e4f1 0%, #fff 100%);
  border-radius: 18px;
  max-width: 1100px;
  margin: 3rem auto 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(195,26,124,0.08);
  text-align: center;
}

.form-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #c31a7c;
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.form-hero p {
  color: #555;
  font-size: 1.13rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.appointment-form-container {
  background-color: #ffffff;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(195,26,124,0.08);
  border: 1px solid rgba(195,26,124,0.08);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.appointment-form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a6368;
  font-family: 'Playfair Display', serif;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appointment-form label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1a6368;
  text-align: left;
}

input,
select,
textarea {
  padding: 0.75rem;
  border: 1px solid #eab1d6;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  background: #fdf5f8;
  color: #444;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #c31a7c;
  background: #fff;
}

select[multiple] {
  height: auto;
  min-height: 100px;
}

button[type="submit"] {
  background-color: #c31a7c;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

button[type="submit"]:hover {
  background-color: #a01465;
}

.small-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #555;
  text-align: center;
}

.service-checkboxes label {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #f8e4f1;
  border: 1px solid #eab1d6;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  transition: background-color 0.2s ease;
  color: #1a6368;
}

.service-checkboxes label:hover {
  background-color: #fdf5f8;
}

.service-checkboxes input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #c31a7c;
  border-radius: 50%;
  margin-right: 0.75rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: #fff;
}

.service-checkboxes input[type="checkbox"]:checked {
  background-color: #c31a7c;
}

.service-checkboxes input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

 .gdpr-checkbox label {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    background-color: #f8e4f1;
    border: 1px solid #eab1d6;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 500;
    color: #1a6368;
    line-height: 1.4;
    gap: 0.75rem;
  }

  .gdpr-checkbox label span {
    display: inline-block;
    line-height: 1.5;
    flex: 1;
  }

  .gdpr-checkbox label a {
    color: #c31a7c;
    text-decoration: underline;
    word-break: break-word;
  }

  .gdpr-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #c31a7c;
    border-radius: 50%;
    margin-top: 0.25rem;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background: #fff;
    flex-shrink: 0;
  }

  .gdpr-checkbox input[type="checkbox"]:checked {
    background-color: #c31a7c;
  }

  .gdpr-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
  }



@media (max-width: 900px) {
  .form-main-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .appointment-form-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .form-hero {
    padding: 1.2rem 0.5rem;
    border-radius: 12px;
  }
  .form-hero h1 {
    font-size: 1.5rem;
  }
  .form-main-content {
    gap: 1.2rem;
  }
  .appointment-form-container {
    padding: 1.2rem 0.5rem;
    border-radius: 10px;
  }
  input,
  select,
  textarea,
  button {
    font-size: o.95rem;
  }
}

/* FAQ Section (details/summary accordion) */
.faq-section {
  padding: 60px 0;
  background: #fff;
}
.faq-section h2 {
  color: #1a6368;
  margin-bottom: 0.5rem;
}
.faq-intro {
  color: #666;
  margin-bottom: 1.25rem;
}
.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: #fbfbfe;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 18px rgba(20,20,40,0.03);
  border: 1px solid rgba(26,99,104,0.03);
}
summary.faq-question {
  cursor: pointer;
  list-style: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  color: #111;
  font-size: 1.05rem;
}
/* Remove default marker */
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::marker { display: none; }
/* Add custom indicator */
summary.faq-question::after {
  content: '+';
  display: inline-block;
  color: #c31a7c;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}
details[open] summary.faq-question::after {
  content: '\2013'; /* en dash */
  transform: rotate(0deg);
  color: #a01465;
}
.faq-answer {
  margin-top: 0.75rem;
  color: #444;
  line-height: 1.6;
  font-weight: 400;
}

/* Center FAQ header & intro (only the header area) */
.faq-section .container > h2,
.faq-section .container > .faq-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px; /* keep line-length readable */
}
/* Ensure the list keeps its grid layout and full width */
.faq-section .container .faq-list {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .faq-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-list {
    gap: 0.875rem;
  }

  .faq-item {
    padding: 1rem;
  }

  summary.faq-question {
    font-size: 1rem;
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-intro {
    font-size: 0.95rem;
  }

  summary.faq-question { 
    font-size: 0.95rem; 
    line-height: 1.4;
  }
  
  .faq-item { 
    padding: 0.9rem 1rem; 
  }

  .faq-answer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}

/* ==============================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS FOR ALL SERVICE PAGES
   ============================================== */

/* Mobile typography and spacing adjustments */
@media (max-width: 900px) {
  /* Global text adjustments for better mobile readability */
  h1 { font-size: 1.9rem; line-height: 1.2; }
  h2 { font-size: 1.6rem; line-height: 1.3; }
  h3 { font-size: 1.2rem; line-height: 1.3; }
  
  /* Service page specific section spacing */
  .problem-solution-section,
  .learning-section,
  .why-choose-section-services {
    margin-bottom: 0;
  }
  
  /* Global container padding for mobile */
  .container {
    padding: 0 15px;
  }
  
  /* Button improvements for mobile */
  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 25px;
  }
}

@media (max-width: 600px) {
  /* Further mobile refinements */
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  
  /* Paragraph text optimization */
  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Container padding for small screens */
  .container {
    padding: 0 12px;
  }
  
  /* Touch-friendly button sizing */
  .btn-primary, .btn-secondary {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    min-height: 44px; /* iOS touch target requirement */
  }
  
  /* Improved spacing between sections */
  .services-hero-page + section,
  .problem-solution-section + section,
  .learning-section + section,
  .why-choose-section-services + section {
    margin-top: 0;
  }
}

/* Accessibility improvements for mobile */
@media (max-width: 900px) {
  /* Ensure focus states are visible on mobile */
  .btn-primary:focus,
  .btn-secondary:focus,
  .faq-item summary:focus {
    outline: 2px solid #c31a7c;
    outline-offset: 2px;
  }
  
  /* Improve touch targets */
  .nav-links a,
  .dropdown-menu a {
    padding: 0.75rem 1rem;
    min-height: 44px;
  }
}

/* ==============================================
   Thank You Page Styles
   ============================================== */

/* Thank You Page */
.thank-you-container {
  max-width: 880px;
  margin: 120px auto 60px; /* account for fixed navbar */
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fdf5f8 100%);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.thank-you-container h1 {
  font-size: 2.25rem;
  color: #1a6368;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.thank-you-container p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.btn-home {
  display: inline-block;
  background-color: #c31a7c;
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid #c31a7c;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 18px rgba(195,26,124,0.12);
}

.btn-home:hover,
.btn-home:focus {
  background-color: #a01465;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(160,20,101,0.14);
}

@media (max-width: 900px) {
  .thank-you-container { margin: 100px 16px 40px; padding: 2rem 1rem; }
  .thank-you-container h1 { font-size: 1.8rem; }
  .btn-home { width: 100%; display: inline-block; padding: 0.9rem; }
}



/* ==============================================
 Cases Main Page Styles
   ============================================== */
/* Services Grid Section */
.use-cases-grid-section {
  padding: 80px 0;
  background: #fdf5f8;
}