/* style.css - Grace Haven Recovery LLC - Updated Design */
:root {
    /* Brand Colors - Calm, Trustworthy, Modern */
    --teal: #00b8b8;
    --teal-dark: #007f8f;
    --purple: #5b2bbd;
    --purple-dark: #351170;
    --ink: #172033;
    --muted: #667085;
    --soft: #f3fbfb;
    --white: #ffffff;
    --line: #dce9ec;
    
    /* Legacy variables for compatibility */
    --sand: var(--soft);
    --cream: var(--white);
    --terra: var(--purple);
    --rust: var(--purple-dark);
    --sage: var(--teal);
    --charcoal: var(--ink);
    
    --red: var(--purple);
    --gold: #D4A373;
    --black: var(--ink);
    --dark-bg: #0a0a0a;
    --gray-light: var(--soft);
    --text-dark: var(--ink);
    --text-muted: var(--muted);
    --border-light: var(--line);
    
    --primary: var(--purple);
    --primary-dark: var(--purple-dark);
    --primary-light: #7e5ad4;
    --secondary: var(--teal);
    --secondary-dark: var(--teal-dark);
    --light: var(--white);
    --dark: var(--ink);
    --gray: var(--muted);
    --border: var(--line);
    
    --radius: 22px;
    --radius-sm: 14px;
    --radius-pill: 999px;
    --shadow: 0 18px 50px rgba(19, 32, 51, .12);
    --shadow-lg: 0 30px 80px rgba(19, 32, 51, .18);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--muted);
    background-color: var(--white);
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    line-height: 1.1;
    margin: 0 0 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(38px, 5vw, 66px);
    letter-spacing: -0.04em;
    color: var(--purple-dark);
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.03em;
    color: var(--purple-dark);
}

h3 {
    font-size: 22px;
    color: var(--purple-dark);
}

h4 {
    font-size: 17px;
    color: var(--teal-dark);
}

p {
    margin: 0 0 16px;
}

a {
    color: var(--teal-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--purple);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: min(1180px, 92%);
}

.section {
    padding: 78px 0;
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    margin: 8px 0 14px;
    color: var(--purple-dark);
    position: relative;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    border-radius: 2px;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 760px;
}

.section-subtitle.centered {
    text-align: center;
    margin: 0 auto 30px;
}

.eyebrow {
    color: var(--teal-dark);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(91, 43, 189, .18);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    white-space: nowrap;
}

.btn-small {
    padding: 11px 16px;
    font-size: 0.82rem;
    box-shadow: none;
}

.btn-large {
    padding: 18px 32px;
    font-size: 1rem;
}

.btn-red {
    background: linear-gradient(135deg, var(--teal), var(--purple));
    color: var(--white);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 43, 189, 0.3);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--teal), var(--purple));
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 43, 189, 0.3);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--purple);
    color: var(--purple);
    background: transparent;
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--purple);
    border: 1px solid var(--purple);
    box-shadow: none;
}

.btn-light:hover {
    background: var(--soft);
    transform: translateY(-2px);
    color: var(--purple);
}

.btn-accent {
    background: linear-gradient(135deg, var(--teal), var(--purple));
    color: var(--white);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 43, 189, 0.3);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--purple);
    border: 1px solid var(--purple);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--soft);
    color: var(--purple);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    min-height: 86px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    max-height: 62px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--purple));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--purple);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: var(--purple);
}

.nav-link.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--ink);
    cursor: pointer;
    padding: 10px;
    font-weight: 900;
}

