/* =========================================================================
   Psychic Guide App Premium CSS - YoCoach Wellness Aesthetic
   ========================================================================= */

/* Variables */
:root {
    --bg-body: #f7f9fa;       /* Very light grey clean background */
    --bg-panel: #ffffff;      /* Pure white cards */
    --border-glass: #e9ecef;  /* Subtle light borders */
    
    --primary: #047857;       /* Deep clinical teal/green */
    --primary-hover: #065f46; /* Darker teal for interaction */
    --secondary: #1d2a3a;     /* Deep bold text color for readability */
    
    --text-primary: #1a1a2e;  /* Much darker primary text */
    --text-secondary: #4a5568; /* Darker grey text for better reading */
    
    --status-online: #047857; /* Accessible High-Contrast Green */
    --status-away: #f39c12;   /* Accessible orange */
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 168, 150, 0.15);
}

/* Reset Engine */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Base Typo */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1rem; font-weight: 700;}
h2 { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--secondary); }
h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul { list-style: none; }

/* Utilities */
.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.interactive { cursor: pointer; }

/* Clean Cards (Replaces Glass Panel) */
.category-card, .vendor-card, .auth-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.interactive:hover, .vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 168, 150, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-glass);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 168, 150, 0.05);
}

.btn-icon {
    padding: 0.6rem;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    background: #f1f3f5;
    color: var(--secondary);
    border: none;
}

.btn-icon:hover {
    background: var(--primary);
    color: white;
}
.btn-icon:disabled { opacity: 0.5; cursor: not-allowed; }

.btn.wide { width: 100%; max-width: 300px; display: flex; margin: 0 auto; }
.view-all-wrapper { margin-top: 3rem; text-align: center; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links li a { font-weight: 600; color: var(--text-primary); font-size: 1.05rem; }
.nav-links li a:hover { color: var(--primary); }

.nav-actions { display: flex; gap: 1rem; align-items: center; }
.nav-greeting { color: var(--secondary); font-weight: 600; margin-right: 1rem; }
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-primary); }

/* Modern Split Hero */
.hero-modern {
    background-color: #d1f4e5; /* Very light mint matching Yo-Coach */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.4) 0%, transparent 50%);
}

.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text-content {
    flex: 1;
    max-width: 580px;
    z-index: 2;
}

.hero-text-content h1 {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text-content p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-btn {
    border: 2px solid #00cd96;
    color: #00cd96;
    background: transparent;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    border-radius: 4px; /* Slightly square like standard professional sites */
    font-size: 1.05rem;
    text-transform: capitalize;
}
.hero-btn:hover {
    background: #00cd96;
    color: white;
}

.hero-image-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.hero-green-block {
    position: absolute;
    width: 440px;
    height: 550px;
    background: linear-gradient(145deg, #00cd96 0%, #00a67d 50%, #007a5e 100%);
    border-radius: 40px;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 205, 150, 0.25), 0 0 100px rgba(0, 205, 150, 0.08);
    overflow: hidden;
}

.hero-main-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 2;
}

.hg-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.4);
}

.card-top-right {
    top: 80px;
    right: 20px;
}

.card-bottom-left {
    bottom: 80px;
    left: -20px;
}

.hg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    position: absolute;
    border: 2px solid white;
}

.hg-stats strong {
    display: block;
    font-size: 1.1rem;
    color: #111827;
    line-height: 1;
    margin-bottom: 3px;
}

.hg-stats span {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.hg-single-avatar {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.float-icon {
    position: absolute;
    color: #558066;
    z-index: 3;
}
.f-leaf-1 { top: 70px; right: 350px; transform: rotate(45deg); font-size: 2rem; opacity: 0.8; }
.f-leaf-2 { bottom: 60px; right: 100px; transform: rotate(-30deg); font-size: 3rem; opacity: 0.3; }
.f-sparkle-1 { bottom: 200px; left: 0px; font-size: 1.5rem; color: #00cd96; opacity: 0.8; }

.search-bar {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    padding-left: 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-glass);
}

.search-bar i { color: var(--primary); margin-right: 0.5rem; }
.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}
.search-bar input::placeholder { color: var(--text-secondary); }
.search-bar .btn { padding: 0.75rem 2rem; }

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}
.trust-indicators i { color: var(--primary); margin-right: 5px; }

