/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* --- 1. Page Header (The Lively Hero) --- */
.page-header {
  padding: 3rem 1.5rem 5rem 1.5rem;
  background: #fff;
  position: relative;
  overflow: hidden; /* Contains the background blob */
}

/* Background Blob for "Activity" */
.header-bg-blob {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(98, 213, 193, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.page-header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Split Layout */
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Column: Text Alignment */
.page-header-content {
  text-align: left;
}

.page-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 1.1;
}

.page-subheadline {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 90%;
}

/* Right Column: Image Styling */
.page-header-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.contact-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.contact-image-wrapper img {
  width: 100%;
  border-radius: 24px 24px 0 24px; /* Unique shape */
  box-shadow: 20px 20px 0px rgba(240, 253, 250, 1); /* Offset solid shadow */
  position: relative;
  z-index: 1;
}

/* Floating Card on Image */
.floating-contact-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  border: 1px solid #f0fdfa;
}

.floating-contact-card .icon-box {
  width: 40px;
  height: 40px;
  background: #f0fdfa;
  color: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-contact-card span {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}

.floating-contact-card strong {
  font-size: 1rem;
  color: #0a192f;
}

/* --- 2. Main Contact Section --- */
.contact-main-section {
  padding: 0 1.5rem 6rem 1.5rem;
  background: linear-gradient(to bottom, #fff 0%, #f8fafc 100%);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Info Cards Row */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
  transition: transform 0.3s;
  border: 1px solid #f1f5f9;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: #62d5c1;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #f0fdfa;
  color: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.info-card h3 {
  margin: 0 0 0.5rem 0;
  color: #0a192f;
  font-size: 1.1rem;
}

.info-card p {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.info-card a {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- 3. Forms Layout --- */
.contact-forms-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Right side wider for Booking */
  gap: 4rem;
  align-items: start;
}

.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #0a192f;
}

.form-header p,
.booking-header p {
  color: #64748b;
  margin-bottom: 2rem;
}

/* Standard Inputs (General Form) */
.clean-form .form-group {
  margin-bottom: 1.5rem;
}

.clean-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a192f;
  margin-bottom: 0.5rem;
}

.clean-form input,
.clean-form select,
.clean-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: #0a192f;
  box-sizing: border-box;
  transition: border 0.3s;
}

.clean-form input:focus,
.clean-form select:focus,
.clean-form textarea:focus {
  outline: none;
  border-color: #62d5c1;
  box-shadow: 0 0 0 3px rgba(98, 213, 193, 0.1);
}

.btn-submit-outline {
  background: transparent;
  border: 2px solid #0a192f;
  color: #0a192f;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-outline:hover {
  background: #0a192f;
  color: white;
}

/* --- 4. Booking Card (Dark Navy Section) --- */
.booking-form-col {
  position: relative;
}

.booking-card {
  background: #0a192f; /* Navy Bg */
  padding: 2.5rem;
  border-radius: 24px;
  color: white;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.booking-header h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.booking-header p {
  color: #94a3b8;
}

/* Booking Inputs (Dark Mode Overrides) */
.booking-card label {
  color: #cbd5e1;
}

.booking-card input,
.booking-card select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.booking-card input:focus,
.booking-card select:focus {
  border-color: #62d5c1;
  background: rgba(255, 255, 255, 0.1);
}

/* Fix Dropdown Options Visibility */
.booking-card select option {
  background-color: #ffffff;
  color: #0a192f;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- THE "REQUEST APPOINTMENT" BUTTON --- */
/* This specifically styles the button inside the booking card */
.booking-card .hero-btn-primary,
.booking-card button[type="submit"] {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;

  /* Strong Green Gradient */
  background: linear-gradient(135deg, #62d5c1 0%, #56d35a 100%);

  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(98, 213, 193, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-card .hero-btn-primary:hover,
.booking-card button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(98, 213, 193, 0.4);
  background: linear-gradient(
    135deg,
    #56d35a 0%,
    #4ebc52 100%
  ); /* Slightly brighter on hover */
}

.form-note {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}

/* --- Responsive Layout for Contact Page --- */
@media (max-width: 992px) {
  .page-header-container {
    grid-template-columns: 1fr; /* Stack Hero */
    text-align: center;
    gap: 3rem;
  }

  .page-header-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-subheadline {
    margin: 0 auto;
  }

  .contact-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-image-wrapper img {
    width: 80%; /* Smaller on tablet */
    border-radius: 24px;
    box-shadow: none;
  }

  .floating-contact-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: max-content;
  }

  .contact-info-row {
    grid-template-columns: 1fr; /* Stack Info Cards */
  }

  .contact-forms-wrapper {
    grid-template-columns: 1fr; /* Stack Forms */
    gap: 3rem;
  }

  .booking-card {
    padding: 1.5rem;
  }

  .page-headline {
    font-size: 2.5rem;
  }
}

/* =========================================
   DECORATIVE HEADINGS & FAQ SECTION
   ========================================= */

/* --- 1. Decorated Heading (Green Shapes) --- */
.heading-with-decor {
  position: relative;
  display: inline-block;
  padding-left: 20px; /* Space for left bar */
  margin-bottom: 0.5rem;
  color: #0a192f;
}

/* Green Vertical Pill on Left */
.heading-with-decor::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(to bottom, #62d5c1, #56d35a);
  border-radius: 4px;
}

/* --- 2. FAQ Section Styles --- */
.faq-section {
  padding: 0 1.5rem 6rem 1.5rem;
  background: #f8fafc; /* Light gray to separate from contact form */
}

.faq-container {
  max-width: 800px; /* Narrower width for reading */
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header p {
  color: #64748b;
  margin-top: 1rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item Card */
.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.2s;
  border: 1px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: #62d5c1; /* Green border when open */
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a192f;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #0d9488;
}

/* Icon Rotation */
.faq-icon {
  font-size: 1.5rem;
  color: #62d5c1;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* Turns '+' into 'x' */
  color: #0d9488;
}

/* FAQ Answer (Hidden by default) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem; /* Space at bottom when open */
}

.faq-answer p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

/* =========================================
   TESTIMONIALS PAGE STYLES
   ========================================= */

/* --- Featured Story Section (Magazine Style) --- */
.featured-story-section {
  padding: 0 1.5rem 6rem 1.5rem;
  background: #fff;
}

.story-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr; /* Profile | Content */
  gap: 4rem;
  align-items: start;
}

/* Left Column: Visual Profile */
.story-profile-col {
  position: sticky;
  top: 100px; /* Floats as you scroll */
  text-align: center;
}

.story-image-frame {
  position: relative;
  margin-bottom: 1.5rem;
}

.story-image-frame img {
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 20px 20px 0 #f0fdfa; /* Teal offset */
}

.story-image-frame .quote-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: #0d9488;
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: serif;
}

.story-author-details h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0a192f;
}

.story-author-details p {
  margin: 5px 0;
  color: #0d9488;
  font-weight: 700;
  font-size: 0.9rem;
}

.org-label {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.8rem;
  color: #64748b;
  background: #f8fafc;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Right Column: Narrative */
.story-content-col {
  padding-top: 1rem;
}

.story-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #0a192f;
  font-weight: 800;
}

.story-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

.lead-paragraph {
  font-size: 1.2rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 2rem;
}

.story-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #62d5c1, #56d35a);
  margin: 2.5rem 0;
  border-radius: 2px;
}

