/* Manraj Pratishthan - Design System & Stylesheet */

:root {
    /* Color Palette - New Brand Colors */
    --primary-50: #eef4f8;
    --primary-100: #d4e6f1;
    --primary-200: #9CD5FF;
    --primary-500: #7AAACE;
    --primary-600: #355872;
    --primary-700: #2c4a60;
    --primary-800: #223a4d;
    --primary-900: #1a2e3d;
    
    --cyan-500: #7AAACE;
    --cyan-600: #355872;
    --teal-500: #7AAACE;
    --teal-600: #355872;
    
    --neutral-50: #F7F8F0;
    --neutral-100: #eef0e7;
    --neutral-200: #dde0d5;
    --neutral-300: #c5c9bc;
    --neutral-700: #3d4637;
    --neutral-800: #2a3025;
    --neutral-900: #1a1f16;
    
    --success: #4caf79;
    --danger: #d94f4f;
    --warning: #e8a838;

    --bg-light: #F7F8F0;

    /* Styling Properties */
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(26, 46, 61, 0.06);
    --shadow-md: 0 8px 16px rgba(26, 46, 61, 0.09);
    --shadow-lg: 0 16px 32px rgba(26, 46, 61, 0.14);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout Variables */
    --nav-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--neutral-50);
    color: var(--neutral-900);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

ul {
    list-style: none;
}

/* Typography & Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--neutral-900);
    font-weight: 700;
    line-height: 1.25;
}

.text-center { text-align: center; }
.hidden { display: none !important; }
.accent-text { color: var(--primary-600); }
.lead-text { font-size: 1.15rem; color: var(--neutral-700); margin-bottom: 1rem; line-height: 1.7; }
.body-text { color: var(--neutral-700); margin-bottom: 1.5rem; font-size: 1.02rem; line-height: 1.75; }
.required { color: var(--danger); }

/* Buttons & Inputs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary-600);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--primary-600);
    background-color: var(--primary-50);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--neutral-900);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-700);
    font-size: 0.95rem;
}

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

.admin-login-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--primary-200);
    color: var(--primary-600);
}

.admin-login-btn:hover {
    background-color: var(--primary-50);
    border-color: var(--primary-600);
}

.nav-toggle {
    display: none;
    color: var(--neutral-900);
    cursor: pointer;
}

/* Page Transitions */
.page-view {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.page-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transform: none;
}

/* PUBLIC SITE STYLING */

/* Hero Section */
.hero-section {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    background: radial-gradient(circle at 10% 20%, rgba(239, 246, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 90%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-100);
    color: var(--primary-900);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.badge-icon {
    width: 14px;
    height: 14px;
    fill: var(--primary-500);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--cyan-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--neutral-700);
    margin-bottom: 35px;
    max-width: 550px;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float 4s ease-in-out infinite;
}

.stat-card-1 {
    bottom: 30px;
    left: -60px;
}

.stat-card-2 {
    top: 40px;
    right: -50px;
    animation-delay: 2s;
}

.floating-card .card-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-600);
    background-color: var(--primary-50);
    padding: 6px;
    border-radius: var(--radius-sm);
}

.floating-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--neutral-900);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats Section */
.stats-section {
    background-color: var(--neutral-50);
    padding: 50px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
}

.stats-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--neutral-200);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-600);
}

.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan-500);
}

.stat-label {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral-700);
    padding: 0 10px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: var(--neutral-50);
}

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

.section-title {
    font-size: 2.25rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.feature-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feat-icon {
    color: var(--primary-600);
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--neutral-700);
    font-size: 0.95rem;
}

.story-graphics {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-decor {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
}

.decor-circle {
    position: absolute;
    border-radius: var(--radius-full);
}

.circle-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(var(--primary-100), transparent);
    top: 10px;
    left: 20px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(var(--primary-200), transparent);
    bottom: 20px;
    right: 10px;
}

.story-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.story-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.header-icon {
    color: var(--cyan-600);
    width: 28px;
    height: 28px;
}

.story-card p {
    font-style: italic;
    color: var(--neutral-700);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.story-card .author {
    font-weight: 700;
    color: var(--primary-900);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-desc {
    color: var(--neutral-700);
    font-size: 1.05rem;
    margin-top: 16px;
}

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

.service-card {
    padding: 40px;
    background-color: var(--neutral-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .icon-box {
    background-color: var(--primary-600);
    color: #ffffff;
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--neutral-700);
    font-size: 0.95rem;
}

/* Camps Section & Map Selector */
.camps-section {
    padding: 100px 0;
    background-color: var(--neutral-50);
}

.camp-selector-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 50px;
}

.camp-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-300);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-700);
    background-color: #ffffff;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-600);
    color: #ffffff;
    border-color: var(--primary-600);
}

