/**
 * WETCUPPING - Main Stylesheet
 * Design: Professional Navy & Cream Theme
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
}

.material-icons.lg { font-size: 40px; }
.material-icons.sm { font-size: 18px; }
.material-icons.xl { font-size: 48px; }

:root {
    /* Navy & Cream Palette */
    --navy-dark: #1a2744;
    --navy: #2a3a5c;
    --navy-light: #3d4f6f;
    --cream: #d4b896;
    --cream-light: #e8d5c0;
    --cream-dark: #c4a57a;
    --beige: #f5efe8;
    
    /* Backgrounds */
    --white: #FFFFFF;
    --light-bg: #f8f6f3;
    --card-bg: #FFFFFF;
    --section-alt: #faf9f7;
    
    /* Text */
    --text-dark: #1a2744;
    --text-body: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    
    /* Accents */
    --accent-gold: #c9a86c;
    --accent-warm: #b8956e;
    
    /* Borders & Shadows */
    --border-light: #e2e8f0;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 50px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    
    /* Status */
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
    --info: #4299e1;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--cream);
    color: var(--navy-dark);
    border-color: var(--cream);
}

.btn-primary:hover {
    background: var(--cream-dark);
    border-color: var(--cream-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #4CAF50;
    color: var(--white);
    border-color: #4CAF50;
}

.btn-secondary:hover {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy-dark);
    border-color: var(--navy-dark);
}

.btn-outline-dark:hover {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-navy {
    background: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
}

.btn-navy:hover {
    background: var(--navy);
    border-color: var(--navy);
}

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

.btn-danger:hover {
    background: #e53e3e;
    border-color: #e53e3e;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

/* =====================================================
   TOP NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy-dark);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.navbar-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.navbar-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.navbar-nav a:hover {
    color: var(--white);
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar-cta {
    background: var(--cream);
    color: var(--navy-dark);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-cta:hover {
    background: var(--cream-light);
    transform: translateY(-2px);
}

.navbar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--navy-dark) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 184, 150, 0.2);
    color: var(--cream);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--cream);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* =====================================================
   SEARCH BAR SECTION
   ===================================================== */
.search-section {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-bar-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-right: 1px solid var(--border-light);
}

.search-field:last-of-type {
    border-right: none;
}

.search-field i {
    color: var(--cream-dark);
    font-size: 22px;
}

.search-field input {
    flex: 1;
    border: none;
    font-size: 15px;
    color: var(--text-dark);
    font-family: 'Open Sans', sans-serif;
    background: transparent;
}

.search-field input::placeholder {
    color: var(--text-muted);
}

.search-field input:focus {
    outline: none;
}

.search-bar-btn {
    background: var(--navy-dark);
    color: var(--white);
    padding: 16px 35px;
    border: none;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-bar-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.section {
    padding: 80px 40px;
}

.section-alt {
    background: var(--section-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--cream);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--beige);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    flex-shrink: 0;
}

.service-info h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.service-count {
    font-size: 14px;
    color: var(--cream-dark);
    font-weight: 600;
}

/* =====================================================
   PACKAGES SECTION
   ===================================================== */
.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.package-card {
    position: relative;
    height: 350px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.package-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.package-card:hover .package-card-bg {
    transform: scale(1.05);
}

.package-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 39, 68, 0.9) 100%);
}

.package-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
}

.package-card h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 8px;
}

.package-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.package-card .btn {
    padding: 12px 28px;
}

/* Navigation Arrows */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    color: var(--navy-dark);
}

.carousel-arrow:hover {
    background: var(--navy-dark);
    color: var(--white);
    border-color: var(--navy-dark);
}

/* =====================================================
   ABOUT / CTA SECTION
   ===================================================== */
.about-section {
    background: var(--navy-dark);
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding: 40px;
}

.about-badge {
    display: inline-block;
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    position: relative;
    height: 450px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
}

.about-image-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    background: var(--navy-dark);
    padding: 60px 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--navy-dark);
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--cream);
    color: var(--navy-dark);
}

.footer-column h4 {
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-column ul a:hover {
    color: var(--cream);
}

/* Contact icons styling */
.footer-column ul li .material-icons.sm {
    font-size: 18px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    color: rgba(255,255,255,0.6);
}

.footer-column ul li a .material-icons.sm {
    vertical-align: middle;
}

.footer-column ul li span {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* =====================================================
   AUTH PAGES
   ===================================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    padding: 100px 20px 40px;
}

.auth-container {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 26px;
    margin: 0 auto 15px;
}

.auth-logo h2 {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--navy-dark);
}

