
/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    background-color: #f3f4f6;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 50;
}

 /* Basic Styles for new elements (add to grooming.css ideally) */
        .success-message {
            color: #155724; /* Dark Green */
            background-color: #d4edda; /* Light Green */
            border: 1px solid #c3e6cb;
            padding: 10px 15px;
            border-radius: 4px;
            margin-top: 15px;
            text-align: center;
        }

        .view-bookings { /* Style the new section */
            background-color: #f8f9fa; /* Light background */
            padding: 50px 0; /* Adjust padding */
            border-top: 1px solid #eee; /* Separator */
        }

        #bookedAppointmentsList {
            margin-top: 20px;
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
        }

        .appointment-card {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column; /* Stack details and button */
            justify-content: space-between;
        }

         .appointment-details p {
            margin: 5px 0;
            line-height: 1.4;
         }
         .appointment-details strong {
            color: #e11d48; /* Theme color accent */
         }


        .cancel-button {
            background-color: #dc3545; /* Red */
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9em;
            margin-top: 15px; /* Space above button */
            transition: background-color 0.3s ease;
            align-self: flex-start; /* Align button to the left */
        }

        .cancel-button:hover {
            background-color: #c82333; /* Darker Red */
        }

        #noAppointmentsMessage {
            text-align: center;
            color: #6c757d; /* Muted color */
            margin-top: 30px;
            font-style: italic;
        }
.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo a {
    color: #db2777;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-logo a:hover {
    color: #be185d;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #db2777;
}


.nav-menu li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

/* Service Container */
.service-container {
    padding-top: 4rem;
}
/* Grooming Process Section */
.grooming-process {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #db2777;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6b7280;
}

/* Connect steps with lines */
.step-card::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: #e5e7eb;
    display: none;
}

@media (min-width: 768px) {
    .step-card:not(:last-child)::after {
        display: block;
    }
}
/* Add-on Services Section */
.addon-services {
    background: #fdf2f8;
    padding: 5rem 0;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.addon-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #db2777;
    margin: 0.5rem 0;
}
/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    border: 2px solid #e11d48;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e11d48;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #e11d48;
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: #6b7280;
}
.book-button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #e91e63;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
    border: none;
}

.book-button:hover {
    background-color: #c2185b;
    transform: scale(1.05);
}

/* Hero Section */
.service-hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 600px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background: #db2777;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: #be185d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Section Headers */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
}

/* Form Styles */
.booking {
    padding: 5rem 0;
    background: #f8fafc;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #db2777;
    box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.1);
}


/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1rem;
    background: #db2777;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-button:hover {
    background: #be185d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content {
        padding: 1rem;
    }

    .section-content {
        padding: 0 1rem;
    }
    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .cta-button,
    .price-card,{
        transition: none;
    }
}

:focus-visible {
    outline: 2px solid #db2777;
    outline-offset: 2px;
}
