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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.logo-image {
    height: 80px;
    width: 80px;
    max-width: 80px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
    animation: logoFloat 3s ease-in-out infinite;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8B5CF6;
}

.logo-image:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.4));
    border-color: #7C3AED;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-3px) rotate(1deg); 
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text h2 {
    color: #8B5CF6;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(139, 92, 246, 0.1);
}

.logo-text span {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-text h2 {
    color: #7C3AED;
    transform: translateX(2px);
}

.nav-logo:hover .logo-text span {
    color: #8B5CF6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: #8B5CF6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B5CF6;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #F9FAFB;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1F2937;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
}

.service-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.service-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    color: #374151;
}

.service-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.service-details li {
    padding: 0.5rem 0;
    color: #6B7280;
}

.note {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #92400E;
}

.session-options {
    margin: 1.5rem 0;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.option:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: #8B5CF6;
}

.service-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.service-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #6B7280;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.about-text p {
    color: #6B7280;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: aboutFloat 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.about-graphic:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4);
}

.about-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    animation: photoGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
    border-color: #F3E8FF;
}

@keyframes aboutFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
    }
}

@keyframes photoGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #F9FAFB;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1F2937;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #374151;
}

.contact-item p {
    color: #6B7280;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1F2937;
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #F9FAFB;
}

.footer-section p {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B5CF6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

/* Responsive Design */
/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .logo-image {
        height: 90px;
        width: 90px;
        max-width: 90px;
    }
    
    .logo-text h2 {
        font-size: 2rem;
    }
}

/* Medium screens (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-graphic {
        width: 250px;
        height: 250px;
    }
    
    .about-photo {
        width: 230px;
        height: 230px;
    }
    
    .logo-image {
        height: 75px;
        width: 75px;
        max-width: 75px;
    }
    
    .logo-text h2 {
        font-size: 1.7rem;
    }
}

/* Tablet screens (768px and down) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .logo-image {
        height: 65px;
        width: 65px;
        max-width: 65px;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-graphic {
        width: 200px;
        height: 200px;
    }
    
    .about-photo {
        width: 180px;
        height: 180px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile screens (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 55px;
        width: 55px;
        max-width: 55px;
    }
    
    .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
    }
    
    .about-graphic {
        width: 150px;
        height: 150px;
    }
    
    .about-photo {
        width: 130px;
        height: 130px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 1rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Extra small screens (320px and down) */
