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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #111827;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
}

.text-accent {
    color: #775037;
}

.text-muted {
    color: #9ca3af;
}

.text-green {
    color: #10b981;
}

.text-yellow {
    color: #f59e0b;
}

.text-red {
    color: #ef4444;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #775037;
    color: white;
}

.btn-primary:hover {
    background-color: #5e3d28;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #374151;
    color: #d1d5db;
}

.btn-outline:hover {
    background-color: #374151;
    color: white;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f2937;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d1d5db;
    padding: 0.5rem;
    cursor: pointer;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 3rem;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #775037;
}

.book-btn-container {
    position: relative;
}

.book-text-short {
    display: none;
}

.service-counter {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 50;
}

.mobile-menu-content {
    background-color: #1f2937;
    padding: 2rem;
    margin-top: 4rem;
}

.mobile-nav-link {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #374151;
}

.mobile-nav-link:hover {
    color: #775037;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: #111827;
    overflow: hidden;

}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("/images/Background.jpg");
    width: 100%;
    height: 100%;
    background-position: center;
    opacity: 0.1;
    object-fit: cover;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.hero-text {
    max-width: 600px;
    text-align: left;
}

.badge {
    display: inline-block;
    background-color: rgba(119, 80, 55, 0.2);
    color: rgb(216, 174, 148);
    border: 1px solid rgba(119, 80, 55, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.badge2 {
    display: inline-block;
    background-color: rgba(239, 68, 68, 0.1);
    color: rgb(239, 68, 68);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 0.8rem;
}


.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Cashapp Section */
.cashapp-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #1f2937, #374151);
}

.cashapp-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cashapp-card {
    background-color: #111827;
    border: 1px solid rgba(252, 104, 126, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cashapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.cashapp-icon {
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.466);
}

.cashapp-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cashapp-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
}

.cashapp-btn {
    background-color: #775037;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto;
}

.cashapp-btn:hover {
    background-color: #5e3d28;
    transform: scale(1.05);
}

.cashapp-btn:active {
    transform: scale(0.95);
}

.cashapp-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 1rem 0;
}

.cashapp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.feature-dot.green {
    background-color: #10b981;
}

.feature-dot.accent {
    background-color: #775037;
}

.feature-dot.yellow {
    background-color: #f59e0b;
}

.cashapp-note {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #1f2937;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.category-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    background-color: #374151;
    padding: 0.5rem;
    border-radius: 9999px;
    border: 1px solid #4b5563;
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    background: transparent;
    color: #d1d5db;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background-color: #775037;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    background-color: #4b5563;
    color: white;
}

.filter-btn.active:hover {
    background-color: #5e3d28;
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 3rem 0;
}

/* Add these styles to your existing styles.css */

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0);
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    width: 40%;
    margin: 4px auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booking-success .success-icon,
.booking-error .error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-success h3,
.booking-error h3 {
    color: #775037;
    margin-bottom: 1rem;
}

.success-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    text-align: left;
}

.close-success-btn,
.close-error-btn,
.contact-btn {
    background: #775037;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

.close-success-btn:hover,
.close-error-btn:hover,
.contact-btn:hover {
    background: #5e3d28;
}

/* Admin Message Styles */
.admin-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    font-weight: bold;
}

.admin-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.admin-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.admin-message-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Service Card Selected State */
.service-card.selected {
    border: 2px solid #775037;
    box-shadow: 0 4px 12px rgba(119, 80, 55, 0.3);
}

.select-service-btn.selected {
    background: #775037;
    color: white;
}