/* Categories Grid */
.categories { padding: 6rem 0; background-color: white; }
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-wrapper {
    width: 70px; height: 70px;
    background: rgba(0, 168, 150, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.category-card h3 { color: var(--secondary); }
.category-card p { font-size: 0.95rem; color: var(--text-secondary); margin-top: 0.5rem; line-height: 1.5;}

/* Marketplace Section (Guides) */
.guides { padding: 6rem 0; position: relative; }

/* Filters */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 168, 150, 0.2);
}

/* Vendor Grid (Matched strictly to screenshot exactly) */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .marketplace-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .marketplace-grid { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
    .vendor-card { width: 100%; max-width: 350px; }
}

.vendor-card {
    position: relative;
    height: 380px;
    border-radius: 20px !important; /* All corners rounded in reference */
    overflow: hidden;
    background-color: #f1f5f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.vc-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.5s ease;
    display: block;
    z-index: 1;
}

.vendor-card:hover .vc-bg {
    transform: scale(1.08); /* Smooth zoom effect */
}

/* Practitioner Status Badge */
.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.status-badge i { font-size: 0.5rem; }
.status-badge.available { background: #047857; }
.status-badge.busy { background: #ef4444; }
.status-badge.offline { background: #64748b; }

.rating-badge {
    position: absolute;
    top: 15px;
    right: 0;
    background: white;
    padding: 0.25rem 0.6rem 0.25rem 0.8rem;
    border-radius: 20px 0 0 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #111827;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating-badge i { color: #f59e0b; font-size: 0.7rem; } /* Screenshot star is small and orange */

.vendor-info-box {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: white;
    border-radius: 14px;
    padding: 14px 8px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible; /* Safely allow expanding buttons if they slightly exceed constraints */
}

.vib-content {
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.vendor-channels {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 5;
}

.vendor-info-box:hover .vib-content {
    opacity: 0.8;
}

.vendor-info-box h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--font-heading);
}

.vendor-info-box span {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

.explore-wrapper {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.explore-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
    border-bottom: 2px solid #333333;
    padding-bottom: 3px;
    font-family: var(--font-heading);
}

.explore-icon-circle {
    width: 32px;
    height: 32px;
    background-color: #3b3b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.explore-icon-circle i {
    color: white;
    font-size: 0.9rem;
}
.explore-link:hover + .explore-icon-circle {
    background-color: var(--primary);
}

/* Banner CTA */
.banner-cta { padding: 0 0 6rem 0; }
.container-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4rem;
    background: rgba(0, 168, 150, 0.05);
    border-radius: var(--radius);
    border-left: 6px solid var(--primary);
}
.cta-content { max-width: 60%; }
.cta-content h2 { margin: 0 0 0.5rem 0; font-size: 2rem; color: var(--secondary);}
.cta-content p { color: var(--text-secondary); margin: 0; font-size: 1.1rem;}

/* Footer */
footer {
    background: white;
    padding: 4rem 0 0 0;
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 1rem 0;
    max-width: 300px;
}

.social-links { display: flex; gap: 1rem; }
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: #f1f3f5;
    border-radius: 50%;
    color: var(--secondary);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }

/* Practitioner List Cards (Yo-Coach exact layout) */
.practitioner-list-card {
    display: flex;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.plc-image {
    flex: 0 0 240px;
    padding: 1.5rem;
}

.plc-image img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    border-radius: 16px;
}

.plc-details {
    flex: 1;
    display: flex;
    padding: 1.5rem 1.5rem 1.5rem 0;
    gap: 3rem;
}

.plc-info {
    flex: 1.5;
}

.plc-header { margin-bottom: 0.5rem; display: flex; align-items: center; }
.plc-rating { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 0.85rem; margin-left: 0.5rem; color: #111827; }
.plc-stats { font-size: 0.9rem; margin-bottom: 1rem; color: #4b5563; }
.plc-price { font-size: 1.25rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.plc-meta { font-size: 0.85rem; color: #4b5563; }
.plc-meta strong { color: #111827; }

.plc-about {
    flex: 1;
}

.plc-actions {
    flex: 0 0 220px;
    padding: 1.5rem;
    border-left: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.plc-action-icons {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.plc-icon-btn {
    width: 32px; height: 32px;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: #fdfdfd;
    color: #4b5563;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}
.plc-icon-btn:hover { background: #f3f4f6; }

.plc-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
}

.plc-btn-green { background: #047857; border: 1px solid #047857; color: white; }
.plc-btn-green:hover { background: #047857; }

.plc-btn-outline-green { background: white; border: 1px solid #047857; color: #047857; }
.plc-btn-outline-green:hover { background: #f0fdf9; }

.plc-btn-black { background: #111827; border: 1px solid #111827; color: white; }
.plc-btn-black:hover { background: #000000; }

.plc-avail-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00cd96;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 0.5rem;
}

.fw-bold { font-weight: 700; }
.text-dark { color: #111827; }
.pb-6 { padding-bottom: 4rem; }

/* Practitioner Profile Page */
.profile-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.profile-main {
    flex: 1;
}

.profile-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.profile-hero-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-hero-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.profile-hero-info {
    flex: 1;
}

.phi-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
    flex-wrap: wrap;
    gap: 10px;
}

.phi-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0.5rem 0 0;
}

.phi-rating {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    margin-left: 1rem;
}

.phi-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.action-btn-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: medium none;
    background: #f3f4f6;
    color: #4b5563;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}

.action-btn-circle:hover { background: #e5e7eb; }

.phi-meta-row {
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.phi-dot {
    color: #d1d5db;
    margin: 0 0.25rem;
}

.phi-price-big {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.phi-desc-block {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.phi-desc-block strong { display: block; margin-bottom: 0.25rem; font-size: 0.95rem; }
.phi-desc-block p { color: #4b5563; margin: 0; }

.profile-section {
    margin-bottom: 3rem;
}

.profile-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.profile-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.pricing-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.pt-header {
    display: flex;
    background: #00cd96;
    color: white;
    font-weight: 600;
    padding: 1rem;
}

.pt-row {
    display: flex;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    font-size: 0.9rem;
}

.pt-col-1 { flex: 1; display:flex; align-items:center; }
.pt-col-2 { width: 150px; text-align: center; display:flex; align-items:center; justify-content:center; }

.pt-select {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}
.pt-select option { color: #111827; }

.accordion {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.accordion-content {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}
.accordion-content ul { padding-left: 1.5rem; list-style-type: disc; margin: 0; }
.accordion-content li { margin-bottom: 0.5rem; }

.sidebar-card {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.sidebar-video {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.video-play-btn {
    align-self: center;
    width: 50px; height: 35px;
    background: #ff0000;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    cursor: pointer;
}

.video-bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
    padding: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
    transition: 0.2s;
}

.btn-bg-green { background: #047857; color: white; }
.btn-bg-green:hover { background: #064e3b; }

.btn-out-green { background: white; border: 1px solid #047857; color: #047857; }
.btn-out-green:hover { background: #f0fdf9; }

.btn-bg-black { background: #111827; color: white; }
.btn-bg-black:hover { background: #000000; }

.trial-text {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Communication Channels */
.channel-btn-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}
.channel-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    color: white;
}
.channel-chat { background-color: #3b82f6; }
.channel-chat:hover { background-color: #2563eb; }
.channel-phone { background-color: #10b981; }
.channel-phone:hover { background-color: #047857; }
.channel-video { background-color: #8b5cf6; }
.channel-video:hover { background-color: #7c3aed; }

/* Communication Channel Hover Buttons */
.channel-btn-wrapper {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
    transition: gap 0.4s ease;
}
.channel-btn-wrapper:hover { gap: 0; }

.channel-test-btn {
    flex: 1;
    padding: 0.75rem 0;
    border: none;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    opacity: 1;
    max-width: 100%;
}
.channel-test-btn i { font-size: 1.1rem; }
.channel-test-btn .hover-text {
    max-width: 0;
    opacity: 0;
    font-size: 0.95rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #ffffff !important;
}
.channel-btn-wrapper:hover .channel-test-btn:not(:hover) {
    flex: 0;
    max-width: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    border: none;
}
.channel-btn-wrapper .channel-test-btn:hover {
    flex: 1;
    width: 100%;
}
.channel-btn-wrapper .channel-test-btn:hover .hover-text {
    max-width: 150px;
    opacity: 1;
    margin-left: 8px;
}

/* Mobile Accordion Styles */
.plc-about-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}
.plc-about-title i { display: none; }
.plc-about-content { display: block; }

/* Responsive tweaks */
@media (max-width: 968px) {
    .nav-container { flex-wrap: wrap; }
    .nav-links, .nav-actions { 
        display: none; 
        width: 100%; 
        flex-direction: column; 
        align-items: center; 
        gap: 1rem; 
        padding: 1rem 0; 
    }
    .nav-links.active, .nav-actions.active { 
        display: flex; 
    }
    .mobile-menu-btn { display: block; }
    
    .hero-split-container { flex-direction: column; text-align: center; }
    .hero-green-block { display: none; }
    .hero-main-img { height: 400px; }
    
    .practitioner-list-card { flex-direction: column; }
    .plc-details { flex-direction: column; gap: 1rem; padding-left: 1.5rem; }
    .plc-image { flex: 0 0 auto; width: 100%; padding: 1rem; }
    .plc-actions { flex: 0 0 auto; width: 100%; border-left: none; border-top: 1px solid #f3f4f6; }

    .plc-about-title { cursor: pointer; border-bottom: 1px solid #f3f4f6; padding-bottom: 0.5rem; margin-bottom: 0.5rem !important; }
    .plc-about-title i { display: inline-block; transition: 0.3s; color: #4b5563; }
    .plc-about-content { display: none; }
    .plc-about.accordion-open .plc-about-content { display: block; margin-top: 1rem; }
    .plc-about.accordion-open .plc-about-title i { transform: rotate(180deg); }

    h1, .hero-text-content h1 { font-size: 2.3rem; }
    .hero p, .hero-text-content p { font-size: 1.1rem; }
    .trust-indicators { flex-direction: column; gap: 0.5rem; }
    .container-cta { flex-direction: column; text-align: center; padding: 2rem; gap: 2rem; }
    .cta-content { max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .hero, .hero-modern { min-height: 70vh; padding-top: 100px; }
    h1, .hero-text-content h1 { font-size: 1.8rem; }
    .hero p, .hero-text-content p { font-size: 0.95rem; margin-bottom: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .search-bar { flex-direction: column; border-radius: var(--radius); gap: 1rem; padding: 1rem;}
    .search-bar input { width: 100%; text-align: center; }
    .search-bar .btn { width: 100%; }
}

/* Practitioner Profile Page */
.profile-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.profile-main {
    flex: 1;
}

.profile-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.profile-hero-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-hero-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.profile-hero-info {
    flex: 1;
}

.phi-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
    flex-wrap: wrap;
    gap: 10px;
}

.phi-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0.5rem 0 0;
}

.phi-rating {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    margin-left: 1rem;
}

.phi-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.action-btn-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    color: #4b5563;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}

.action-btn-circle:hover { background: #e5e7eb; }

.phi-meta-row {
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.phi-dot {
    color: #d1d5db;
    margin: 0 0.25rem;
}

.phi-price-big {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.phi-desc-block {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.phi-desc-block strong { display: block; margin-bottom: 0.25rem; font-size: 0.95rem; }
.phi-desc-block p { color: #4b5563; margin: 0; }

.profile-section {
    margin-bottom: 3rem;
}

.profile-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.profile-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.pricing-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.pt-header {
    display: flex;
    background: #00cd96;
    color: white;
    font-weight: 600;
    padding: 1rem;
}

.pt-row {
    display: flex;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    font-size: 0.9rem;
}

.pt-col-1 { flex: 1; display:flex; align-items:center; }
.pt-col-2 { width: 150px; text-align: center; display:flex; align-items:center; justify-content:center; }

.pt-select {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}
.pt-select option { color: #111827; }

.accordion {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.accordion-content {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}
.accordion-content ul { padding-left: 1.5rem; list-style-type: disc; margin: 0; }
.accordion-content li { margin-bottom: 0.5rem; }

.sidebar-card {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.sidebar-video {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.video-play-btn {
    align-self: center;
    width: 50px; height: 35px;
    background: #ff0000;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    cursor: pointer;
}

.video-bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
    padding: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
    transition: 0.2s;
}

.btn-bg-green { background: #047857; color: white; }
.btn-bg-green:hover { background: #064e3b; }

.btn-out-green { background: white; border: 1px solid #047857; color: #047857; }
.btn-out-green:hover { background: #f0fdf9; }

.btn-bg-black { background: #111827; color: white; }
.btn-bg-black:hover { background: #000000; }

.trial-text {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

@media (max-width: 968px) {
    .profile-layout { flex-direction: column; }
    .profile-sidebar { width: 100%; }
}

/* Assessment Wizard */
.assessment-section {
    padding: 80px 0;
    background-color: #f9fafb;
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
}
.wizard-card {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    padding: 50px 40px;
}
.wizard-header {
    text-align: center;
    margin-bottom: 40px;
}
.step-indicator {
    display: inline-block;
    padding: 6px 14px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 0.2s;
}
.step-indicator:hover {
    background: #dcfce7;
}
.wizard-header h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 12px;
}
.wizard-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.option-card {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}
.option-card:hover {
    border-color: #00cd96;
    background: #f0fdf9;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 205, 150, 0.1);
}
.option-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.option-card:hover i {
    transform: scale(1.1);
}
.option-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}
.quiz-step.hidden {
    display: none;
}
.alignment-loader {
    padding: 40px 0;
}
.spinner-gem {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #00cd96;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.match-card {
    margin: 0 auto !important;
    display: flex !important;
    max-width: 100% !important;
}
@media (max-width: 640px) {
    .options-grid { grid-template-columns: 1fr; }
    .wizard-card { padding: 30px 20px; }
}

/* Status Filter Bar */
.status-filter-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.status-filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.status-filter-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}
.status-filter-btn.active {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.1);
}

/* Premium Badges */
.premium-badges {
    position: absolute;
    top: 55px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
    align-items: flex-start;
}
.premium-badge {
    background: rgba(248, 250, 252, 0.85);
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.premium-badge i {
    color: #64748b;
}

/* Red / Hot */
.premium-badge.hot {
    background: rgba(254, 226, 226, 0.85);
    color: #be123c;
    border-color: rgba(254, 205, 211, 0.8);
}
.premium-badge.hot i { color: #f43f5e; }

/* Gold / Top Rated */
.premium-badge.top-rated {
    background: rgba(254, 243, 199, 0.85);
    color: #b45309;
    border-color: rgba(253, 230, 138, 0.8);
}
.premium-badge.top-rated i { color: #f59e0b; }

/* Teal / Rising Star / Fast Reply */
.premium-badge.rising {
    background: rgba(224, 242, 254, 0.85);
    color: #0369a1;
    border-color: rgba(186, 230, 253, 0.8);
}
.premium-badge.rising i { color: #0ea5e9; }

/* Purple / Staff Pick / Expert */
.premium-badge.staff {
    background: rgba(243, 232, 255, 0.85);
    color: #6d28d9;
    border-color: rgba(233, 213, 255, 0.8);
}
.premium-badge.staff i { color: #8b5cf6; }

/* Green / Promo / Healing */
.premium-badge.promo {
    background: rgba(209, 250, 229, 0.85);
    color: #047857;
    border-color: rgba(167, 243, 208, 0.8);
}
.premium-badge.promo i { color: #10b981; }

/* =========================================
   HOW IT WORKS SECTION 
   ========================================= */
.hiw-section {
    padding: 5rem 0;
    background: #ffffff;
}
.hiw-heading {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 3.5rem;
}
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.hiw-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.hiw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* Image Block & Colorful Blobs */
.hiw-image-block {
    position: relative;
    height: 260px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden; /* To cleanly cut the background blobs */
    border-bottom: 1px solid #f3f4f6;
}
.hiw-blob {
    position: absolute;
    width: 90%;
    height: 80%;
    bottom: -10px;
    z-index: 1;
}
.bg-orange .hiw-blob {
    background: #f1784b; /* Flat exact match to reference */
    border-radius: 70px 100px 30px 40px; 
    left: 20px;
}
.bg-green .hiw-blob {
    background: #11cc79;
    border-radius: 100px 70px 40px 30px; 
    right: 20px;
}
.bg-teal .hiw-blob {
    background: #105955;
    border-radius: 40px 100px 70px 40px;
    left: auto; right: 10px; width: 95%; height: 75%;
}

.hiw-img {
    height: 98%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.25));
}

/* Floating Badges & Mocks */
.hiw-float {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 3;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    padding: 6px 14px;
    display: flex;
    align-items: center;
}
.tag-top-right { right: 20px; top: 30px; }
.tag-top-right i { margin-right: 6px; }

/* Card-Specific Floats */
.mock-testimonial {
    bottom: 25px; left: 15px; padding: 10px; border-radius: 8px; width: 140px; line-height:1.2;
}
.mock-testimonial img { width:24px; height:24px; border-radius:50%; margin-right:8px; }

.search-bubble {
    width: 36px; height: 36px;
    background: #c2410c; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid white; bottom: 80px; left: 145px;
}

.mock-calendar {
    bottom: 25px; left: 15px; background: white; border-radius: 12px; padding: 10px; width: 150px; padding-bottom:15px;
}
.cal-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:4px; margin-top:10px; text-align:center; font-size:0.6rem; color:#4b5563; font-weight:700;}
.cal-grid .active { background: #047857; color: white; border-radius:4px; padding: 2px 0;}

.btn-bubble {
    width: 44px; height: 44px;
    background: #fdfdfd; color: #11cc79; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position:absolute; bottom:50px; right:40px; font-size:1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); z-index:3;
}

.mock-video {
    bottom: 25px; left: 15px; background: white; border-radius: 8px; padding: 8px; width: 110px;
}
.video-grid { display:grid; grid-template-columns: 1fr 1fr; gap:4px; margin-top:6px; }
.video-grid img { width:100%; height:40px; object-fit:cover; border-radius:4px; }
.video-bubble {
    width: 48px; height: 48px;
    background: #ffffff; color: #0ea5e9; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid white; bottom: 60px; right: 25px; font-size:1.5rem;
    box-shadow: 0 0 20px rgba(255,255,255,0.8), 0 5px 15px rgba(14, 165, 233, 0.3);
}

/* Card Content Area */
.hiw-content {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hiw-step {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}
.hiw-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 12px;
}
.hiw-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1; 
}
.hiw-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hiw-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-radius: 6px; 
}
.hiw-btn-1 {
    background: #047857; color: white; border: 1px solid #047857;
}
.hiw-btn-2 {
    background: transparent; color: #047857; border: 1px solid #047857;
}

/* =========================================
   TESTIMONIAL CAROUSEL 
   ========================================= */
.testimonial-section {
    background: #f8fafc;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.testi-avatars {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}
.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.testi-avatar:hover {
    opacity: 0.8;
}
.testi-avatar.active {
    opacity: 1;
    transform: scale(1.2);
    border-color: #047857;
    z-index: 10;
    box-shadow: 0 8px 15px rgba(5, 150, 105, 0.2);
}

.testi-name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.testi-quote-mark {
    position: absolute;
    font-size: 8rem;
    color: #e2e8f0;
    font-family: Georgia, serif; 
    line-height: 0;
    z-index: 0;
    user-select: none;
}
.testi-quote-mark.left {
    top: 50px;
    left: -40px;
}
.testi-quote-mark.right {
    bottom: -10px;
    right: -40px;
    transform: rotate(180deg);
}

.testi-text {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    min-height: 80px;
}

.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.2s ease;
    z-index: 5;
    font-size: 1.1rem;
}
.testi-nav:hover {
    color: #047857;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-color: #047857;
}
.testi-nav.nav-prev { left: -80px; }
.testi-nav.nav-next { right: -80px; }

@media(max-width: 1024px) {
    .testi-nav.nav-prev { left: -40px; }
    .testi-nav.nav-next { right: -40px; }
}
@media(max-width: 768px) {
    .testi-nav { display: none; }
    .testi-quote-mark { font-size: 5rem; }
    .testi-quote-mark.left { left: -10px; }
    .testi-quote-mark.right { right: -10px; }
    .testi-text { font-size: 1rem; }
}

/* =========================================
   GDPR COOKIE BANNER & FOOTER LOGOS
   ========================================= */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent-bar.show {
    transform: translateY(0);
}
.payment-methods i {
    transition: color 0.3s ease;
}
.payment-methods i:hover {
    color: #047857; /* Brand green */
    cursor: pointer;
}