.auth-logo p {
    color: var(--text-muted);
    margin-top: 8px;
    font-size: 14px;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(42, 58, 92, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

.btn-full {
    width: 100%;
}

/* Google Sign-In Button Styling */
.g_id_signin {
    display: flex;
    justify-content: center;
    width: 100%;
}

#g_id_onload {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Form divider */
.form-divider {
    text-align: center;
    margin: 20px 0;
    color: rgba(26,39,68,0.5);
    font-size: 13px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 14px;
}

.form-footer a {
    color: var(--navy);
    font-weight: 600;
}

.form-footer a:hover {
    color: var(--cream-dark);
}

/* =====================================================
   ALERTS
   ===================================================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #f0fff4;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.alert-error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alert-warning {
    background: #fffaf0;
    color: #c05621;
    border: 1px solid #fbd38d;
}

.alert-info {
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #90cdf4;
}

/* =====================================================
   PAGE WRAPPER & CONTAINER (General Pages)
   ===================================================== */
.page-wrapper {
    padding-top: 70px;
    min-height: 100vh;
    background: var(--light-bg);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 32px;
    color: var(--navy-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* =====================================================
   DASHBOARD WRAPPER & CONTAINER
   ===================================================== */
.dashboard-wrapper {
    padding-top: 70px;
    min-height: 100vh;
    background: var(--light-bg);
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-title {
    font-size: 32px;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.dashboard-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card.stat-warning {
    border-left-color: var(--warning);
}

.stat-card.stat-success {
    border-left-color: var(--success);
}

/* Dashboard Card Actions */
.dashboard-card p {
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dashboard-card .btn {
    margin-top: 10px;
}

.dashboard-card .badge {
    display: inline-block;
    margin-bottom: 15px;
}

/* =====================================================
   DASHBOARD LAYOUT
   ===================================================== */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 70px;
}

.sidebar {
    width: 260px;
    background: var(--white);
    border-right: 1px solid var(--border-light);
    padding: 30px 0;
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background: var(--beige);
    color: var(--navy-dark);
}

.sidebar-nav a.active {
    background: var(--beige);
    color: var(--navy-dark);
    border-left-color: var(--cream-dark);
}

.sidebar-nav a i {
    color: var(--text-muted);
    font-size: 20px;
}

.sidebar-nav a.active i,
.sidebar-nav a:hover i {
    color: var(--cream-dark);
}

.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    background: var(--light-bg);
}

/* =====================================================
   DASHBOARD CARDS
   ===================================================== */
.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 28px;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--cream-dark);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    background: var(--beige);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dark);
}

.stat-card-icon i {
    font-size: 28px;
}

.stat-card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.stat-card-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.dashboard-card h2 {
    font-size: 20px;
    color: var(--navy-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card h2 i {
    color: var(--cream-dark);
}

/* =====================================================
   TABLES
   ===================================================== */
.table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: var(--navy-dark);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px;
    text-align: left;
}

.data-table th:first-child {
    border-radius: var(--border-radius) 0 0 0;
}

.data-table th:last-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-body);
}

.data-table tr:hover td {
    background: var(--beige);
}

/* =====================================================
   BADGES
   ===================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #e6fffa;
    color: #234e52;
}

.badge-warning {
    background: #fefcbf;
    color: #744210;
}

.badge-danger {
    background: #fff5f5;
    color: #c53030;
}

.badge-info {
    background: #ebf8ff;
    color: #2b6cb0;
}

.badge-navy {
    background: var(--navy-dark);
    color: var(--white);
}

.badge-cream {
    background: var(--cream);
    color: var(--navy-dark);
}

/* =====================================================
   PRACTITIONER CARDS
   ===================================================== */
.practitioner-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.practitioner-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--cream);
    transform: translateY(-4px);
}