.story-subtitle {
  font-size: 1.4rem;
  color: #0a192f;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-subtitle::before {
  content: "●";
  color: #56d35a;
  font-size: 0.8rem;
}

.impact-quote {
  background: #f0fdfa;
  border-left: 4px solid #0d9488;
  padding: 2rem;
  margin: 2.5rem 0;
  font-size: 1.2rem;
  font-style: italic;
  color: #0f766e;
  border-radius: 0 12px 12px 0;
}

/* --- Animated Reviews Grid --- */
.reviews-section {
  padding: 4rem 1.5rem 6rem 1.5rem;
  background: #f8fafc;
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
  transition:
    transform 0.3s,
    border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: #62d5c1;
  box-shadow: 0 15px 30px rgba(98, 213, 193, 0.15);
}

.review-stars {
  color: #fbbf24; /* Gold */
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author .avatar {
  width: 40px;
  height: 40px;
  background: #0a192f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.review-author strong {
  display: block;
  color: #0a192f;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0; /* Start hidden */
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}

/* --- RESPONSIVE TESTIMONIALS --- */
@media (max-width: 992px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-profile-col {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .story-content-col {
    text-align: left;
  }

  .reviews-grid {
    grid-template-columns: 1fr; /* Stack reviews on mobile */
  }
}

/* =========================================
   SERVICES PAGE (PROFESSIONAL REDESIGN)
   ========================================= */

/* --- 1. CLEAN HERO SECTION --- */
.services-hero-clean {
  padding: 1rem 2rem 6rem 2rem;
  background: #fff;
  text-align: center;
}

.svc-hero-content {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.clean-stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
  border: 1px solid #f1f5f9;
  text-align: center;
}

.clean-stat-card h3 {
  font-size: 1.8rem;
  color: #0a192f;
  margin: 10px 0 5px 0;
}

.clean-stat-card p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.clean-hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
}

.clean-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(5px);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.image-overlay-text span {
  font-size: 0.8rem;
  opacity: 0.8;
}
.image-overlay-text strong {
  font-size: 1rem;
  color: #56d35a;
}

/* --- 2. COMMON LAYOUT (PRO) --- */
.svc-section-pro {
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.svc-container-pro {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.reverse-layout {
  direction: rtl;
}
.reverse-layout > * {
  direction: ltr;
}

.pro-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.light {
  background: #f0fdfa;
  color: #0d9488;
}
.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #62d5c1;
}

.svc-link-pro {
  display: inline-block;
  margin-top: 1.5rem;
  color: #0d9488;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #0d9488;
}

/* --- SERVICE 1: ASSESSMENTS (Structured Tech) --- */
.svc-assessments-pro {
  background-color: #0a192f;
  color: white;
}
.svc-assessments-pro h2 {
  color: white;
}
.svc-assessments-pro p {
  color: #94a3b8;
}
.svc-assessments-pro .svc-lead {
  color: #62d5c1;
}
.dark-list li {
  color: #e2e8f0;
  list-style: none;
  margin-bottom: 8px;
  font-weight: 500;
}
.dark-list li::before {
  content: "✓";
  color: #56d35a;
  margin-right: 10px;
}

.visual-stack-pro {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.5;
}

.card-front-dark {
  position: relative;
  width: 60%;
  background: #112240;
  border: 1px solid #233554;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 2;
  margin-right: 20%;
}

.stat-row {
  margin-bottom: 1rem;
}
.stat-row span {
  font-size: 0.8rem;
  color: #64ffda;
  display: block;
  margin-bottom: 5px;
}
.stat-bar {
  height: 6px;
  background: #233554;
  border-radius: 3px;
}
.stat-bar div {
  height: 100%;
  background: #64ffda;
  border-radius: 3px;
}
.report-badge {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #56d35a;
  background: rgba(86, 211, 90, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* --- SERVICE 2: INDIVIDUAL (Frame Layout) --- */
.svc-individual-pro {
  background: #f8fafc;
}
.tags-pro span {
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #475569;
  display: inline-block;
  margin: 0 5px 5px 0;
}

.visual-frame-pro {
  position: relative;
  padding: 20px;
}

.visual-frame-pro img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.frame-accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
  left: 40px;
  background: #f0fdfa;
  border-radius: 24px;
  z-index: 1;
}

/* --- SERVICE 3: GROUP (Grid) --- */
.svc-group-pro {
  background: #fff;
}

.visual-grid-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  position: relative;
  width: 320px;
  height: 320px;
}

.visual-grid-pro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.grid-badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  color: #0d9488;
  z-index: 5;
}

/* --- SERVICE 4: CORPORATE (Card) --- */
.svc-corporate-pro {
  background: #f8fafc;
}
.light-list li {
  list-style: none;
  margin-bottom: 8px;
  color: #64748b;
}
.light-list li::before {
  content: "•";
  color: #0a192f;
  margin-right: 10px;
  font-weight: bold;
}

.visual-card-pro {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-header-pro {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 2rem;
}
.trend-up {
  color: #56d35a;
}

.card-chart-simple {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 120px;
  margin-bottom: 2rem;
}
.card-chart-simple .col {
  width: 15%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.card-chart-simple .col div {
  width: 100%;
  background: #f1f5f9;
  border-radius: 4px;
}
.card-chart-simple .col .active {
  background: #0a192f;
}

.card-footer-pro {
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

/* --- SERVICE 5: COACHING (Steps) --- */
.svc-coaching-pro {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: white;
}
.svc-coaching-pro h2 {
  color: white;
}
.svc-coaching-pro p {
  color: #ccfbf1;
}
.svc-coaching-pro .svc-lead {
  color: #56d35a;
}
.svc-coaching-pro .svc-link-pro {
  color: white;
  border-color: white;
}
.svc-coaching-pro .pro-icon-box {
  background: rgba(255, 255, 255, 0.1);
  color: #56d35a;
}

.step-visual-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  width: 250px;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card.active {
  background: white;
  color: #0a192f;
  font-weight: 700;
}
.step-card .num {
  opacity: 0.5;
  font-family: monospace;
}
.step-line {
  height: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .svc-hero-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .clean-hero-image {
    height: 250px;
    order: -1;
    margin-bottom: 2rem;
  }

  .svc-container-pro {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .svc-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .svc-list-pro,
  .light-list,
  .dark-list {
    text-align: left;
  }

  .visual-stack-pro {
    height: 300px;
  }
  .card-front-dark {
    width: 80%;
    margin: 0;
  }
  .visual-grid-pro {
    margin: 0 auto;
  }
}

/* =========================================
   SERVICES PAGE (REFINED LAYOUTS)
   ========================================= */

/* --- 1. UPDATED HEADINGS & TEXT --- */
.svc-text-col h2 {
  font-size: 3.5rem; /* Increased Size */
  margin-bottom: 1rem;
  margin-top: 0;
  font-weight: 800;
  line-height: 1.1;
  color: #0a192f;
}

.svc-coaching-pro .svc-text-col h2 {
  font-size: 3.5rem; /* Increased Size */
  margin-bottom: 1rem;
  margin-top: 0;
  font-weight: 800;
  line-height: 1.1;
  color: white;
}

/* Gradient Keyword Highlight */
.svc-section-pro .gradient-text {
  background: linear-gradient(135deg, #62d5c1, #56d35a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Override for Dark Sections (Assessments) */
.svc-assessments-pro h2 {
  color: white;
}
.svc-assessments-pro .gradient-text {
  background: linear-gradient(135deg, #64ffda, #56d35a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 2. GROUP SUPPORT: RIGID GRID (Visual) --- */
.rigid-grid-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.rigid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;

  /* Fixed Aspect Ratio + Responsive Width */
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;

  position: relative;
}

.rigid-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.grid-center-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
  white-space: nowrap;
}

.grid-center-overlay span {
  font-weight: 800;
  color: #0d9488;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* --- 3. CORPORATE: 3-CARD SHUFFLE (Visual) --- */
.card-shuffle-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shuffle-card {
  position: absolute;
  width: 260px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
  transition: transform 0.3s ease;
}

.shuffle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fan Effect */
.card-1 {
  transform: translateX(-60px) rotate(-10deg) scale(0.9);
  z-index: 1;
}

.card-2 {
  transform: translateX(0px) rotate(0deg) scale(1);
  z-index: 3; /* Center card on top */
}

.card-3 {
  transform: translateX(60px) rotate(10deg) scale(0.9);
  z-index: 2;
}

/* Hover Effect for Fun */
.card-shuffle-wrapper:hover .card-1 {
  transform: translateX(-80px) rotate(-15deg) scale(0.9);
}
.card-shuffle-wrapper:hover .card-3 {
  transform: translateX(80px) rotate(15deg) scale(0.9);
}

/* --- 4. RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  /* Ensure Headings shrink slightly but stay bold */
  .svc-text-col h2 {
    font-size: 2.8rem;
    text-align: center;
  }

  /* Center the rigid grid on mobile */
  .rigid-grid-container {
    margin: 0 auto;
  }

  /* Adjust Shuffle for smaller screens */
  .card-shuffle-wrapper {
    height: 300px;
  }
  .shuffle-card {
    width: 180px;
    height: 240px;
  }
  .card-1 {
    transform: translateX(-40px) rotate(-10deg);
  }
  .card-3 {
    transform: translateX(40px) rotate(10deg);
  }
}

@media (max-width: 480px) {
  .svc-text-col h2 {
    font-size: 2.4rem;
  }

  /* Ensure grid gap is smaller on tiny phones */
  .rigid-grid {
    gap: 8px;
    max-width: 100%;
  }

  /* Tighter shuffle */
  .shuffle-card {
    width: 140px;
    height: 200px;
  }
  .card-1 {
    transform: translateX(-30px) rotate(-6deg);
  }
  .card-3 {
    transform: translateX(30px) rotate(6deg);
  }
}

/* =========================================
   ABOUT PAGE STYLES (Structured & Unique)
   ========================================= */

/* --- 1. THE "FOCUS FADE" HERO --- */
.about-hero {
  background: linear-gradient(
    to bottom,
    rgba(240, 253, 250, 1) 0%,
    rgba(240, 253, 250, 0.5) 120px,
    #ffffff 120px,
    #ffffff 100%
  );

  padding: 2rem 1.5rem 3rem 1.5rem;
  text-align: center;
}

.about-hero-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ensure pill sits in the green zone */
.about-hero .hero-badge-pill {
  background: white; /* Pop against the green tint */
  border-color: #ccfbf1;
  margin-bottom: 2.5rem; /* Push the H1 down into the white zone */
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 800px;
}

/* --- 2. MANIFESTO SECTION (Architectural Layout) --- */
.about-manifesto-section {
  padding: 0 2rem 3rem 2rem;
  background: #f8fafc;
}

.manifesto-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Left: Narrative */
.manifesto-text-col {
  position: sticky;
  top: 100px; /* nice effect on scroll */
}

.manifesto-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0a192f;
  margin-bottom: 2rem;
  font-weight: 800;
}

.lead-text {
  font-size: 1.15rem;
  color: #0a192f;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.manifesto-body p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.signature-block {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.signature-img {
  height: 50px;
  opacity: 0.6;
}

.signature-block div {
  display: flex;
  flex-direction: column;
}
.signature-block strong {
  color: #0a192f;
  font-size: 1rem;
}
.signature-block span {
  color: #64748b;
  font-size: 0.85rem;
}

/* Right: Unique Grid Visuals */
.manifesto-visual-col {
  position: relative;
  padding-top: 2rem;
}

.arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 250px 200px;
  gap: 20px;
}

.arch-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.arch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout logic */
.large-card {
  grid-column: 1 / 2;
  grid-row: 1 / 3; /* Tall card on left */
  height: 100%;
}

.small-card-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.small-card-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: #0a192f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.stat-box {
  text-align: center;
}
.stat-box h3 {
  font-size: 3rem;
  margin: 0;
  color: #62d5c1;
}
.stat-box p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.arch-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0a192f;
}

/* --- 3. VALUES VAULT (Structured Grid) --- */
.values-section {
  padding: 3rem 2rem;
  background: #f8fafc;
}

.values-container {
  max-width: 1100px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.values-header h2 {
  font-size: 2.5rem;
  color: #0a192f;
  margin-bottom: 1rem;
  font-weight: 800;
}
.values-header p {
  color: #64748b;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(10, 25, 47, 0.08);
}

/* Highlight one card for visual break */
.value-card.highlight-card {
  background: #0a192f;
  color: white;
}
.value-card.highlight-card h3 {
  color: white;
}
.value-card.highlight-card p {
  color: #94a3b8;
}
.value-card.highlight-card .value-number {
  color: #62d5c1;
  opacity: 1;
}

.value-number {
  font-size: 3rem;
  font-weight: 800;
  color: #e2e8f0;
  opacity: 0.5;
  margin-bottom: 1rem;
  line-height: 1;
}

.value-card h3 {
  font-size: 1.2rem;
  color: #0a192f;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* --- ABOUT RESPONSIVE --- */
@media (max-width: 992px) {
  .manifesto-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto-text-col {
    position: relative;
    top: 0;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr; /* 2x2 on tablet */
  }
}

@media (max-width: 600px) {
  .arch-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .large-card,
  .small-card-top,
  .small-card-bottom {
    grid-column: auto;
    grid-row: auto;
    height: 250px;
  }

  .values-grid {
    grid-template-columns: 1fr; /* Stack values */
  }
}