.camps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar for Camps List */
.camps-grid::-webkit-scrollbar {
    width: 6px;
}
.camps-grid::-webkit-scrollbar-track {
    background: var(--neutral-100);
    border-radius: var(--radius-full);
}
.camps-grid::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: var(--radius-full);
}

.camp-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-normal);
}

.camp-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.camp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.camp-loc-badge {
    background-color: var(--primary-50);
    color: var(--primary-700);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.camp-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 6px;
}

.camp-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--neutral-700);
    border-top: 1px solid var(--neutral-100);
    border-bottom: 1px solid var(--neutral-100);
    padding: 12px 0;
}

.camp-details-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.camp-details-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-500);
}

.camp-services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.camp-tag {
    background-color: var(--neutral-100);
    color: var(--neutral-700);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* Map Card */
.map-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.map-header {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.map-icon {
    color: var(--primary-600);
}

.map-instructions {
    align-self: flex-start;
    font-size: 0.85rem;
    color: var(--neutral-700);
    margin-bottom: 20px;
}

.mumbai-map-svg {
    width: 100%;
    max-width: 320px;
    height: 420px;
    background-color: var(--primary-50);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.mumbai-svg {
    width: 100%;
    height: 100%;
}

.map-land {
    fill: #ffffff;
    stroke: var(--neutral-200);
    stroke-width: 2.5px;
}

.map-water {
    fill: #e0f2fe;
}

.map-pin-group {
    cursor: pointer;
}

.pin-core {
    fill: var(--primary-600);
    transition: var(--transition-fast);
}

.pin-pulse {
    fill: var(--primary-200);
    opacity: 0.6;
    animation: pinPulse 2s infinite;
    transform-origin: center;
}

.map-pin-group:hover .pin-core {
    fill: var(--cyan-600);
    r: 8px;
}

.pin-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    fill: var(--neutral-900);
    pointer-events: none;
}

@keyframes pinPulse {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.map-detail-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1.5px solid var(--primary-200);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.map-detail-card h4 {
    font-size: 1rem;
    color: var(--primary-900);
}
.map-detail-card p {
    font-size: 0.8rem;
    color: var(--neutral-700);
}

/* Registration Section & Form Cards */
.register-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.register-card {
    background-color: var(--neutral-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 850px;
    margin: 50px auto 0 auto;
}

.form-toggle-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--neutral-200);
}

.form-toggle-btn {
    padding: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neutral-700);
    background-color: var(--neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-toggle-btn.active {
    background-color: #ffffff;
    color: var(--primary-600);
    border-bottom: 3px solid var(--primary-600);
}

.form-container-body {
    padding: 40px;
    background-color: #ffffff;
}

.form-content {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.form-content.active {
    display: block;
    opacity: 1;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral-800);
}

.form-group input, .form-group select {
    background-color: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    color: var(--neutral-900);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-500);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--neutral-700);
    background-color: var(--primary-50);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-500);
}

.form-disclaimer svg {
    width: 16px;
    height: 16px;
    color: var(--primary-600);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--neutral-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.rating {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: var(--warning);
    color: var(--warning);
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--neutral-700);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}
.bg-blue { background-color: var(--primary-500); }
.bg-teal { background-color: var(--teal-500); }
.bg-cyan { background-color: var(--cyan-500); }

.user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}
.user-info p {
    font-size: 0.8rem;
    color: var(--neutral-700);
    margin: 0;
    font-style: normal;
}

/* Footer styling */
.main-footer {
    background-color: var(--neutral-900);
    color: #ffffff;
    padding: 80px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .brand-logo {
    color: #ffffff;
}

.footer-brand .brand-name {
    color: #ffffff;
}

.footer-tagline {
    color: var(--neutral-300);
    font-size: 0.9rem;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.footer-links a {
    color: var(--neutral-300);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-200);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--neutral-300);
    font-size: 0.9rem;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-200);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 20px 24px 0 24px;
    border-top: 1px solid var(--neutral-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.footer-meta a {
    text-decoration: underline;
}

/* ADMIN LOGIN PAGE */
.login-page {
    background-color: var(--neutral-100);
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-900) 0%, #0c4a6e 100%);
    position: relative;
    overflow: hidden;
}

