@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #7a1c5e;
    --primary-dark: #5d1447;
    --primary-light: #9d2571;
    --secondary: #f8f2f4;
    --accent: #e1306c;
    --accent-light: #ff6b9d;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(122, 28, 94, 0.9) 0%, rgba(225, 48, 108, 0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-premium: 0 20px 40px rgba(122, 28, 94, 0.3), 0 8px 16px rgba(225, 48, 108, 0.2);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Ubuntu', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* === USER MANAGEMENT & MODAL STYLES === */

/* Header User Avatar */
.user-avatar-header {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-left: 1rem;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-md);
}

.user-avatar-header:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.avatar-initials-header {
    font-size: 16px;
    font-weight: 600;
}

/* Header Join Button */
.join-header-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-left: 1rem;
}

.join-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.join-header-btn i {
    font-size: 16px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

/* Modal Content */
.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    padding: 2rem;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsive for Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .user-avatar-header {
        width: 36px;
        height: 36px;
    }
    
    .avatar-initials-header {
        font-size: 14px;
    }
    
    .join-header-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .join-header-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .user-avatar-header {
        width: 32px;
        height: 32px;
    }
    
    .avatar-initials-header {
        font-size: 12px;
    }
    
    .join-header-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .join-header-btn span {
        display: none;
    }
    
    .join-header-btn i {
        font-size: 16px;
    }
}

/* === NOTIFICATION STYLES === */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid #9d2571;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6c757d;
}

/* === PWA INSTALL PROMPT STYLES === */
.install-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7a1c5e, #e1306c);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(122, 28, 94, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.install-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.install-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.install-icon i {
    font-size: 18px;
    color: #ffffff;
}

.install-text h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.install-text p {
    margin: 0;
    font-size: 12px;
    color: #f8f2f4;
    opacity: 0.8;
}

.install-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.install-btn {
    background: #ffffff;
    color: #7a1c5e;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-btn:hover {
    background: #f8f2f4;
    transform: translateY(-2px);
}

.dismiss-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.dismiss-btn:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .install-prompt {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .install-text h4 {
        font-size: 13px;
    }
    .install-text p {
        font-size: 11px;
    }
}

@media (display-mode: standalone) {
    body {
        padding-top: env(safe-area-inset-top);
    }
    .header {
        padding-top: env(safe-area-inset-top);
    }
}


/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-inner {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.8;
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    text-align: center;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    color: var(--text-dark);
    padding: 2rem;
    max-width: 90%;
    z-index: 2;
    animation: fadeIn 0.8s ease-in;
}

.loading-logo-container {
    margin-bottom: 1.5rem;
}

.loading-logo-img {
    width: 280px;
    height: auto;
    animation: popIn 0.6s ease-out;
}

.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem auto;
    height: 20px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: jump 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes jump {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2) translateY(-6px);
        opacity: 1;
    }
}

.loading-powered-by {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeIn 0.6s ease 0.8s both;
}

.loading-powered-by .developer-name {
    color: #07c21a;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 1; }
    to { opacity: 1; }
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.logo {
    text-decoration: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.logo:hover .logo-underline {
    width: 100%;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    transform: scale(0);
    opacity: 0;
    transition: all var(--transition-normal);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scale(1);
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Mobile Menu Toggle - Fixed */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    transition: transform var(--transition-normal);
    z-index: 1001; /* Higher than nav-links */
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    transform-origin: center;
}

/* Fixed animation states */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation - Fixed positioning and z-index */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100vw; /* Start completely off-screen */
        width: 100vw;
        height: 100vh;
        background: rgba(122, 28, 94, 0.95); /* Stronger background */
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
        z-index: 1000; /* Below toggle button */
        padding: 2rem;
    }
    
    .nav-links.active {
        left: 0; /* Slide in */
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: var(--radius-full);
        border: 2px solid transparent;
        min-width: 200px;
        text-align: center;
        transform: translateY(30px); /* Start below */
        opacity: 0;
        transition: all var(--transition-normal);
    }
    
    /* Animate nav links when menu opens */
    .nav-links.active .nav-link {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Stagger the animation */
    .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active .nav-link:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--white);
    }
    
    .nav-link::before {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-normal);
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scale(0);
    opacity: 0;
    transition: all var(--transition-normal);
    border-radius: var(--radius-full);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    color: var(--white);
}

