:root {
    --primary-purple: #e6e6fa;
    --primary-pink: #ffd1dc;
    --accent-purple: #d8bfd8;
    --accent-pink: #ffb6c1;
    --dark-purple: #9370db;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark-purple);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--dark-purple);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--primary-purple);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-purple);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-purple);
    margin: 1rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-purple), var(--accent-pink));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--primary-purple);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--accent-purple);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--primary-purple);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--dark-purple);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--text-dark);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-purple);
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--primary-purple);
}

.table th {
    background-color: var(--primary-purple);
    font-weight: 600;
}

/* Status Badges */
.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-progress { background: #cce7ff; color: #004085; }
.status-completed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Elegant Service Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-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" fill="%23ffffff" opacity="0.1"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="40" r="1.5"/><circle cx="40" cy="80" r="1"/><circle cx="60" cy="20" r="1.2"/><circle cx="90" cy="70" r="0.8"/></svg>');
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.services-hero p {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    position: relative;
}

/* Luxury Service Cards */
.luxury-card {
    background: linear-gradient(145deg, var(--white), #f8f7ff);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(147, 112, 219, 0.1),
        0 4px 6px rgba(147, 112, 219, 0.05);
    margin-bottom: 2rem;
    border: 1px solid rgba(147, 112, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(147, 112, 219, 0.15),
        0 8px 12px rgba(147, 112, 219, 0.1);
}

.service-category-title {
    font-size: 2.2rem;
    color: var(--dark-purple);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.service-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
}

/* Enhanced Service Items */
.service-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(147, 112, 219, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.12);
    border-color: var(--primary-purple);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-purple);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(147, 112, 219, 0.1);
}

.service-duration {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-duration::before {
    content: '⏱️';
    margin-right: 0.5rem;
}

.service-category-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-basic {
    background: linear-gradient(135deg, #e6e6fa, #d8bfd8);
    color: #6b46c1;
}

.badge-premium {
    background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
    color: #c53030;
}

.badge-package {
    background: linear-gradient(135deg, #d8f0ff, #a5d8ff);
    color: #1e40af;
}

/* Booking Button */
.book-btn {
    background: linear-gradient(135deg, var(--dark-purple), #a855f7);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 112, 219, 0.4);
    color: white;
}

/* Category Sections */
.category-section {
    margin-bottom: 4rem;
}

/* Floating Action Button */
.floating-booking {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--dark-purple), var(--accent-pink));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.5rem;
}

.floating-booking:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(147, 112, 219, 0.4);
    color: white;
}

/* Service Icons */
.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-price {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .luxury-card {
        padding: 1.5rem;
    }
    
    .floating-booking {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(even) {
    animation-delay: 0.1s;
}

.service-item:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-purple);
    color: var(--dark-purple);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--dark-purple), var(--accent-pink));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
}