.practitioner-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.practitioner-card h3 {
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.practitioner-specialization {
    display: inline-block;
    background: var(--beige);
    color: var(--cream-dark);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.practitioner-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* =====================================================
   PROFILE PAGE
   ===================================================== */
.profile-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.profile-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid rgba(255,255,255,0.2);
}

.profile-header h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.profile-header p {
    color: rgba(255,255,255,0.7);
}

.profile-body {
    padding: 30px;
}

.profile-info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.profile-info-row:last-child {
    border-bottom: none;
}

.profile-info-row i {
    color: var(--cream-dark);
    font-size: 22px;
}

.profile-info-row span {
    color: var(--text-body);
}

/* =====================================================
   PRACTITIONERS SEARCH PAGE
   ===================================================== */
.practitioners-page {
    min-height: calc(100vh - 70px);
    padding: 100px 40px 60px;
    background: var(--light-bg);
}

.practitioners-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.practitioners-header h1 {
    font-size: 36px;
    color: var(--navy-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.practitioners-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-results-info {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.clear-search {
    color: var(--cream-dark);
    margin-left: 10px;
}

.practitioners-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

/* States Sidebar */
.states-sidebar {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.states-sidebar h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-dark);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.states-list {
    list-style: none;
    max-height: 500px;
    overflow-y: auto;
}

.states-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    color: var(--text-body);
    font-size: 14px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.states-list li a:hover {
    background: var(--beige);
    color: var(--navy-dark);
}

.states-list li a.active {
    background: var(--navy-dark);
    color: var(--white);
}

.states-list .count {
    background: var(--beige);
    padding: 3px 10px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--cream-dark);
}

.states-list li a.active .count {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* Practitioners Grid */
.practitioners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.practitioner-card-search {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.practitioner-card-search:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--cream);
    transform: translateY(-4px);
}

.practitioner-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.practitioner-avatar-lg {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.practitioner-info h3 {
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.practitioner-business {
    color: var(--cream-dark);
    font-size: 14px;
    font-weight: 500;
}

.practitioner-details {
    background: var(--beige);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-body);
}

.detail-row i {
    color: var(--cream-dark);
    font-size: 18px;
    width: 20px;
}

.detail-row.rate {
    color: var(--navy-dark);
    font-weight: 600;
}

.practitioner-bio {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.practitioner-card-actions {
    display: flex;
    gap: 12px;
}

.practitioner-card-actions .btn {
    flex: 1;
    padding: 12px;
    font-size: 12px;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
}

.no-results i {
    font-size: 72px;
    color: var(--border-light);
    margin-bottom: 20px;
}

.no-results h3 {
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* =====================================================
   SEARCH BOX (Practitioners Page)
   ===================================================== */
.search-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.search-form {
    width: 100%;
}

.search-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-row .form-control {
    flex: 1;
    min-width: 180px;
}

.search-row .btn {
    padding: 14px 30px;
    white-space: nowrap;
}

/* =====================================================
   PRACTITIONER INFO (Search Cards)
   ===================================================== */
.practitioner-info {
    flex: 1;
}

.practitioner-info h3 {
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.practitioner-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.practitioner-info p i {
    color: var(--cream-dark);
    margin-right: 5px;
}

.practitioner-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.practitioner-location i {
    color: var(--cream-dark);
}

.practitioner-experience {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.practitioner-rate {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-top: 10px;
}

.practitioner-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* =====================================================
   BOOKING PAGE
   ===================================================== */
.booking-practitioner-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--cream-dark);
}

.booking-practitioner-card .practitioner-avatar.large {
    width: 90px;
    height: 90px;
    font-size: 36px;
    flex-shrink: 0;
}

.booking-practitioner-card .practitioner-info h2 {
    font-size: 24px;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.booking-practitioner-card .practitioner-info p {
    color: var(--text-muted);
    margin-bottom: 6px;
}

.booking-practitioner-card .rate {
    font-size: 18px;
    font-weight: 600;
    color: var(--cream-dark);
    margin-top: 10px;
}

.booking-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-icon {
    margin-bottom: 20px;
}

.empty-icon i {
    font-size: 72px;
    color: var(--cream);
}

.empty-state h2 {
    font-size: 24px;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   LOGIN PROMPTS
   ===================================================== */
.login-prompt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.register-link {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
}

.register-link a {
    color: var(--cream-dark);
    font-weight: 600;
}

/* =====================================================
   DASHBOARD LISTS
   ===================================================== */
.appointment-list,
.course-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.appointment-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.appointment-list li:last-child {
    border-bottom: none;
}

.appointment-list li strong {
    color: var(--navy-dark);
}

.course-list li {
    padding: 10px 0;
    color: var(--text-body);
    font-size: 14px;
    border-bottom: 1px solid var(--border-light);
}

.course-list li:last-child {
    border-bottom: none;
}

/* =====================================================
   APPOINTMENTS TABLE
   ===================================================== */
.appointments-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.appointments-table-wrapper .data-table {
    margin-bottom: 0;
}

.pending-text {
    color: var(--warning);
    font-size: 13px;
    font-style: italic;
}

.confirmed-text {
    color: var(--success);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================================================
   BUTTON VARIANTS
   ===================================================== */
.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-success {
    background: var(--success);
    color: var(--white);
    border: 2px solid var(--success);
}

.btn-success:hover {
    background: #38a169;
    border-color: #38a169;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* Search Input Wrapper */
.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-full);
    padding: 10px 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-input-wrapper:focus-within {
    border-color: var(--cream-dark);
    box-shadow: 0 0 0 3px rgba(196, 165, 122, 0.2);
}

.search-input-wrapper.large {
    padding: 14px 22px;
}

.search-icon {
    color: var(--cream-dark);
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: var(--navy-dark);
    border: none;
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--navy);
    transform: scale(1.05);
}

/* Practitioner View Page */
.practitioner-view-page {
    min-height: calc(100vh - 70px);
    padding: 100px 40px 60px;
    background: var(--light-bg);
}

.practitioner-profile-header {
    max-width: 1000px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--cream);
}

.practitioner-avatar-xl {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 46px;
    font-weight: 700;
    flex-shrink: 0;
}

.practitioner-header-info h1 {
    font-size: 32px;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.business-name {
    color: var(--cream-dark);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.header-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.practitioner-profile-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-section {
    background: var(--white);
    padding: 28px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.profile-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.profile-section h2 i {
    color: var(--cream-dark);
}

.bio-text {
    line-height: 1.8;
    color: var(--text-body);
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: var(--text-body);
}

.location-details i {
    color: var(--cream-dark);
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card, .booking-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-card h3, .booking-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-row:last-of-type {
    border-bottom: none;
}

.contact-row i {
    color: var(--cream-dark);
}

.contact-row a {
    color: var(--text-body);
}

.contact-row a:hover {
    color: var(--navy-dark);
}

.rate-box {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 20px;
}

.rate-label {
    display: block;
    font-size: 13px;
    opacity: 0.8;
}

.rate-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    margin-top: 5px;
}

.booking-form .form-group {
    margin-bottom: 18px;
}

.booking-form label {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-prompt {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.register-link {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-muted);
}

.register-link a {
    color: var(--navy);
    font-weight: 600;
}

.practitioners-footer {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 14px;
    background: var(--light-bg);
}

/* =====================================================
   LANDING PAGE SECTIONS
   ===================================================== */
.landing-container {
    min-height: 100vh;
    padding-top: 70px;
}

.landing-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,184,150,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(212,184,150,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(212,184,150,0.05)" stroke-width="0.5"/></svg>') center/300px repeat;
    pointer-events: none;
}

.landing-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.landing-logo .logo-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
}

.landing-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
}

.landing-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
}

.landing-hero h1 span {
    color: var(--cream);
}

.landing-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.search-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 20px;
}

.search-hint {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 15px;
}

.landing-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.landing-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 80px 40px;
    background: var(--white);
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 300px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 40px;
    color: var(--cream-dark);
}

.feature h3 {
    font-size: 22px;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.feature p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.landing-links {
    text-align: center;
    padding: 30px;
    background: var(--section-alt);
}

.landing-links a {
    color: var(--navy);
    font-weight: 500;
}

.landing-links a:hover {
    color: var(--cream-dark);
}

.landing-links .separator {
    color: var(--border-light);
    margin: 0 15px;
}

/* =====================================================
   ROLE BADGES
   ===================================================== */
.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-badge.admin,
.role-badge.role-admin {
    background: var(--navy-dark);
    color: var(--white);
}

.role-badge.practitioner,
.role-badge.role-practitioner {
    background: var(--cream);
    color: var(--navy-dark);
}

.role-badge.user,
.role-badge.role-user {
    background: var(--beige);
    color: var(--text-body);
}

/* =====================================================
   PAGE HEADER ENHANCEMENTS
   ===================================================== */
.page-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-top: -20px;
    margin-bottom: 30px;
}

.page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.page-header-row .page-title {
    margin-bottom: 0;
}

/* =====================================================
   FILTER TABS
   ===================================================== */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.filter-tab:hover {
    border-color: var(--cream);
    color: var(--navy-dark);
}

.filter-tab.active {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
}

/* =====================================================
   COURSES GRID
   ===================================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.course-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.course-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--cream);
}

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

.course-badge {
    background: var(--cream);
    color: var(--navy-dark);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-level {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
}

.course-level.level-beginner {
    background: #d1fae5;
    color: #065f46;
}

.course-level.level-intermediate {
    background: #fef3c7;
    color: #92400e;
}

.course-level.level-advanced {
    background: #fee2e2;
    color: #991b1b;
}

.course-title {
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.course-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-meta i {
    color: var(--cream-dark);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.course-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-dark);
    font-family: 'Playfair Display', serif;
}

.free-label {
    color: var(--success);
    font-weight: 700;
    font-size: 14px;
}

/* =====================================================
   CERTIFICATION INFO SECTION
   ===================================================== */
.certification-info {
    background: var(--navy-dark);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    text-align: center;
    color: var(--white);
}

.certification-info h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 40px;
}

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

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

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 184, 150, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    color: var(--cream);
}

.info-card h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
}

/* =====================================================
   COURSE DETAIL PAGE
   ===================================================== */
.course-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.course-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.course-detail-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.course-detail-header h1 {
    font-size: 36px;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.course-instructor {
    font-size: 16px;
    color: var(--text-muted);
}

.course-detail-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.course-detail-main {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.course-detail-main h2 {
    font-size: 22px;
    color: var(--navy-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.course-detail-main h2:first-child {
    margin-top: 0;
}

.course-detail-main p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.course-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.course-topics li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
}

.course-topics li:last-child {
    border-bottom: none;
}

.course-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cream-dark);
    font-weight: bold;
}

.course-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.course-details-grid .detail-item {
    background: var(--beige);
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.course-details-grid .detail-item strong {
    color: var(--navy-dark);
}

.course-detail-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.enroll-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--cream);
    text-align: center;
}

.enroll-price {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 25px;
}

.enroll-card .btn {
    width: 100%;
    margin-bottom: 20px;
}

.enrolled-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d1fae5;
    color: #065f46;
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.enroll-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.enroll-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
}

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

.enroll-features li i {
    color: var(--cream-dark);
}

/* =====================================================
   MY COURSES PAGE
   ===================================================== */
.my-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.my-course-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.my-course-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--cream);
}