.btn-secondary:hover .btn-bg {
    transform: scale(1);
    opacity: 1;
}

/* Hero Section - Enhanced */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-50) 0%, rgba(248, 242, 244, 0.8) 100%);
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(122, 28, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(225, 48, 108, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite alternate;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0) scale(1); }
    100% { transform: translateX(20px) translateY(-20px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.accent-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Hero Time Status - Matching Site Design */
.hero-time-status {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

.hero-time-status[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-status-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-premium);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-width: 300px;
}

/* Subtle shimmer effect matching site design */
.hero-status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 28, 94, 0.1), transparent);
  transition: left var(--transition-slow);
  pointer-events: none;
}

.hero-status-card:hover::before {
  left: 100%;
}

.hero-status-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(122, 28, 94, 0.2);
}

/* Status Icon Container - Premium Design */
.status-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  box-shadow: 0 6px 20px rgba(122, 28, 94, 0.4);
  transition: all var(--transition-normal);
}

.hero-status-card:hover .status-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(122, 28, 94, 0.5);
}

/* Status Dot */
.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  position: relative;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all var(--transition-normal);
}

/* Pulsing animation for active status */
.status-dot.active {
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Status Content */
.status-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.status-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  transition: color var(--transition-normal);
}

.status-hours {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.2;
  transition: color var(--transition-normal);
}

.hero-status-card:hover .status-label {
  color: var(--primary);
}

.hero-status-card:hover .status-hours {
  color: var(--text-dark);
}