@media (max-width: 320px) {
    .logo-image {
        height: 45px;
        width: 45px;
        max-width: 45px;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .about-graphic {
        width: 120px;
        height: 120px;
    }
    
    .about-photo {
        width: 100px;
        height: 100px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-graphic {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }
    
    .nav-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .logo-image {
        height: 40px;
        width: 40px;
        max-width: 40px;
    }
    
    .logo-text h2 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-graphic,
    .about-graphic {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .modal,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .services,
    .about,
    .contact {
        padding: 2rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
}

.message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
} 

/* Payment Page Styles */
.payment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-container {
    max-width: 900px;
    width: 90%;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.payment-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7, #EC4899);
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.payment-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
    border-radius: 2px;
}

.payment-header h1 {
    color: #1f2937;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-header p {
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.booking-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
}

.booking-summary h3 {
    color: #374151;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.booking-summary h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #8B5CF6;
    border-radius: 2px;
}

.summary-details {
    display: grid;
    gap: 1.2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
    border-color: #8B5CF6;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #8b5cf6;
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
    border: 2px solid #8b5cf6;
    padding: 1.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.summary-item.total::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
}

.summary-item .label {
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item .label::before {
    content: '✓';
    color: #8B5CF6;
    font-weight: bold;
}

.summary-item .value {
    color: #6b7280;
    font-weight: 500;
}

.summary-item.total .value {
    color: #8B5CF6;
    font-size: 1.3rem;
}

.payment-options {
    margin-bottom: 3rem;
}

.payment-options h3 {
    color: #374151;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
}

.payment-options h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
    border-radius: 2px;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-option {
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    position: relative;
    cursor: pointer;
}

.payment-option:hover {
    border-color: #8b5cf6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.payment-option.selected {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.payment-option-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.payment-option-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
}

.payment-option.selected .payment-option-header {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
}

.payment-option-header i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.payment-option.selected .payment-option-header i {
    color: white;
    transform: scale(1.1);
}

.payment-option-header h4 {
    color: #374151;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-option.selected .payment-option-header h4 {
    color: white;
}

.payment-option-header p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.payment-option.selected .payment-option-header p {
    color: rgba(255, 255, 255, 0.9);
}

.payment-option-content {
    padding: 2rem;
    text-align: center;
}

.mpesa-form {
    display: grid;
    gap: 1.5rem;
}

.mpesa-form .form-group {
    display: grid;
    gap: 0.75rem;
}

.mpesa-form label {
    font-weight: 600;
    color: #374151;
    text-align: left;
    font-size: 1rem;
}

.mpesa-form input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.mpesa-form input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.mpesa-form .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mpesa-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #7C3AED, #9333EA);
}

.mpesa-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#paypal-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    min-height: 50px;
}

/* WhatsApp Option Styles */
.whatsapp-form {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.whatsapp-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    color: #0369a1;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.whatsapp-info i {
    color: #0ea5e9;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-buttons {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3) !important;
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
}

.btn-call {
    background: linear-gradient(135deg, #8B5CF6, #A855F7) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

.btn-call:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3) !important;
    background: linear-gradient(135deg, #7C3AED, #9333EA) !important;
}

.contact-note {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    color: #374151;
    font-size: 0.95rem;
    margin: 0;
}

.contact-note strong {
    color: #8b5cf6;
}

.payment-footer {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    border: 2px solid #0ea5e9;
    position: relative;
    overflow: hidden;
}

.payment-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.payment-footer p {
    color: #0369a1;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
}

.payment-footer i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

/* Payment Success Styles */
.payment-success {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 3px solid #10b981;
    border-radius: 20px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.payment-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.payment-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.payment-success h2 {
    color: #10b981;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-success p {
    color: #065f46;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

/* Payment Error Styles */
.payment-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 3px solid #ef4444;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    position: relative;
    overflow: hidden;
}

.payment-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.payment-error i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Responsive Design for Payment Page */
@media (max-width: 768px) {
    .payment-section {
        padding: 2rem 0;
    }
    
    .payment-container {
        width: 95%;
        padding: 2rem;
        margin: 1rem;
    }
    
    .payment-header h1 {
        font-size: 2.2rem;
    }
    
    .payment-header p {
        font-size: 1.1rem;
    }
    
    .booking-summary {
        padding: 2rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .payment-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-option-header {
        padding: 1.5rem;
    }
    
    .payment-option-header i {
        font-size: 2.5rem;
    }
    
    .payment-option-content {
        padding: 1.5rem;
    }
    
    .payment-footer {
        padding: 2rem;
    }
    
    .payment-footer p {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .mpesa-form .btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* WhatsApp responsive styles */
    .contact-buttons {
        gap: 0.75rem;
    }
    
    .btn-whatsapp,
    .btn-call {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .whatsapp-info {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .contact-note {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .payment-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .payment-header h1 {
        font-size: 1.8rem;
    }
    
    .booking-summary {
        padding: 1.5rem;
    }
    
    .payment-option-header {
        padding: 1rem;
    }
    
    .payment-option-content {
        padding: 1rem;
    }
    
    .payment-footer {
        padding: 1.5rem;
    }
    
    /* WhatsApp responsive styles for small screens */
    .btn-whatsapp,
    .btn-call {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    .whatsapp-info {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .contact-note {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
} 

/* Admin Login Styles */
.admin-login-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-container {
    max-width: 500px;
    width: 90%;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.admin-login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7, #EC4899);
}

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

.admin-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.admin-login-header h1 {
    color: #1f2937;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.admin-login-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.admin-login-form {
    margin-bottom: 2rem;
}

.admin-login-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.admin-login-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.admin-login-footer p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.back-to-site {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-to-site:hover {
    color: #7c3aed;
    transform: translateX(-2px);
}

/* Admin Dashboard Styles */
.admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: none;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.admin-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header-left {
    display: flex;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.admin-logo:hover {
    transform: translateY(-2px);
}

.admin-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.admin-logo:hover .admin-logo-img {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.admin-logo-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.admin-logo-text h2 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.3px;
}

.admin-logo-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.admin-user-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.admin-user-info i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.admin-header-right .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.admin-header-right .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Admin Dashboard Layout */
.admin-dashboard {
    display: flex;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.admin-sidebar {
    width: 280px;
    background: #f8fafc;
    border-right: 2px solid #e5e7eb;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.admin-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav li {
    margin: 0;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.admin-nav a:hover {
    background: #f1f5f9;
    color: #8b5cf6;
    border-left-color: #8b5cf6;
}

.admin-nav li.active a {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border-left-color: #7c3aed;
}

.admin-nav i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    background: #f9fafb;
    padding: 2rem;
    overflow-y: auto;
    margin-top: 80px;
}

/* Admin Section Styles */
.admin-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-section-header {
    margin-bottom: 2rem;
}

.admin-section-header h1 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.admin-section-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-content h3 {
    color: #1f2937;
    font-size: 2rem;
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.stat-content p {
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Dashboard Content */
.dashboard-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.recent-bookings h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bookings-list {
    min-height: 200px;
}

.no-data {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    padding: 2rem;
}

/* Bookings Controls */
.bookings-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.filter-controls {
    display: flex;
    gap: 1rem;
}

.filter-controls select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.filter-controls select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Bookings Table */
.bookings-table-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

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

.bookings-table th {
    background: #f8fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.bookings-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
}

.bookings-table tr:hover {
    background: #f9fafb;
}

.bookings-table .no-data {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
    font-style: italic;
}

/* Appointments Controls */
.appointments-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.date-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-navigation span {
    font-weight: 600;
    color: #374151;
    min-width: 120px;
    text-align: center;
}

/* Calendar Grid */
.appointments-calendar {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

/* Schedule Settings */
.schedule-settings {
    display: grid;
    gap: 2rem;
}

.working-hours, .break-time {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.working-hours h3, .break-time h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.day-hours {
    display: grid;
    grid-template-columns: 100px 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.day-hours label {
    font-weight: 600;
    color: #374151;
}

.day-hours input {
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
}

.day-hours input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.day-hours span {
    color: #6b7280;
    font-weight: 500;
}

.break-settings {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

.break-settings label {
    font-weight: 600;
    color: #374151;
}

.break-settings input {
    padding: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
}

.break-settings input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.break-settings span {
    color: #6b7280;
    font-weight: 500;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
    min-width: auto;
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #dc2626;
    transform: scale(1.05);
}

#breakTimesContainer {
    margin-bottom: 1rem;
}

/* Settings Content */
.settings-content {
    display: grid;
    gap: 2rem;
}

.setting-group {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.setting-group h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.checkbox-group {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8b5cf6;
}

/* Responsive Design for Admin */
@media (max-width: 1024px) {
    .admin-dashboard {
        flex-direction: column;
        margin-top: 80px;
    }
    
    .admin-sidebar {
        width: 100%;
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .admin-nav ul {
        display: flex;
        overflow-x: auto;
        padding: 1rem;
    }
    
    .admin-nav li {
        flex-shrink: 0;
    }
    
    .admin-nav a {
        padding: 0.75rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .admin-nav li.active a {
        border-bottom-color: #7c3aed;
    }
    
    .admin-main {
        padding: 1rem;
        margin-top: 0;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .bookings-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .appointments-controls {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .admin-header-container {
        padding: 0 1rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .admin-logo {
        gap: 0.75rem;
        padding: 0.4rem;
    }
    
    .admin-logo-img {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .admin-logo-text {
        gap: 0.5rem;
    }
    
    .admin-logo-text h2 {
        font-size: 1.1rem;
    }
    
    .admin-logo-text span {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }
    
    .admin-user-info {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .admin-header-right .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .bookings-table {
        font-size: 0.9rem;
    }
    
    .bookings-table th,
    .bookings-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .day-hours {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .break-settings {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
} 