/* ==========================================================================
   KM PERSONAL - HOMEPAGE STYLES
   ========================================================================== */

/* Ensure all elements use Open Sans */
* {
  font-family: 'Open Sans', sans-serif !important;
}

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

.hero {
  position: relative;
  min-height: 600px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 41, 38, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1000px;
}

.hero-badge {
  background: var(--light-purple);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(182, 149, 179, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(182, 149, 179, 0.5);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Wave Divider */
.hero .wave-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.hero .wave-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.hero .wave-divider-top .shape-fill {
  fill: var(--beige-bg);
}

/* ==========================================================================
   MISSION SECTION
   ========================================================================== */

.mission {
  background: var(--dark-green);
  color: var(--white);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.mission .section-title {
  color: var(--white);
}

.mission-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
}

.value-icon {
  font-size: 48px;
  color: #FCF7F0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.value-icon svg {
  width: 60px;
  height: 60px;
  color: #FCF7F0;
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.value-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.mission .circle-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  left: -150px;
}

.mission .circle-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -100px;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */

.trust {
  background: var(--beige-bg);
  padding: var(--section-padding);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trust-content {
  padding: 20px;
}

.trust-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--darker-green);
  line-height: 1.2;
  margin-bottom: 24px;
}

.trust-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
}

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

.services-overview {
  background: var(--white);
  padding: var(--section-padding);
  scroll-margin-top: 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards, serviceCardFloat 3s ease-in-out 0.6s infinite;
}

/* Service cards with background images */
.service-card.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 380px;
}

.service-card.has-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 41, 38, 0.55) 0%, rgba(0, 41, 38, 0.45) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card.has-bg-image:hover::before {
  background: linear-gradient(135deg, rgba(0, 41, 38, 0.45) 0%, rgba(0, 41, 38, 0.35) 100%);
}

.service-card.has-bg-image > * {
  position: relative;
  z-index: 2;
}