.login-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: slideUp 0.4s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header .brand-logo {
    justify-content: center;
    margin-bottom: 16px;
}

.login-header h2 {
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.login-header p {
    font-size: 0.85rem;
    color: var(--neutral-700);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid var(--neutral-200);
    background-color: var(--neutral-50);
    border-radius: var(--radius-sm);
    color: var(--neutral-900);
    transition: var(--transition-fast);
}

.input-icon-wrapper input:focus {
    border-color: var(--primary-500);
    background-color: #ffffff;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--neutral-700);
}

.error-banner {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.error-banner svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.login-card form .btn {
    margin-top: 24px;
    margin-bottom: 16px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--neutral-700);
    justify-content: center;
    width: 100%;
}
.back-link:hover {
    color: var(--primary-600);
}

/* ADMIN DASHBOARD STYLING */
#dashboard-page {
    background-color: var(--neutral-100);
    min-height: 100vh;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.dash-sidebar {
    width: 260px;
    background-color: var(--neutral-900);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    border-right: 1px solid var(--neutral-800);
}

.sidebar-header {
    height: var(--nav-height);
    padding: 0 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--neutral-800);
}

.sidebar-header .brand-logo {
    color: #ffffff;
}

.sidebar-header .brand-name {
    color: #ffffff;
    font-size: 1.25rem;
}

.sidebar-menu {
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--neutral-300);
    font-size: 0.95rem;
}

.menu-item svg {
    width: 18px;
    height: 18px;
}

.menu-item:hover, .menu-item.active {
    background-color: var(--primary-600);
    color: #ffffff;
}

.sidebar-footer {
    padding: 24px 16px;
    border-top: 1px solid var(--neutral-800);
}

.btn-logout {
    border-color: var(--neutral-700);
    color: #ffffff;
}
.btn-logout:hover {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

/* Dashboard Content Area */
.dash-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    background-color: var(--neutral-50);
}

.dash-header {
    height: var(--nav-height);
    background-color: #ffffff;
    border-bottom: 1px solid var(--neutral-200);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.dash-header h1 {
    font-size: 1.5rem;
}

.date-today {
    font-size: 0.8rem;
    color: var(--neutral-700);
}

.admin-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--neutral-100);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-200);
}

.avatar-sm {
    width: 28px;
    height: 28px;
    background-color: var(--primary-600);
    color: #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.admin-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
}

/* Tab Views */
.dash-tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease-out;
}

.dash-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Stats */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.dash-stat-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--neutral-200);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.card-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-soft-blue { background-color: var(--primary-50); }
.bg-soft-teal { background-color: rgba(20, 184, 166, 0.1); }
.bg-soft-cyan { background-color: rgba(6, 182, 212, 0.1); }

.text-blue { color: var(--primary-600); }
.text-teal { color: var(--teal-600); }
.text-cyan { color: var(--cyan-600); }

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--neutral-700);
    font-weight: 500;
}

/* Grid Layouts */
.dash-grid-2 {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
}

#dash-tab-camps-mgr .dash-grid-2 {
    grid-template-columns: 0.9fr 1.1fr;
}

