/* Import Google Fonts - Assistant & Rubik for Hebrew */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&family=Rubik:wght@300;400;500;600;700;800&display=swap');

/* CSS VARIABLES - Premium Therapeutic Color Palette */
:root {
    --primary-color: #2C5E53;       /* Calming Deep Sage */
    --primary-light: #EBF2F0;       /* Soothing Soft Light Sage */
    --primary-hover: #1F453D;       /* Darker Sage for Hovers */
    --accent-color: #D69E87;        /* Soft Terracotta */
    --accent-hover: #C58B74;       /* Terracotta Hover */
    --accent-bg: #FCF4F1;          /* Accent tint background */
    --bg-color: #FAF8F5;            /* Off-white Warm Alabaster */
    --bg-card: #FFFFFF;             /* Pure White */
    --text-main: #2D3E3A;           /* Deep Charcoal with Green Tint */
    --text-muted: #6C7E79;          /* Muted Sage-Grey */
    --border-color: #E2ECE9;        /* Soft Light Sage Borders */
    --whatsapp-green: #25D366;      /* Official WhatsApp Green */
    --whatsapp-hover: #20BA5A;
    
    --shadow-sm: 0 4px 12px rgba(44, 94, 83, 0.03);
    --shadow-md: 0 10px 30px rgba(44, 94, 83, 0.06);
    --shadow-lg: 0 20px 50px rgba(44, 94, 83, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Assistant', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    direction: rtl; /* Hebrew Right-To-Left */
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

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

/* COMMON UTILITIES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.accent-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-bg);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 94, 83, 0.2);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--bg-card);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(214, 158, 135, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 16px;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    position: relative;
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* APP HEADER & NAVIGATION */
.app-header {
    background-color: rgba(250, 248, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.3rem;
}

.brand-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
}

.brand-text h1 span {
    color: var(--accent-color);
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -2px;
    letter-spacing: 0.5px;
}

/* NAV LINKS */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* MOBILE NAV TOGGLE */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 100px 0 140px 0;
    background: linear-gradient(135deg, #FAF8F5 0%, #E6EFEF 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(214, 158, 135, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 span {
    color: var(--accent-color);
}

.hero-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
    border-right: 3px solid var(--accent-color);
    padding-right: 16px;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: var(--text-main);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    transform: rotate(-3deg);
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    height: 480px;
    background: linear-gradient(to bottom, #dbe6e4, #b9cbc8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border: 6px solid white;
}

.hero-image i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: auto;
    margin-top: auto;
}

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

.hero-image-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-image-tag i {
    font-size: 1.2rem;
    color: var(--accent-color);
    opacity: 1;
    margin: 0;
}

.hero-image-tag span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-image-tag p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ABOUT SECTION */
.about-section {
    background-color: var(--bg-card);
}

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

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.about-credentials {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-color);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-right: 4px solid var(--primary-color);
}

.credential-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.credential-item span {
    font-size: 0.85rem;
    font-weight: 700;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

.about-gallery-box {
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-gallery-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.about-gallery-box h4 {
    margin-bottom: 8px;
}

.about-gallery-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-gallery-box.accent-box {
    background-color: var(--accent-bg);
}

.about-gallery-box.accent-box i {
    color: var(--accent-color);
}

/* SERVICES SECTION */
.services-section {
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-card.accent-card .service-icon {
    background-color: var(--accent-bg);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(-4px); /* Moves left in RTL */
}

/* THE CLINIC SECTION */
.clinic-section {
    background-color: var(--bg-card);
}

.clinic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.clinic-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.clinic-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-box {
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-box i {
    font-size: 1.3rem;
    color: var(--accent-color);
    background-color: var(--accent-bg);
    padding: 10px;
    border-radius: 50%;
}

.feature-box h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.clinic-contact-card {
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(44, 94, 83, 0.1);
    position: relative;
    overflow: hidden;
}

.clinic-contact-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(44, 94, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.clinic-contact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.clinic-contact-card p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-meta-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* SELF ASSESSMENT SECTION */
.assessment-section {
    background-color: var(--primary-light);
    position: relative;
}

.assessment-container {
    max-width: 800px;
    margin: 0 auto;
}

.assessment-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.progress-container {
    margin-bottom: 40px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: var(--bg-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--accent-color);
    width: 25%;
    transition: width var(--transition-smooth);
}

.assessment-step {
    transition: opacity var(--transition-fast);
}

.assessment-step h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.assessment-step .step-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: 'Assistant', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: right;
}

.option-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.option-btn.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(44, 94, 83, 0.1);
}

.option-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.option-btn.selected .option-bullet {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.option-btn.selected .option-bullet::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.step-actions {
    display: flex;
    justify-content: space-between;
}

.hidden {
    display: none !important;
}

/* ASSESSMENT RESULT SCREEN */
.result-content {
    text-align: center;
}

.result-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: inline-block;
    padding: 20px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.result-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.result-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.recommendations-box {
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    text-align: right;
}

.recommendations-box h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recommendations-box h4 i {
    color: var(--accent-color);
}

.recommendation-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-bg);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    margin-bottom: 12px;
    border-right: 4px solid var(--accent-color);
}

.recommendation-list {
    margin-right: 20px;
}

.recommendation-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* FAQ SECTION */
.faq-section {
    background-color: var(--bg-card);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    user-select: none;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-fast);
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--primary-color);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px 30px;
    max-height: 250px;
}

.faq-toggle-icon {
    font-size: 1.1rem;
    color: var(--accent-color);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

/* CONTACT SECTION */
.contact-section {
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-info-card p, .contact-info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* CONTACT FORM */
.contact-form-wrapper {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    border-radius: var(--radius-sm);
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(44, 94, 83, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-status {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-status.success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-status.error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* ADMIN PANEL TRIGGER & STYLES */
.dashboard-trigger-wrapper {
    margin-top: 40px;
    border-top: 1px dashed var(--border-color);
    padding-top: 30px;
}

.dashboard-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 94, 83, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.dashboard-modal.active {
    opacity: 1;
    pointer-events: all;
}

.dashboard-modal-content {
    background-color: var(--bg-card);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.dashboard-modal.active .dashboard-modal-content {
    transform: translateY(0);
}

.dashboard-header {
    background-color: var(--primary-color);
    color: white;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h3 {
    color: white;
    margin: 0;
}

.close-dashboard {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.dashboard-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

.auth-form {
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
}

.auth-form h4 {
    margin-bottom: 16px;
}

.auth-form .form-group {
    margin-bottom: 24px;
}

.submissions-table-wrapper {
    width: 100%;
}

.submissions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.submission-item {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.submission-item-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.submission-meta-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.submission-meta-left h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.submission-meta-left span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.submission-meta-right {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.submission-phone {
    font-weight: 700;
}

.submission-email {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.submission-message {
    font-size: 0.95rem;
    white-space: pre-line;
    color: var(--text-main);
    background-color: white;
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

/* APP FOOTER */
.app-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px 0;
    text-align: center;
    border-top: 5px solid var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-circle {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-logo h2 {
    color: white;
    margin: 0;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .clinic-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Mobile side-nav toggled via JS */
    }
    
    .main-nav.mobile-nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background-color: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        padding: 30px 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        z-index: 99;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-actions .btn {
        display: none; /* Hide header CTA on mobile */
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-card {
        padding: 30px 20px;
    }
}