.my-course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.my-course-header h3 {
    font-size: 18px;
    color: var(--navy-dark);
    flex: 1;
}

.my-course-progress {
    margin-bottom: 20px;
}

.progress-bar {
    height: 8px;
    background: var(--border-light);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cream), var(--cream-dark));
    border-radius: var(--border-radius-full);
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.my-course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.status-badge {
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-in-progress {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.status-not-started {
    background: var(--beige);
    color: var(--text-muted);
}

.my-course-actions {
    margin-bottom: 15px;
}

.my-course-actions .btn {
    width: 100%;
}

.my-course-enrolled {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .practitioners-content {
        grid-template-columns: 1fr;
    }
    
    .states-sidebar {
        display: none;
    }
    
    .practitioner-profile-content {
        grid-template-columns: 1fr;
    }
    
    .course-detail-content {
        grid-template-columns: 1fr;
    }
    
    .course-detail-sidebar {
        position: static;
    }
    
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .landing-hero h1 {
        font-size: 32px;
    }
    
    .search-bar-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        padding: 15px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .practitioners-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .my-courses-grid {
        grid-template-columns: 1fr;
    }
    
    .search-row {
        flex-direction: column;
    }
    
    .search-row .form-control,
    .search-row .btn {
        width: 100%;
    }
    
    .page-header-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .booking-practitioner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .certification-info {
        padding: 30px 20px;
    }
    
    .dashboard-container,
    .page-container {
        padding: 30px 15px;
    }
    
    .practitioner-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-badges {
        justify-content: center;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .landing-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .landing-hero h1 {
        font-size: 26px;
    }
    
    .landing-logo .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .landing-logo .logo-text {
        font-size: 26px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .auth-container {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .landing-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn,
    .landing-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