/* Tables & Cards */
.table-card, .form-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.full-width-card {
    width: 100%;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header-flex h3, .form-card h3, .table-card h3 {
    font-size: 1.15rem;
}

.search-filter-wrapper {
    max-width: 300px;
    width: 100%;
}

.dash-search-input {
    width: 100%;
    padding: 8px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    background-color: var(--neutral-50);
    font-size: 0.85rem;
}

.dash-search-input:focus {
    border-color: var(--primary-500);
    background-color: #ffffff;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.dash-table th, .dash-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--neutral-200);
    font-size: 0.85rem;
}

.dash-table th {
    background-color: var(--neutral-50);
    font-weight: 700;
    color: var(--neutral-800);
}

.dash-table tbody tr:hover {
    background-color: var(--primary-50)/20;
}

.badge-status {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-status.pending {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}
.badge-status.approved {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
}
.badge-status.rejected {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* Actions in tables */
.btn-action {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-action.approve {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}
.btn-action.approve:hover {
    background-color: var(--success);
    color: #ffffff;
}

.btn-action.reject {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}
.btn-action.reject:hover {
    background-color: var(--danger);
    color: #ffffff;
}

/* Dashboard Forms */
.form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-card label {
    font-size: 0.8rem;
    font-weight: 700;
}

.form-card input, .form-card select {
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.form-card input:focus, .form-card select:focus {
    border-color: var(--primary-500);
    background-color: #ffffff;
}

/* Toast System */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--success);
    z-index: 2000;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    width: 20px;
    height: 20px;
}

.success-icon { color: var(--success); }
.error-icon { color: var(--danger); }

#toast-message {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neutral-900);
}

.toast.toast-error {
    border-left-color: var(--danger);
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-item {
        border-right: none;
        padding: 10px 0;
    }
    .stat-item:nth-child(even) {
        border-left: 1px solid var(--neutral-200);
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .camp-selector-layout {
        grid-template-columns: 1fr;
    }
    .map-wrapper {
        order: -1;
    }
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .dash-grid-2 {
        grid-template-columns: 1fr;
    }
    #dash-tab-camps-mgr .dash-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    .navbar {
        height: 70px;
    }
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: 1.5px solid var(--neutral-200);
        box-shadow: var(--shadow-md);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 0;
        border-bottom: 1px solid var(--neutral-100);
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .admin-login-btn {
        margin-top: 10px;
        width: 80%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item:nth-child(even) {
        border-left: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-toggle-headers {
        grid-template-columns: 1fr;
    }
    .form-toggle-btn {
        padding: 15px;
        font-size: 0.95rem;
    }
    .form-container-body {
        padding: 24px 16px;
    }
    .dashboard-container {
        flex-direction: column;
    }
    .dash-sidebar {
        width: 100%;
        height: auto;
    }
    .sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 12px;
    }
    .menu-item {
        white-space: nowrap;
    }
    .dash-main {
        height: auto;
        overflow-y: visible;
    }
    .dash-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* New Modules Extensions */
.span-2 {
    grid-column: span 2;
}

.readonly-input {
    background-color: var(--neutral-100) !important;
    color: var(--neutral-700) !important;
    cursor: not-allowed;
    border-color: var(--neutral-200) !important;
    font-weight: 600;
}

.lang-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--neutral-100);
}

.lang-toggle-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neutral-700);
}

.lang-toggle-pill {
    display: inline-flex;
    background-color: var(--neutral-100);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-200);
}

.lang-pill {
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    color: var(--neutral-700);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-pill.active {
    background-color: var(--primary-600);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* Adjust form headers column layout for 3 tabs instead of 2 */
.form-toggle-headers {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
    .form-toggle-headers {
        grid-template-columns: 1fr !important;
    }
    .span-2 {
        grid-column: span 1;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    .modal-container {
        max-width: 90% !important;
        padding: 20px !important;
    }
}

/* Contact Us Section styling */
.contact-section {
    padding: 80px 0;
    background-color: var(--neutral-50);
    border-top: 1px solid var(--neutral-200);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--neutral-100);
    padding-bottom: 12px;
}

.contact-card-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-600);
}

.contact-card-header h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.contact-detail-text {
    font-size: 0.95rem;
    color: var(--neutral-700);
}

.contact-mail-link {
    color: var(--primary-600);
    text-decoration: underline;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--neutral-700);
    border-bottom: 1px dashed var(--neutral-100);
    padding-bottom: 6px;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: var(--neutral-800);
}

/* Modal dialog layout */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-backdrop:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    transform: translateY(-20px);
    transition: transform var(--transition-normal);
}

.modal-backdrop:not(.hidden) .modal-container {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.3rem;
    color: var(--neutral-900);
}

.modal-close-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--neutral-100);
    color: var(--neutral-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background-color: var(--danger);
    color: #ffffff;
}

/* ==========================================================================
   Leaflet Map & Directions Styling
   ========================================================================== */