/* Status variations matching site color scheme */
.status-dot.online {
  background: #10b981;
  box-shadow: 
    0 2px 8px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.status-icon.online {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.status-dot.busy {
  background: var(--accent);
  box-shadow: 
    0 2px 8px rgba(225, 48, 108, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.status-icon.busy {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.status-dot.offline {
  background: var(--gray-800);
  box-shadow: 
    0 2px 8px rgba(38, 38, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.status-icon.offline {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  box-shadow: 0 6px 20px rgba(38, 38, 38, 0.4);
}

.status-dot.away {
  background: #8b5cf6;
  box-shadow: 
    0 2px 8px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.status-icon.away {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Loading animation */
.status-dot.loading {
  background: var(--gray-300);
  animation: statusLoading 1.5s ease-in-out infinite;
}

.status-icon.loading {
  background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-200) 100%);
  box-shadow: 0 6px 20px rgba(212, 212, 212, 0.4);
}

@keyframes statusLoading {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* Enhanced hover states for different statuses */
.hero-status-card:hover .status-icon.online {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.hero-status-card:hover .status-icon.busy {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.hero-status-card:hover .status-icon.offline {
  box-shadow: 0 8px 25px rgba(38, 38, 38, 0.5);
}

.hero-status-card:hover .status-icon.away {
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Responsive Design matching site breakpoints */
@media (max-width: 992px) {
  .hero-status-card {
    padding: 1.2rem 2rem;
    min-width: 280px;
    gap: 1.2rem;
  }
  
  .status-icon {
    width: 55px;
    height: 55px;
  }
  
  .status-dot {
    width: 14px;
    height: 14px;
  }
  
  .status-label {
    font-size: 1rem;
  }
  
  .status-hours {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-status-card {
    padding: 1rem 1.5rem;
    min-width: 260px;
    gap: 1rem;
  }
  
  .status-icon {
    width: 50px;
    height: 50px;
  }
  
  .status-dot {
    width: 12px;
    height: 12px;
  }
  
  .status-label {
    font-size: 0.95rem;
  }
  
  .status-hours {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-status-card {
    padding: 1rem 1.25rem;
    min-width: 240px;
    gap: 0.8rem;
  }
  
  .status-icon {
    width: 45px;
    height: 45px;
  }
  
  .status-dot {
    width: 10px;
    height: 10px;
  }
  
  .status-label {
    font-size: 0.9rem;
  }
  
  .status-hours {
    font-size: 0.75rem;
  }
}

/* Additional premium effects matching site design */
.hero-status-card.premium-glow {
  animation: premiumGlow 3s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
  0% {
    box-shadow: var(--shadow-premium);
  }
  100% {
    box-shadow: 
      var(--shadow-premium),
      0 0 30px rgba(122, 28, 94, 0.2);
  }
}

/* Integration with site's AOS animations */
.hero-time-status[data-aos] {
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-time-status[data-aos][data-aos-delay] {
  transition-delay: 0;
}

.hero-time-status[data-aos][data-aos-delay].aos-animate {
  transition-delay: var(--aos-delay, 0.45s);
}

/* Enhanced Hero Stats */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(122, 28, 94, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(122, 28, 94, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Hero Right - Owner Image Section */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owner-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    max-width: 100%;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    margin-top: -50px;
}

.owner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.owner-image-container:hover .owner-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(122, 28, 94, 0.1) 0%, rgba(225, 48, 108, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.owner-image-container:hover .image-overlay {
    opacity: 1;
}

.owner-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 200px;
}

.badge-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.badge-content p {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.2); 
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Services Section */
.services {
    background: var(--gray-50);
}

.services-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icons {
    display: flex;
    gap: 1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    transform: translateY(20px);
}

.service-card:hover .service-icon {
    transform: translateY(0);
}

.service-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.service-badge.new {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.service-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.btn-service:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.about-image:hover .image-overlay {
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text .section-subtitle::after {
    left: 0;
    transform: none;
}

.about-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* PWA status bar styling for iOS */
@media (display-mode: standalone) {
    body {
        padding-top: env(safe-area-inset-top);
    }
    
    .header {
        padding-top: env(safe-area-inset-top);
    }
}

/* Booking Policy Section Styles */
.booking-policy {
    background: linear-gradient(135deg, #f8f2f4 0%, #faf6f7 100%);
    padding: 80px 0;
}

.policy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.policy-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(122, 28, 94, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #7a1c5e, #e1306c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(122, 28, 94, 0.15);
    border-color: rgba(225, 48, 108, 0.2);
}

.policy-card:hover::before {
    opacity: 1;
}

.policy-icon {
    background: linear-gradient(135deg, #7a1c5e, #e1306c);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.policy-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.policy-card:hover .policy-icon::before {
    transform: translateX(100%);
}

.policy-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c1810;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.policy-details p {
    font-size: 14px;
    color: #6b4423;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.policy-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(122, 28, 94, 0.1);
}

.policy-note {
    font-size: 14px;
    color: #6b4423;
    margin: 0 0 24px 0;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Design for Policy Section */
@media (max-width: 768px) {
    .booking-policy {
        padding: 60px 0;
    }
    
    .policy-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 32px 0;
    }
    
    .policy-card {
        padding: 24px 20px;
        gap: 16px;
    }
    
    .policy-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .policy-details h4 {
        font-size: 18px;
    }
    
    .policy-details p {
        font-size: 13px;
    }
    
    .policy-cta {
        margin-top: 40px;
        padding-top: 24px;
    }
}

@media (max-width: 480px) {
    .policy-card {
        padding: 20px 16px;
        gap: 14px;
    }
    
    .policy-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .policy-details h4 {
        font-size: 17px;
    }
}

/* Enhanced Premium About Stats */
.about-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.premium-stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-glass);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.premium-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 28, 94, 0.1), transparent);
    transition: left 0.8s ease;
}

.premium-stat-card:hover::before {
    left: 100%;
}

.premium-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-premium);
    border-color: rgba(122, 28, 94, 0.3);
}

.premium-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(122, 28, 94, 0.4);
    transition: all var(--transition-normal);
}

.premium-stat-card:hover .premium-stat-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(122, 28, 94, 0.5);
}

.premium-stat-content {
    display: flex;
    flex-direction: column;
}

.premium-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    background: var(--gray-50);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all var(--transition-slow);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    color: #fbbf24;
    font-size: 1.2rem;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    text-align: left;
}

.client-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.client-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(122, 28, 94, 0.1);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.form-group input:focus + .form-line,
.form-group select:focus + .form-line,
.form-group textarea:focus + .form-line {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-title {
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.footer-links a:hover::before {
    width: 6px;
}

.newsletter-text {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-input {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
}

.newsletter-input input::placeholder {
    color: var(--gray-300);
}

.newsletter-input input:focus {
    outline: none;
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.developer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.developer-link:hover {
    color: #34d399;
    transform: scale(1.05);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-icon {
    color: var(--white);
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .owner-image-container {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: var(--gradient-overlay);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left var(--transition-slow);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: var(--radius-full);
        border: 2px solid transparent;
        min-width: 200px;
        text-align: center;
    }
    
    .nav-link::before {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .owner-image-container {
        width: 320px;
        height: 400px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .owner-image-container {
        width: 280px;
        height: 350px;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .premium-stat-card {
        width: 100%;
        max-width: 200px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .book{
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .premium-stat-number {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .owner-image-container {
        width: 250px;
        height: 320px;
    }
    
    .owner-badge {
        bottom: 1rem;
        padding: 1rem 1.5rem;
        min-width: 180px;
    }
}

/* Print Styles */
@media print {
    .loading-screen,
    .custom-cursor,
    .header,
    .scroll-top,
    .floating-elements,
    .scroll-indicator {
        display: none !important;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}



/* Join Us Section Styles */
.join-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.join-us::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.join-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Join Us Features */
.join-us-features {
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.join-feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9d2571, #9d2571);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.join-feature-card:hover::before {
    transform: scaleX(1);
}

.join-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.join-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9d2571, #9d2571);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.join-feature-card .feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

.join-feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.join-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.join-feature-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Join Us Form */
.join-us-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.join-us-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #9d2571, #9d2571, #e67e22);
    border-radius: 20px 20px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #9d2571;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #495057;
    position: relative;
    padding-left: 2rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: #9d2571;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background: #9d2571;
    border-color: #9d2571;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.join-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #9d2571, #9d2571);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.join-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.join-submit-btn:active {
    transform: translateY(0);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #9d2571, #e67e22);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.join-submit-btn:hover .btn-bg {
    opacity: 1;
}

.btn-text,
.join-submit-btn i {
    position: relative;
    z-index: 1;
}

/* User Dashboard Styles */
.user-dashboard {
    background: #f8f9fa;
    min-height: 80vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 4px solid #9d2571;
    background: linear-gradient(135deg, #9d2571, #9d2571);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.welcome-text h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.welcome-text p {
    color: #6c757d;
    font-size: 1rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9d2571, #9d2571);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.dashboard-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9d2571, #9d2571);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dashboard-card .card-icon i {
    font-size: 20px;
    color: #ffffff;
}

.dashboard-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.dashboard-card p {
    color: #6c757d;
    font-size: 0.9rem;
}

.dashboard-sections {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.dashboard-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
}

.booking-history-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.booking-history-item:hover {
    background: #f8f9fa;
    border-color: #9d2571;
}

.booking-date {
    min-width: 80px;
    font-size: 0.8rem;
    color: #6c757d;
}

.booking-details {
    flex: 1;
    margin-left: 1rem;
}

.booking-service {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.booking-time {
    font-size: 0.8rem;
    color: #6c757d;
}

.booking-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.booking-status.completed {
    background: #d4edda;
    color: #155724;
}

.booking-status.pending {
    background: #fff3cd;
    color: #856404;
}

.booking-status.confirmed {
    background: #cce5ff;
    color: #004085;
}

.booking-status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.profile-info-item:last-child {
    border-bottom: none;
}

.profile-label {
    font-weight: 500;
    color: #495057;
}

.profile-value {
    color: #6c757d;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #9d2571, #9d2571);
    color: #ffffff;
}

.btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: #6c757d;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .join-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .join-us-form {
        padding: 2rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .user-welcome {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dashboard-actions {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .join-feature-card {
        padding: 1.5rem;
    }
    
    .join-us-form {
        padding: 1.5rem;
    }
    
    .user-avatar {
        width: 60px;
        height: 60px;
    }
    
    .avatar-initials {
        font-size: 1.4rem;
    }
    
    .welcome-text h2 {
        font-size: 1.4rem;
    }
}



/* Christmas Theme Styles - Easily removable after holidays */
:root {
    /* Christmas-specific colors */
    --christmas-red: #c1272d;
    --christmas-green: #007236;
    --christmas-gold: #d4af37;
    --christmas-silver: #c0c0c0;
    --snow-white: rgba(255, 255, 255, 0.85);
    --snow-gold: rgba(212, 175, 55, 0.7);
}

/* Christmas Header */
.christmas-header {
    position: relative;
}

.christmas-logo-decoration {
    margin-left: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

/* Christmas Lights Decoration */
.christmas-lights-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1001;
    pointer-events: none;
}

.christmas-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 0.5rem;
    animation: twinkle 1.5s infinite alternate;
}

.christmas-light:nth-child(1) { background: var(--christmas-red); animation-delay: 0s; }
.christmas-light:nth-child(2) { background: var(--christmas-green); animation-delay: 0.3s; }
.christmas-light:nth-child(3) { background: var(--christmas-gold); animation-delay: 0.6s; }
.christmas-light:nth-child(4) { background: var(--primary); animation-delay: 0.9s; }
.christmas-light:nth-child(5) { background: var(--christmas-red); animation-delay: 1.2s; }
.christmas-light:nth-child(6) { background: var(--christmas-green); animation-delay: 1.5s; }
.christmas-light:nth-child(7) { background: var(--christmas-gold); animation-delay: 1.8s; }
.christmas-light:nth-child(8) { background: var(--primary); animation-delay: 2.1s; }

/* Christmas Buttons */
.christmas-btn-glow {
    position: relative;
    overflow: hidden;
}

.christmas-btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.christmas-btn-glow:hover::after {
    opacity: 1;
}

.christmas-btn-sparkle {
    position: relative;
    overflow: hidden;
}

.christmas-btn-sparkle::before {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.christmas-btn-sparkle:hover::before {
    opacity: 1;
    transform: scale(1) translate(5px, -5px);
}

.christmas-btn-outline {
    position: relative;
    overflow: hidden;
}

.christmas-btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent, 
        var(--christmas-red) 25%, 
        transparent 50%, 
        var(--christmas-green) 75%, 
        transparent);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.christmas-btn-outline:hover::after {
    opacity: 0.1;
    animation: gradientShift 3s ease infinite;
}

/* Christmas Hero Section */
.christmas-hero {
    position: relative;
}

.christmas-hero-decoration {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.christmas-decoration-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.christmas-decoration-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.christmas-decoration-3 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
}

.christmas-title-decoration {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    text-align: center;
    animation: sparkle 2s infinite;
}

/* Christmas Countdown */
.christmas-countdown-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.christmas-countdown-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 300px;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
}

.countdown-item {
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(122, 28, 94, 0.05);
}

.countdown-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Christmas Services */
.christmas-services {
    position: relative;
}

.christmas-service-card {
    position: relative;
    overflow: hidden;
}

.christmas-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary), 
        var(--christmas-red), 
        var(--christmas-gold), 
        var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.christmas-service-card:hover::before {
    transform: scaleX(1);
}

.christmas-card-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

/* Christmas Stats */
.christmas-stat-card {
    position: relative;
    overflow: hidden;
}

.christmas-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent);
    transition: left 0.8s ease;
}

.christmas-stat-card:hover::before {
    left: 100%;
}

.christmas-stat-glow {
    position: relative;
    overflow: hidden;
}

.christmas-stat-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent);
    transition: left 0.8s ease;
}

.christmas-stat-glow:hover::before {
    left: 100%;
}

/* Christmas Testimonials */
.christmas-testimonial-card {
    position: relative;
    overflow: hidden;
}

.christmas-testimonial-card::before {
    content: '🎄';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.5;
    z-index: 1;
}

/* Christmas Contact */
.christmas-contact-card {
    position: relative;
    overflow: hidden;
}

.christmas-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--christmas-red), 
        var(--christmas-gold));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.christmas-contact-card:hover::before {
    transform: scaleY(1);
}

/* Christmas Policy */
.christmas-policy-card {
    position: relative;
    overflow: hidden;
}

.christmas-policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--christmas-red), 
        var(--christmas-green), 
        var(--christmas-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.christmas-policy-card:hover::before {
    transform: scaleX(1);
}

/* Christmas Dashboard */
.christmas-dashboard-card {
    position: relative;
    overflow: hidden;
}

.christmas-dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--christmas-red), 
        var(--christmas-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.christmas-dashboard-card:hover::before {
    transform: scaleX(1);
}

/* Christmas Footer */
.christmas-footer {
    position: relative;
}

.christmas-footer-icon {
    margin-left: 0.3rem;
    animation: float 3s ease-in-out infinite;
}

.christmas-footer-decoration {
    display: inline-block;
    margin-left: 0.5rem;
    animation: sparkle 2s infinite;
}

.christmas-social-link {
    position: relative;
    overflow: hidden;
}

.christmas-social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.christmas-social-link:hover::after {
    opacity: 1;
}

/* Christmas Avatar */
.christmas-avatar {
    position: relative;
}

.christmas-santa-hat {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.2rem;
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

/* Christmas Modal */
.christmas-modal {
    position: relative;
    overflow: hidden;
}

.christmas-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--christmas-red), 
        var(--christmas-green), 
        var(--christmas-gold), 
        var(--primary));
}

/* Christmas Section Icons */
.christmas-section-icon {
    margin-left: 0.3rem;
    animation: float 3s ease-in-out infinite;
}

.christmas-header-icon {
    margin-left: 0.3rem;
    animation: float 3s ease-in-out infinite;
}

.christmas-greeting-icon {
    margin-left: 0.3rem;
    animation: float 3s ease-in-out infinite;
}

/* Christmas Loading Screen */
.christmas-sparkle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.8;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.christmas-sparkle-1 {
    top: -20px;
    left: 30%;
    animation-delay: 0s;
}

.christmas-sparkle-2 {
    top: -30px;
    right: 25%;
    animation-delay: 1s;
}

.christmas-sparkle-3 {
    bottom: -20px;
    right: 35%;
    animation-delay: 2s;
}

/* Christmas Snow Container */
.christmas-snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.christmas-snowflake {
    position: absolute;
    background: var(--snow-white);
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

/* Christmas Sparkle Effect */
.christmas-sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.christmas-sparkle-particle {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    animation: sparkleParticle 1.5s ease-out forwards;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fall {
    to {
        transform: translateY(var(--fall-height)) translateX(var(--fall-offset));
        opacity: 0;
    }
}

@keyframes sparkleParticle {
    0% {
        opacity: 1;
        transform: scale(0) translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translate(var(--sparkle-x), var(--sparkle-y));
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(var(--sparkle-x), var(--sparkle-y));
    }
}

/* Responsive Christmas Styles */
@media (max-width: 992px) {
    .christmas-lights-decoration {
        display: none;
    }
    
    .christmas-countdown-card {
        min-width: 250px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
    }
}

@media (max-width: 768px) {
    .christmas-hero-decoration {
        display: none;
    }
    
    .christmas-title-decoration {
        font-size: 1rem;
    }
    
    .christmas-card-decoration {
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .christmas-santa-hat {
        font-size: 1rem;
        top: -6px;
        right: -6px;
    }
    
    .christmas-countdown-card {
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
}