.service-card.has-bg-image .service-icon svg {
  color: var(--white);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-card.has-bg-image:hover .service-icon svg {
  color: #FCF7F0;
}

.service-card.has-bg-image .service-title {
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card.has-bg-image .service-excerpt {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card.has-bg-image p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card.has-bg-image h3 {
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card.has-bg-image .service-link {
  color: #FCF7F0 !important;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card.has-bg-image:hover .service-link {
  color: var(--white) !important;
}

.service-card:not(.has-bg-image)::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(149, 117, 205, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:not(.has-bg-image):hover::before {
  opacity: 1;
  animation: gradientRotate 3s linear infinite;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(149, 117, 205, 0.2);
}

.service-card:hover .service-link {
  color: var(--light-purple);
  transform: translateX(5px);
}

.service-icon {
  font-size: 48px;
  color: var(--dark-green);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  animation: iconBounce 0.6s ease;
  transform: scale(1.15);
}

.service-icon svg {
  width: 50px;
  height: 50px;
  color: var(--dark-green);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon svg {
  color: var(--light-purple);
  filter: drop-shadow(0 4px 8px rgba(149, 117, 205, 0.3));
}

.service-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: var(--dark-purple);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

/* Service Card Animations */
@keyframes serviceCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes iconBounce {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2) rotate(-5deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
  75% {
    transform: scale(1.25) rotate(-3deg);
  }
}

@keyframes gradientRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/* Staggered animation delays for service cards */
.service-card:nth-child(1) {
  animation-delay: 0.1s, 0.7s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s, 0.8s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s, 0.9s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s, 1s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s, 1.1s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s, 1.2s;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
  background: linear-gradient(135deg, #FCF7F0 0%, #F5E8F3 100%);
  padding: var(--section-padding);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--white);
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.5s;
}

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

.quote-icon {
  font-size: 48px;
  color: var(--light-purple);
  margin-bottom: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-info {
  text-align: center;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-position {
  font-size: 14px;
  color: #666;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-prev,
.slider-next {
  background: var(--dark-green);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--darker-green);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--dark-purple);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */

.booking {
  background: linear-gradient(135deg, #FCF7F0 0%, #F5E8F3 100%);
  padding: var(--section-padding);
}

.booking-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-body);
}

.booking-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Calendly Integration */
.calendly-inline-widget {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.calendly-inline-widget iframe {
  width: 100% !important;
}

/* Show/hide based on screen size */
.calendly-mobile-only {
  display: none;
}

.calendly-desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .calendly-desktop-only {
    display: none;
  }

  .calendly-mobile-only {
    display: block;
  }
}

/* Mobile Calendly Card */
.calendly-mobile-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.calendly-mobile-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.calendly-mobile-card p {
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

.calendly-mobile-card .btn {
  width: 100%;
  max-width: 300px;
}

/* Calendly Popup Overlay Styling */
.calendly-overlay {
  background: rgba(0, 0, 0, 0.6) !important;
}

.calendly-overlay .calendly-popup {
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.calendly-overlay .calendly-popup-content {
  height: 100% !important;
  flex: 1 !important;
  overflow: hidden !important;
}

.calendly-overlay .calendly-popup-content iframe {
  height: 100% !important;
}

/* Hide Calendly spinner/loading dots */
.calendly-overlay .calendly-spinner {
  display: none !important;
}

@media (max-width: 768px) {
  .calendly-overlay {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .calendly-overlay .calendly-popup {
    margin: 16px !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    height: calc(100% - 32px) !important;
    max-height: calc(100% - 32px) !important;
    border-radius: 16px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    border: none !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  }

  .calendly-overlay .calendly-popup-close {
    top: 12px !important;
    right: 12px !important;
    z-index: 10 !important;
  }

  .calendly-overlay .calendly-popup-content {
    border-radius: 12px !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .calendly-overlay .calendly-popup-content iframe {
    height: 100% !important;
    min-height: 100% !important;
    border-radius: 12px !important;
  }
}

/* Custom Booking Calendar */
.custom-booking {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(182, 149, 179, 0.1);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Calendar Side */
.calendar-side {
  padding: 40px;
  border-right: 1px solid #e0e0e0;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calendar-month {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.5px;
}

.calendar-nav {
  background: var(--white);
  border: 2px solid #e8e8e8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  font-size: 18px;
}

.calendar-nav:hover {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--darker-green) 100%);
  color: var(--white);
  border-color: var(--darker-green);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(33, 73, 69, 0.15);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.weekday {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-purple);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid transparent;
  background: transparent;
  color: var(--text-body);
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border-color: var(--dark-green);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.calendar-day.selected {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--darker-green) 100%);
  color: var(--white);
  font-weight: 700;
  border-color: var(--darker-green);
  box-shadow: 0 4px 12px rgba(33, 73, 69, 0.2);
}

.calendar-day.today {
  border-color: var(--light-purple);
  font-weight: 600;
  background: rgba(182, 149, 179, 0.05);
}

.calendar-day.disabled {
  color: #d0d0d0;
  cursor: not-allowed;
}

.calendar-day.empty {
  cursor: default;
}

/* Timeslots Side */
.timeslots-side {
  padding: 40px;
  background: #fafafa;
}

.timeslots-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.selected-date {
  font-size: 15px;
  color: var(--dark-purple);
  margin-bottom: 24px;
  font-weight: 500;
}

.timeslots-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 12px;
  margin-bottom: 24px;
}

.timeslot {
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.timeslot:hover {
  border-color: var(--dark-green);
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 73, 69, 0.12);
}

.timeslot.selected {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--darker-green) 100%);
  color: var(--white);
  border-color: var(--darker-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(33, 73, 69, 0.25);
}

.timeslot.unavailable {
  background: #fafafa;
  color: #bbb;
  cursor: not-allowed;
  border-color: #f0f0f0;
  opacity: 0.6;
}

/* Booking Form */
.booking-form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}

.booking-form h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark-green);
  box-shadow: 0 0 0 4px rgba(33, 73, 69, 0.08);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.booking-fallback {
  text-align: center;
  padding: 60px 20px;
}

.booking-fallback p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #666;
}

/* Scrollbar Styling */
.timeslots-container::-webkit-scrollbar {
  width: 6px;
}

.timeslots-container::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.timeslots-container::-webkit-scrollbar-thumb {
  background: var(--light-purple);
  border-radius: 10px;
}

.timeslots-container::-webkit-scrollbar-thumb:hover {
  background: var(--dark-purple);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
}

.cta-section .section-title {
  color: var(--white);
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.95;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-extra {
  position: relative;
  z-index: 1;
}

.cta-extra-text {
  font-size: 14px;
  opacity: 0.8;
  color: var(--white);
}

.cta-extra-text a {
  color: var(--light-purple);
  text-decoration: none;
}

.cta-extra-text a:hover {
  text-decoration: underline;
}

.cta-section .circle-cta-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  background: rgba(182, 149, 179, 0.05);
}

.cta-section .circle-cta-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -150px;
  left: -120px;
  background: rgba(182, 149, 179, 0.05);
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media (max-width: 767px) {
  /* Hero Section */
  .hero {
    min-height: calc(100vh - 90px);
    height: auto;
    padding-top: 0;
    margin-top: 90px;
  }

  .hero-overlay {
    padding: 40px 20px;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 14px;
    padding: 10px 24px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* Mission Section */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Trust Section */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-title {
    font-size: 28px;
  }

  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Services Hero for Archive */
  .services-hero {
    min-height: 300px;
  }

  .services-hero .page-title {
    font-size: 36px;
  }

  .services-hero .page-subtitle {
    font-size: 16px;
  }

  /* Booking Section */
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .calendar-side {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 20px;
  }

  .timeslots-side {
    padding: 30px 20px;
  }

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

  /* Testimonials Section */
  .testimonial-card {
    padding: 32px 24px;
  }

  .quote-icon {
    font-size: 36px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  /* CTA Section */
  .cta-title {
    font-size: 28px;
  }

  .cta-text {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ==========================================================================
   SERVICES ARCHIVE PAGE
   ========================================================================== */

.services-archive {
  background: var(--white);
  padding: 80px 20px;
}

.archive-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.archive-header .section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.archive-header .section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
}

/* Services Hero for Archive */
.services-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 41, 38, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 60px 20px;
}

.services-hero .page-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero .page-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title {
    font-size: 42px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .trust-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }
}