.leaflet-map-frame {
    width: 100%;
    height: 420px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

#map-container {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Custom Google-maps styled directions overlay button */
.map-get-directions-btn {
    position: absolute;
    top: 15px;
    left: 60px;
    z-index: 1000;
    background-color: #4285f4; /* Google Maps blue */
    color: #ffffff !important;
    padding: 11px 18px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.map-get-directions-btn:hover {
    background-color: #357ae8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    transform: translateY(-1px);
}

.map-get-directions-btn:active {
    background-color: #2a65c4;
    transform: translateY(0);
}

.map-get-directions-btn i {
    width: 14px;
    height: 14px;
}

/* Custom Map Marker Red Pin styling */
.custom-map-marker {
    position: relative;
}

.marker-pin {
    width: 28px;
    height: 28px;
    border-radius: 50% 50% 50% 0;
    background: #ea4335; /* Google maps Red */
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -14px 0 0 -14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.1);
}

.marker-pin::after {
    content: '';
    width: 12px;
    height: 12px;
    margin: 7px 0 0 7px;
    background: #ffffff;
    position: absolute;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Maa Sheela Clinic Services Showcase
   ========================================================================== */

.section-subtitle-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-100);
    color: var(--primary-800);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

/* Slideshow Container */
.slideshow-wrapper {
    display: flex;
    flex-direction: column;
}

.clinic-slideshow {
    position: relative;
    height: 430px;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    background-color: var(--neutral-900);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    display: block;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.slide.active .slide-img {
    transform: scale(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px 25px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
    color: #ffffff;
    z-index: 5;
    text-align: left;
}

.slide-caption h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.slide-caption p {
    font-size: 0.88rem;
    color: var(--neutral-300);
    line-height: 1.4;
    margin: 0;
}

/* Nav arrows overlays */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    color: var(--neutral-900);
    border: 1px solid var(--neutral-200);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.slide-nav:hover {
    background-color: #ffffff;
    color: var(--primary-600);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slide-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slide-nav i {
    width: 20px;
    height: 20px;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Indicator dots */
.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neutral-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: var(--neutral-400);
}

.dot.active {
    background-color: var(--primary-600);
    width: 24px;
    border-radius: 5px;
}

/* Services Panels Wrapper */
.services-panels-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.service-panel-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-normal);
    position: relative;
}

.service-panel-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: var(--primary-600);
    transition: width 0.25s ease;
}

.service-panel-card:hover {
    border-color: var(--primary-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-panel-card.active {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(90deg, var(--primary-50) 0%, #ffffff 100%);
}

.service-panel-card.active::before {
    width: 5px;
}

.panel-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-panel-card.active .panel-icon {
    transform: scale(1.08);
}

/* Color palettes for different panel categories */
.bg-soft-blue {
    background-color: var(--primary-100);
    color: var(--primary-700);
}
.bg-soft-teal {
    background-color: var(--teal-100);
    color: var(--teal-700);
}
.bg-soft-cyan {
    background-color: var(--cyan-100);
    color: var(--cyan-700);
}
.bg-soft-indigo {
    background-color: var(--indigo-100);
    color: var(--indigo-700);
}

.panel-info {
    flex-grow: 1;
}

.panel-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.panel-header-flex h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0;
    transition: color 0.2s ease;
}

.service-panel-card.active .panel-header-flex h3 {
    color: var(--primary-800);
}

.panel-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.badge-primary {
    background-color: var(--primary-100);
    color: var(--primary-800);
}

.badge-price {
    background-color: var(--teal-100);
    color: var(--teal-800);
}

.badge-discount {
    background-color: var(--cyan-100);
    color: var(--cyan-800);
}

.badge-rehab {
    background-color: var(--indigo-100);
    color: var(--indigo-800);
}

.panel-info p {
    font-size: 0.86rem;
    color: var(--neutral-700);
    line-height: 1.5;
    margin: 0;
}

.service-panel-card.active .panel-info p {
    color: var(--neutral-800);
}

/* ==========================================================================
   Responsive Layout Overrides
   ========================================================================== */

@media (max-width: 992px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .clinic-slideshow {
        height: 320px;
    }
    
    .leaflet-map-frame {
        height: 350px;
    }
}

/* Public Stories of Hope Styles */
.stories-list-section {
    padding: 80px 0;
    background-color: var(--neutral-50);
}

.stories-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.story-hope-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.story-hope-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.story-hope-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--neutral-100);
}

.story-hope-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.story-hope-card:hover .story-hope-img {
    transform: scale(1.05);
}

.story-hope-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.story-hope-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--neutral-700);
}

.story-hope-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.story-hope-meta i {
    width: 12px;
    height: 12px;
}

.story-hope-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--neutral-900);
    margin: 0;
}

.story-hope-summary {
    font-size: 0.88rem;
    color: var(--neutral-700);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.story-hope-btn {
    align-self: flex-start;
    margin-top: 8px;
    padding: 8px 16px;
}

/* ========================================
   YouTube Video Gallery Strip
   ======================================== */
.video-gallery-strip {
    position: relative;
    padding: 60px 0 50px 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 50%, var(--primary-600) 100%);
    overflow: hidden;
}

