/* ============================================================
   Claritas Academics — Homepage Specific Styles
   ============================================================ */

/* ---------------- Hero Section ---------------- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 76, 117, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-content {
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.3s forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--light-text);
    letter-spacing: 2px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--light-text);
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards, bounce 2s ease-in-out 2s infinite;
}

/* ---------------- Section General ---------------- */
section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Problem Context Section ---------------- */
.problem-context {
    background: var(--white);
    border-radius: 20px;
    padding: 5rem 4rem;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

.problem-text {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.8;
    color: var(--text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.problem-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------- Impact Metrics ---------------- */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.metric-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease, transform 0.3s ease;
}

.metric-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.metric-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--light-text);
    letter-spacing: 1px;
}

/* ---------------- Philosophy Section ---------------- */
.philosophy-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    min-height: auto;
    position: relative;
}

.philosophy-flow {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.philosophy-arrow-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.philosophy-arrow-path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 3;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    filter: drop-shadow(0 0 8px rgba(15, 76, 117, 0.4));
    transition: stroke-dashoffset 0.1s linear;
}

.philosophy-arrow-head {
    fill: var(--accent);
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(15, 76, 117, 0.4));
    transition: opacity 0.3s ease;
}

.philosophy-arrow-head.visible {
    opacity: 1;
}

/* Stage Layout - Default: Circle Left, Text Right (Used for Confidence) */
.philosophy-stage {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-stage.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Layout for Clarity (1st) and Results (3rd): Text Left, Circle Right */
.philosophy-stage:nth-child(2),
.philosophy-stage:nth-child(4) {
    grid-template-columns: 1fr 280px;
}

.philosophy-stage:nth-child(2) .stage-circle-wrapper,
.philosophy-stage:nth-child(4) .stage-circle-wrapper {
    order: 2;
}

.philosophy-stage:nth-child(2) .stage-content,
.philosophy-stage:nth-child(4) .stage-content {
    order: 1;
    text-align: right;
}

.stage-circle-wrapper {
    display: flex;
    justify-content: center;
}

.stage-circle {
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stage-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-stage:hover .stage-circle {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(15, 76, 117, 0.25);
}

.philosophy-stage:hover .stage-circle::before {
    opacity: 1;
}

.stage-image {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stage-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
    color: var(--text);
}

.stage-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
}

.stage-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

/* ---------------- Subject Category Cards ---------------- */
.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.subject-category-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    overflow: hidden;
}

.subject-category-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.subject-category-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.category-header {
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.subject-category-card:hover .category-header {
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.02) 0%, rgba(201, 169, 97, 0.02) 100%);
}

.subject-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.subject-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.subject-description {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expand-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.expand-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.subject-category-card.expanded .expand-arrow {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.subject-category-card.expanded .category-content {
    max-height: 800px;
    border-top: 1px solid #e9ecef;
    overflow-y: auto;
}

.subject-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.subject-item {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text);
    border: 1px solid #e9ecef;
    font-weight: 500;
}

/* Tutors Showcase inside Subject Cards */
.tutors-showcase {
    padding: 1.5rem 2rem 2rem;
}

.showcase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tutor-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tutor-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tutor-mini-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(15, 76, 117, 0.15);
}

.tutor-mini-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.tutor-mini-photo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.tutor-mini-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.tutor-mini-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
}

.tutor-mini-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
}

.mini-subject-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.08) 0%, rgba(201, 169, 97, 0.08) 100%);
    color: var(--accent);
    border-radius: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.find-tutor-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.find-tutor-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* ---------------- Pricing Cards ---------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    position: relative;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.recommended {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.recommended::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.recommended:hover {
    transform: translateY(-10px) scale(1.07);
}

.pricing-card.elite {
    border: 2px solid var(--purple);
    transform: scale(1.05);
}

.pricing-card.elite::before {
    content: 'TOP BANDS GUARANTEED';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-card.elite:hover {
    transform: translateY(-10px) scale(1.07);
}

.plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1.2rem;
}

.plan-duration {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text);
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* ---------------- Value Proposition Section ---------------- */
.value-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
}

.value-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.value-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(15, 76, 117, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.value-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 4rem;
}