/* ===== HERO ===== */
.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 10%, rgba(0, 184, 184, .18), transparent 32%), 
                linear-gradient(135deg, #f6ffff 0%, #fbf8ff 100%);
    color: var(--ink);
    text-align: left;
    padding: 86px 0 54px;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    clip-path: polygon(0 70%, 100% 20%, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 52px;
    align-items: center;
}

.badge {
    display: inline-flex;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    color: var(--white);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.hero-content h1 {
    color: var(--purple-dark);
    margin: 18px 0;
}

.hero-subtitle {
    font-size: 20px;
    color: #344054;
    max-width: 670px;
    line-height: 1.6;
    margin: 0 auto 28px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-card {
    border-radius: 32px;
    min-height: 420px;
    background: linear-gradient(135deg, rgba(0, 184, 184, .95), rgba(91, 43, 189, .92)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1200&q=80') center/cover;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    color: #fff;
}

.hero-card .quote {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.16;
}

/* ===== QUICK BAR ===== */
.quickbar {
    background: var(--soft);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.quickgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.quick-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 8px 22px rgba(19, 32, 51, .06);
}

.quick-item strong {
    display: block;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.quick-item span {
    color: var(--muted);
    font-size: 0.95rem;
}

.quick-item a {
    color: var(--teal-dark);
    font-weight: 700;
}

.quick-item a:hover {
    color: var(--purple);
}

/* ===== APPROACH SECTION ===== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.approach-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 12px 26px rgba(19, 32, 51, .06);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.approach-card .num {
    font-weight: 900;
    color: var(--teal-dark);
    font-size: 14px;
    margin-bottom: 12px;
}

.approach-card h3 {
    font-size: 22px;
    color: var(--purple-dark);
}

.approach-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(19, 32, 51, .08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.service-card .service-body {
    padding: 28px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    color: var(--purple-dark);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.service-card .service-description {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.service-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-card ul li {
    margin: 8px 0;
    padding-left: 27px;
    position: relative;
    font-size: 0.95rem;
    color: var(--ink);
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 900;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 44px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--white);
}

.stat-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

/* ===== WHO WE HELP ===== */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.who-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.who-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.check-list {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.check-list li {
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--ink);
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 900;
    font-size: 1.2rem;
}

/* ===== WHY CHOOSE ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 25px rgba(19, 32, 51, .06);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.why-card h3 {
    font-size: 22px;
    color: var(--purple-dark);
    margin: 0 0 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.why-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--purple-dark), var(--teal-dark));
    color: var(--white);
    text-align: center;
    padding: 90px 0;
}

.cta-section h2,
.cta-section p {
    color: var(--white);
}

.cta-section .eyebrow {
    color: #bfffff;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--white);
    padding: 90px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
    align-items: start;
}

.contact-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-box a {
    color: var(--teal-dark);
    font-weight: 900;
    text-decoration: none;
}

.contact-box a:hover {
    color: var(--purple);
}

.contact-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin: 8px 0 18px;
    line-height: 1.1;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--purple-dark);
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.05rem;
    color: var(--ink);
}

.contact-details strong {
    color: var(--ink);
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
    background: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-dark);
    box-shadow: 0 0 0 3px rgba(0, 184, 184, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ===== FOOTER ===== */
footer {
    background: #101828;
    color: #d0d5dd;
    padding: 54px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.82);
    display: block;
    margin: 8px 0;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-license {
    color: #bfffff;
    font-weight: bold;
    margin: 0.5rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 900;
}

.sticky-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sticky-buttons .btn {
    padding: 13px 10px;
    font-size: 0.9rem;
    box-shadow: none;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    display: none;
}

/* ===== FORM MESSAGES ===== */
.form-message.form-message--error {
    border: 2px solid #dc2626;
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
}

.form-message.form-message--success {
    border: 2px solid #059669;
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
}

/* ======================================== */
/* ===== RESPONSIVE ===== */
/* ======================================== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        border-bottom: 1px solid var(--line);
        max-height: 100vh;
        overflow-y: auto;
        z-index: 999;
    }
    
    nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-card {
        min-height: 310px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .who-image img {
        height: 320px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .quickgrid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-image {
        max-height: 48px;
    }
    
    .hero {
        min-height: auto;
        padding: 48px 20px 40px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 56px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        gap: 16px;
    }
    
    .service-card .service-image {
        height: 180px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .who-image img {
        height: 240px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .quickgrid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links a {
        display: inline-block;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item strong {
        font-size: 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card .service-body {
        padding: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-item strong {
        font-size: 28px;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
}

/* ===== GALLERY - empty but kept for compatibility ===== */
.gallery-section {
    display: none;
}


/* ===== LEARN MORE BUTTON ===== */
.service-card .service-body {
    position: relative;
}

.service-short-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-full-desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.service-full-desc h4 {
    font-size: 1rem;
    color: var(--teal-dark);
    margin: 18px 0 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.service-full-desc h4:first-child {
    margin-top: 0;
}

.service-full-desc p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-full-desc ul {
    padding: 0;
    margin: 0 0 12px;
    list-style: none;
}

.service-full-desc ul li {
    margin: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.92rem;
    color: var(--ink);
}

.service-full-desc ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 900;
}

.btn-learn-more {
    background: none;
    border: none;
    color: var(--purple);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.btn-learn-more:hover {
    color: var(--purple-dark);
}

.btn-learn-more .learn-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.btn-learn-more.active .learn-more-icon {
    transform: rotate(180deg);
}

/* ===== SERVICE ICON ===== */
.service-card .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(91, 43, 189, 0.1);
    color: var(--purple);
    font-size: 22px;
    margin-bottom: 14px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--white);
    padding: 90px 0;
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    min-width: 100%;
    border: 1px solid var(--line);
    box-sizing: border-box;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 50px;
    color: var(--purple);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 30px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.05rem;
    margin: 0 0 3px;
    color: var(--ink);
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.author-info p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dot.active {
    background: var(--purple);
    transform: scale(1.2);
}

.testimonials-dot:hover {
    background: var(--purple);
    opacity: 0.7;
}

.testimonials-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-arrow:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    transform: scale(1.05);
}

/* Mobile responsive for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .testimonial-text:before {
        font-size: 36px;
    }
    
    .testimonial-author {
        padding-left: 20px;
    }
    
    .author-avatar {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 16px;
    }
    
    .testimonial-text:before {
        font-size: 28px;
        top: -4px;
    }
    
    .testimonial-author {
        padding-left: 16px;
        flex-wrap: wrap;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .testimonials-nav {
        gap: 8px;
        margin-top: 20px;
    }
    
    .testimonials-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== THERAPY SERVICES LIST ===== */
.therapy-services-list {
    padding: 0;
    margin: 18px 0 18px;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.therapy-services-list li {
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.5;
}

.therapy-services-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 900;
    font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .therapy-services-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .therapy-services-list li {
        font-size: 0.9rem;
    }
}