/* Selected Services Display */
.selected-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.remove-service {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.remove-service:hover {
    background: #c82333;
}

/* Loading States */
.submit-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.submit-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Admin Service Items */
.admin-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-image-small img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.service-actions {
    display: flex;
    gap: 0.5rem;
}

.edit-service-btn,
.delete-service-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.edit-service-btn {
    background: #007bff;
    color: white;
}

.delete-service-btn {
    background: #dc3545;
    color: white;
}

.edit-service-btn:hover {
    background: #0056b3;
}

.delete-service-btn:hover {
    background: #c82333;
}

.spinner {
    width: 2rem;
    height: 2rem;
    border: 2px solid #374151;
    border-top: 2px solid #775037;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.spinner-small {
    width: 1rem;
    height: 1rem;
    border: 2px solid #374151;
    border-top: 2px solid #775037;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error {
    text-align: center;
    padding: 3rem 0;
    color: #ef4444;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: between;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-price {
    font-weight: 600;
    color: #d1d5db;
    font-size: 1.125rem;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: #111827;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Policies Section */
.policies-section {
    padding: 5rem 0;
    background-color: #1f2937;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.policy-card {
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 2rem;
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.policy-header svg {
    color: #775037;
}

.policy-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.policy-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.policy-content h5:first-child {
    margin-top: 0;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #d1d5db;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.warning-box {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.warning-box h5 {
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.warning-box p {
    color: #fca5a5;
    font-weight: 500;
}

.info-box {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
}

.info-box p {
    color: #fcd34d;
    font-size: 0.875rem;
}

.reminders-card {
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.reminders-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.reminders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.reminder-section h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reminder-section ul {
    list-style: none;
    color: #d1d5db;
}

.reminder-section li {
    margin-bottom: 0.25rem;
}

.policies-cta {
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, rgba(119, 80, 55, 0.1), rgba(252, 104, 126, 0.1));
    border: 1px solid rgba(252, 104, 126, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-card p {
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.cta-card p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #111827;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background-color: #1f2937;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.contact-icon svg {
    color: #775037;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #d1d5db;
}

.contact-form-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
}

.contact-form-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-group label svg {
    display: inline;
    margin-right: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #4b5563;
    background-color: #374151;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #775037;
    box-shadow: 0 0 0 3px rgba(252, 104, 126, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #775037;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #775037;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #775037;
}

.footer-contact {
    color: #9ca3af;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
}


/* Booking Modal Specific */
.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.selected-services h3,
.booking-form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.selected-services h3 svg,
.booking-form-section h3 svg {
    color: #775037;
}

.no-services {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.selected-service-item {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.service-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.service-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-item-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

.service-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item-price {
    background-color: rgba(252, 104, 126, 0.1);
    border: 1px solid rgba(252, 104, 126, 0.3);
    color: #775037;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.service-item-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.remove-service-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.remove-service-btn:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

.booking-summary {
    background-color: rgba(252, 104, 126, 0.1);
    border: 1px solid rgba(252, 104, 126, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 700;
    color: #775037;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(252, 104, 126, 0.3);
}

.summary-note {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.important-reminders {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
}

.important-reminders h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.important-reminders ul {
    list-style: none;
    color: #d1d5db;
}

.important-reminders li {
    margin-bottom: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.form-actions .btn {
    flex: 1;
}

.success-message,
.error-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.success-message {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.success-message h4 {
    color: #10b981;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #6ee7b7;
    margin-bottom: 0.5rem;
}

.error-message {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.error-message h4 {
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.error-message p {
    color: #fca5a5;
}

/* Admin Styles */
.admin-body {
    background-color: #111827;
    min-height: 100vh;
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    background-color: #775037;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.login-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #9ca3af;
}

.login-form {
    margin-bottom: 1.5rem;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
}

.password-toggle:hover {
    color: #d1d5db;
}

.login-footer {
    text-align: center;
}

.login-footer p {
    color: #6b7280;
    font-size: 0.75rem;
}

.admin-dashboard {
    min-height: 100vh;
}

.admin-header {
    background-color: #1f2937;
    border-bottom: 1px solid #374151;
    padding: 1.5rem;
}

.admin-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.admin-header p {
    color: #9ca3af;
}

.admin-content {
    padding: 2rem;
}

.admin-section {
    margin-bottom: 3rem;
}

.admin-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    text-align: left;
}

.admin-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.admin-section .section-header p {
    color: #9ca3af;
}

.service-count {
    background-color: #374151;
    border: 1px solid #4b5563;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.admin-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    overflow: hidden;
}

.admin-card.add-card {
    border-style: dashed;
}

.card-header {
    padding: 1rem;
    border-bottom: 1px solid #374151;
}

.card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.card-header h3 svg {
    color: #775037;
}

.card-content {
    padding: 1rem;
}

.add-service-form,
.edit-service-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.add-service-form input,
.add-service-form textarea,
.add-service-form select,
.edit-service-form input,
.edit-service-form textarea,
.edit-service-form select {
    padding: 0.5rem;
    border: 1px solid #4b5563;
    background-color: #374151;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.service-item {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
}

.service-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.service-item-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.service-actions {
    display: flex;
    gap: 0.5rem;
}

.service-actions .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.service-item-meta {
    color: #9ca3af;
    font-size: 0.875rem;
}

.service-item-meta p {
    margin-bottom: 0.25rem;
}

.availability-item {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
}

.availability-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.availability-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.availability-status {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.availability-status.available {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.availability-status.unavailable {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.time-slot {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot.available {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.time-slot.unavailable {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.time-slot:hover {
    opacity: 0.8;
}

.add-date-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.time-slot-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #4b5563;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-option:hover {
    background-color: #374151;
}

.time-slot-option input[type="checkbox"] {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .logo {
        position: static;
        transform: none;
    }

    .book-text-full {
        display: none;
    }

    .book-text-short {
        display: inline;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .filter-buttons {
        width: 100%;
        max-width: 400px;
    }

    .filter-btn {
        flex: 1;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .policies-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .reminders-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .cashapp-card {
        padding: 1.5rem;
    }

    .cashapp-features {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 0.5rem;
        max-height: calc(100vh - 1rem);
    }

    .modal-header {
        padding-bottom: 2rem;
    }

    .modal-body {
        padding-left: 0.1rem;
        padding-right: 0.1rem;
        padding-top: 0.1rem;
        padding-bottom: 6rem;

    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: content-box;
    overflow-y: auto;
}

.modal.active {
    display: flex !important;
}

.modal-content {

    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #eeeeee00;
    background: linear-gradient(135deg, #775037, #5e3d28);
    color: white;
    border-radius: 12px 12px 0 0;
    position: sticky;
    top: 2px;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1rem;
    background: #fafafa00;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #1f2937;
    background-size: 50px 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
    background: #374151;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card.selected {
    border: 2px solid #775037;
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #1f2937;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.service-description {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.1;
    flex: 1;
    font-size: 0.8rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-price {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.service-duration {
    color: #48ba52;
    font-size: 0.9rem;
}

.service-select-btn {
    width: 100%;
    padding: 0.75rem;
    background: #775037;
    color: white;
    border: 2px solid #775037;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: auto;
}

.service-select-btn:hover {
    background: #5f3822;
    color: white;
    border-color: #5f3822;
}

.service-select-btn.selected {
    background: #5f3822;
    color: white;
    border-color: #5f3822;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 3rem;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #775037;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Selected Services Styling */
.selected-services {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #091622;
}

.selected-services h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #775037;
}

.selected-service-item {
    background: #1f2937;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    border: 1px solid #091622;
}

.service-info h5 {
    margin: 0 0 0.25rem 0;
    color: #775037;
    font-size: 1rem;
}

.service-info p {
    margin: 0 0 0.5rem 0;
    color: #d1d5db;
    font-size: 0.875rem;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-pricing .price {
    font-weight: 600;
    color: #d1d5db;
}

.service-pricing .duration {
    color: #d1d5db;
    font-size: 0.875rem;
}

.booking-summary {
    background: #1f2937;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #091622;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #775037;
    border-top: 1px solid #e9ecef;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.summary-note {
    font-size: 0.75rem;
    color: #d1d5db;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

/* Booking Form Styling */
.booking-form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #775037;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff94;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dddddd38;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #775037;
    box-shadow: 0 0 0 2px rgba(119, 80, 55, 0.1);
}

.important-reminders {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.important-reminders h4 {
    margin: 0 0 0.75rem 0;
    color: #856404;
}

.important-reminders ul {
    margin: 0;
    padding-left: 1.25rem;
}

.important-reminders li {
    margin-bottom: 0.25rem;
    color: #856404;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.success-message,
.error-message {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.success-message h4,
.error-message h4 {
    margin: 0 0 0.75rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }

    .modal-content {
        max-height: 98vh;
        border-radius: 8px;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 5px;
    }

    .modal-content {
        max-height: 95vh;
        max-width: 90vh;
        border-radius: 6px;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 0.5rem;
    }
}

/* example styles — tweak to your taste */
.service-select-btn.is-selected {
    background: #e6fce6;
    border-color: #16a34a;
    color: #166534;
}

.book-btn-container {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-counter {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    background: #ff0000;
    color: #fff;
    font-weight: 600;
}

.hidden {
    display: none;
}