.value-badge {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--gold) 0%, #d4af70 100%);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.value-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.value-card:nth-child(1) { animation-delay: 0.3s; }
.value-card:nth-child(2) { animation-delay: 0.4s; }
.value-card:nth-child(3) { animation-delay: 0.5s; }

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.value-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.value-card-text strong {
    color: var(--accent);
    font-weight: 600;
}

.value-highlight {
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 4px solid var(--gold);
    text-align: center;
}

.value-highlight-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
}

.value-highlight-text strong {
    color: var(--accent);
    font-weight: 600;
}

/* ---------------- Booking Section ---------------- */
.booking-section {
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 5rem 4rem;
    text-align: center;
}

.booking-cta-container {
    max-width: 700px;
    margin: 2rem auto 0;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.booking-instruction {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.browse-tutors-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.browse-tutors-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.3);
}

/* ---------------- 3D Perspective Testimonials Section ---------------- */
.testimonials-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-stage-wrap {
    perspective: 1400px;
    position: relative;
    height: 360px;
    margin: 4rem 0 3rem;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 520px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
    padding: 2.5rem 2.5rem 2rem;
    box-sizing: border-box;
    transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.4s ease;
    cursor: pointer;
}

.testimonial-card.pos-center {
    transform: translateX(-50%) translateZ(0) scale(1) rotateY(0deg);
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    cursor: default;
    transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.4s ease, box-shadow 0.3s ease, outline 0.3s ease;
}

.testimonial-card.pos-left {
    transform: translateX(-88%) translateZ(-130px) scale(0.87) rotateY(20deg);
    z-index: 5;
    opacity: 0.5;
}

.testimonial-card.pos-right {
    transform: translateX(-12%) translateZ(-130px) scale(0.87) rotateY(-20deg);
    z-index: 5;
    opacity: 0.5;
}

.testimonial-card.pos-center:hover {
    box-shadow: 0 8px 40px rgba(15, 76, 117, 0.5), 0 0 0 2px rgba(15, 76, 117, 0.5);
}

.testimonial-card.pos-hidden-left,
.testimonial-card.pos-hidden-right {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateZ(-250px) scale(0.7);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}

.testimonial-stars span {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 0.75rem;
    display: block;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 1.25rem;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-subject-tag {
    font-size: 0.78rem;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.08) 0%, rgba(201, 169, 97, 0.08) 100%);
    color: var(--accent);
    border-radius: 15px;
    font-weight: 500;
    border: 1px solid rgba(15, 76, 117, 0.15);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testimonials-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 76, 117, 0.25);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonials-nav-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: scale(1.08);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.35s ease;
}

.testimonials-dot.active {
    background: var(--gold);
    width: 22px;
    border-radius: 4px;
}

/* ---------------- Responsive Styles (Home) ---------------- */
@media (max-width: 768px) {
    section {
        padding: 4rem 5%;
    }

    .philosophy-arrow-svg {
        display: none;
    }

    .philosophy-stage,
    .philosophy-stage:nth-child(2),
    .philosophy-stage:nth-child(4) {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .philosophy-stage .stage-circle-wrapper,
    .philosophy-stage:nth-child(2) .stage-circle-wrapper,
    .philosophy-stage:nth-child(4) .stage-circle-wrapper {
        order: 1;
    }

    .philosophy-stage .stage-content,
    .philosophy-stage:nth-child(2) .stage-content,
    .philosophy-stage:nth-child(4) .stage-content {
        order: 2;
        text-align: center;
    }

    .stage-content {
        padding: 1.5rem;
        text-align: center;
    }

    .stage-circle {
        width: 200px;
        height: 200px;
    }

    .stage-image {
        width: 120px;
        height: 120px;
    }

    .metrics-grid,
    .subjects-grid,
    .pricing-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .problem-context,
    .value-section {
        padding: 3rem 2rem;
    }

    .testimonials-stage-wrap {
        height: auto;
        perspective: none;
    }

    .testimonial-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none !important;
        opacity: 0;
        display: none;
        box-sizing: border-box;
    }

    .testimonial-card.pos-center {
        display: block;
        opacity: 1;
    }
}