.video-gallery-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(156, 213, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(156, 213, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.video-gallery-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.video-gallery-header .section-subtitle-tag {
    color: rgba(255, 255, 255, 0.85);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-gallery-header .section-title {
    color: #ffffff;
    margin-top: 12px;
    font-size: 2rem;
}

/* Scroll Track */
.video-scroll-track {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 1;
}

.video-scroll-track::-webkit-scrollbar {
    display: none;
}

.video-scroll-inner {
    display: flex;
    gap: 20px;
    padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
    width: max-content;
}

/* Thumbnail Cards */
.video-thumb-card {
    flex-shrink: 0;
    width: 340px;
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.video-thumb-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.video-thumb-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #111;
}

.video-thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.video-thumb-card:hover .video-thumb-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

/* Play Button Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background var(--transition-normal);
}

.video-thumb-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.play-btn-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.play-btn-circle i {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.video-thumb-card:hover .play-btn-circle {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5);
}

/* Scroll Arrows */
.video-scroll-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 8px;
    z-index: 2;
    margin-top: 16px;
}

.scroll-arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.scroll-arrow i {
    width: 20px;
    height: 20px;
}

/* Video Player Modal */
.video-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.video-modal-backdrop.hidden {
    display: none !important;
}

.video-modal-container {
    position: relative;
    width: 90vw;
    max-width: 960px;
    animation: scaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-modal-close i {
    width: 20px;
    height: 20px;
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-thumb-card {
        width: 280px;
    }

    .video-gallery-header .section-title {
        font-size: 1.5rem;
    }

    .play-btn-circle {
        width: 44px;
        height: 44px;
    }

    .play-btn-circle i {
        width: 18px;
        height: 18px;
    }

    .scroll-arrow {
        width: 36px;
        height: 36px;
    }

    .video-modal-container {
        width: 95vw;
    }

    .video-modal-close {
        top: -42px;
        right: 4px;
    }
}

/* Hindi Brand Name in Header */
.brand-name-hindi {
    font-family: 'Noto Sans Devanagari', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-500);
    letter-spacing: 0.02em;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 2px solid var(--primary-200);
    white-space: nowrap;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.brand-logo:hover .brand-name-hindi {
    opacity: 1;
}

/* Phone Input with +91 Prefix */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(122, 170, 206, 0.2);
}

.phone-prefix {
    padding: 10px 12px;
    background-color: var(--neutral-100);
    color: var(--neutral-700);
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid var(--neutral-200);
    white-space: nowrap;
    user-select: none;
}

.phone-input-wrapper input {
    flex: 1;
    border: none !important;
    background: none !important;
    padding: 10px 12px !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Stories of Hope Page Hero */
.page-hero-section {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-900) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(156, 213, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-section .hero-badge {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 16px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 12px auto 0 auto;
    line-height: 1.6;
}

/* Get Directions Dropdown */
.directions-dropdown-wrapper {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 1000;
}

.map-get-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--primary-600);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: background var(--transition-fast), transform var(--transition-fast);
    text-transform: uppercase;
}

.map-get-directions-btn:hover {
    background: var(--primary-700);
    transform: scale(1.03);
}

.map-get-directions-btn i {
    width: 14px;
    height: 14px;
}

.dd-chevron {
    width: 12px !important;
    height: 12px !important;
    transition: transform var(--transition-fast);
}

.directions-dropdown-wrapper.open .dd-chevron {
    transform: rotate(180deg);
}

.directions-dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    padding: 6px 0;
    max-height: 300px;
    overflow-y: auto;
}

.directions-dropdown-wrapper.open .directions-dropdown {
    display: block;
    animation: fadeInUp 0.2s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--neutral-800);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.dd-item:hover {
    background-color: var(--primary-50);
    color: var(--primary-600);
}

.dd-item i {
    width: 14px;
    height: 14px;
    color: var(--primary-500);
    flex-shrink: 0;
}

/* Thank You Modal */
.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 46, 61, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.thank-you-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.thank-you-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--success), #81d4a4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #ffffff;
}

.thank-you-icon i {
    width: 32px;
    height: 32px;
}

.thank-you-card h2 {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.thank-you-card p {
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.thank-you-card .btn {
    min-width: 140px;
}

/* Registration Date Badge in Admin Table */
.reg-date-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background-color: var(--primary-50);
    color: var(--primary-700);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .brand-name-hindi {
        display: none;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }

    .stats-grid-3 {
        grid-template-columns: 1fr;
    }

    .stat-card-1 {
        left: -20px;
    }
    .stat-card-2 {
        right: -10px;
    }
}
