/* style.css */
:root {
    --primary-color: #FE81D4;
    --secondary-color: #FAACBF;
    --accent-warm: #FBC3C1;
    --accent-cream: #FFEABB;
    --dark-bg: #3d2042;
    --light-bg: #fff8f5;
    --text-dark: #3d2042;
    --text-light: #ffffff;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none !important;
}

a, button, input, select, textarea {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: linear-gradient(135deg, rgba(61, 32, 66, 0.97), rgba(80, 35, 70, 0.97));
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav a {
    color: var(--text-light);
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active-nav {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('WhatsApp%20Image%202026-04-10%20at%2010.51.47%20PM.jpeg') center top / cover no-repeat;
    color: var(--text-light);
    text-align: center;
    margin-top: -80px;
    /* Offset for sticky header */
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero button, .hero-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(254, 129, 212, 0.4);
}

.hero button:hover, .hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(254, 129, 212, 0.6);
    color: var(--text-light);
}

section {
    padding: 100px 5%;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--dark-bg);
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 20%;
    border-radius: 2px;
}

/* Services section */
#services {
    background: #ffffff;
}

.cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: nowrap;
}

.card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px 20px;
    flex: 1;
    min-width: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: transform var(--transition-speed);
}

.card:hover i {
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: #666;
    font-size: 1.05rem;
}

/* ---- Creative Pet Tinting Section ---- */
.tinting-section {
    background: linear-gradient(135deg, rgba(254, 129, 212, 0.06), rgba(255, 234, 187, 0.1));
    padding: 100px 5%;
    text-align: center;
}

.tinting-container {
    max-width: 1100px;
    margin: 0 auto;
}

.tinting-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tinting-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FE81D4, #FFEABB);
    color: #3d2042;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 25px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tinting-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.tinting-header h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.tinting-header h2::after {
    display: none;
}

.tinting-subtitle {
    font-size: 1.15rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.tinting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.tinting-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 129, 212, 0.1);
}

.tinting-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(254, 129, 212, 0.15);
    border-color: rgba(254, 129, 212, 0.25);
}

.tinting-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(254, 129, 212, 0.12), rgba(255, 234, 187, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.tinting-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tinting-info-card p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
}

.tinting-info-card p strong {
    color: var(--text-dark);
}

/* Color Chips */
.tinting-colors {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.tinting-colors h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.tinting-colors h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.color-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.color-chip {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.color-chip:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.color-chip span {
    display: block;
    width: 100%;
    padding: 6px 4px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
}

.color-disclaimer {
    font-size: 0.9rem;
    color: #a0aec0;
    font-style: italic;
    margin-top: 15px;
}

.color-disclaimer i {
    color: var(--secondary-color);
    margin-right: 5px;
}

@media (max-width: 600px) {
    .tinting-header h2 {
        font-size: 1.8rem;
    }

    .color-chip {
        width: 80px;
        height: 80px;
        border-radius: 14px;
    }

    .tinting-colors {
        padding: 25px 15px;
    }
}

/* About Section */
#about {
    background: linear-gradient(135deg, #FE81D4, #FAACBF);
    color: var(--text-light);
}

#about h2 {
    color: var(--text-light);
}

#about h2::after {
    background: rgba(255, 255, 255, 0.8);
}

.about-container {
    max-width: 800px;
    margin: auto;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Interactive Gallery */
.interactive-gallery-section {
    background: var(--light-bg);
    padding: 80px 5%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
}

.gallery-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 550px;
}

/* Main Card */
.main-card {
    flex: 1.6;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background-color: var(--dark-bg);
    height: 550px;
}

.main-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.6s ease;
    opacity: 1;
}

.main-card.fading img {
    opacity: 0.8;
    transform: scale(1.03);
}

.main-card-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.main-card.fading .main-card-overlay {
    transform: translateY(15px);
    opacity: 0;
}

.main-card-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.main-card-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Thumbnail List */
.thumbnail-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: calc((550px - 40px) / 3);
    /* 3 rows roughly */
    gap: 15px;
    height: 100%;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom scrollbar for thumbnails */
.thumbnail-list::-webkit-scrollbar {
    width: 6px;
}

.thumbnail-list::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.thumb-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 0;
}

.thumb-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.thumb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thumb-card:hover img {
    transform: scale(1.1);
}

.thumb-card:hover .thumb-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.thumb-card.active {
    box-shadow: 0 0 0 3px var(--primary-color), 0 8px 20px rgba(254, 129, 212, 0.4);
    transform: scale(0.96);
}

.thumb-card.active .thumb-overlay {
    background: transparent;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .gallery-container {
        flex-direction: column;
        height: auto;
    }

    .main-card {
        height: 450px;
        flex: none;
    }

    .thumbnail-list {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        grid-template-columns: none;
        grid-auto-rows: auto;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
    }

    .thumb-card {
        flex: 0 0 160px;
        height: 160px;
        scroll-snap-align: start;
    }
}

@media (max-width: 600px) {
    .main-card {
        height: 350px;
    }

    .main-card-overlay h3 {
        font-size: 1.6rem;
    }

    .main-card-overlay p {
        font-size: 0.95rem;
    }

    .thumb-card {
        flex: 0 0 130px;
        height: 130px;
    }
}

/* Contact Form */
#contact {
    background: var(--light-bg);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

input,
textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fdfdfd;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(254, 129, 212, 0.2);
}

form button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed), transform var(--transition-speed);
}

form button:hover {
    background: #e06cb5;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 25px;
    font-size: 0.95rem;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, rgba(254, 129, 212, 0.06), rgba(255, 234, 187, 0.08));
    position: relative;
    overflow: hidden;
}

.booking-subtitle {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.booking-form {
    max-width: 700px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    padding: 50px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(250, 172, 191, 0.25);
    background: #ffffff;
    outline: none;
}

.form-group input:disabled,
.form-group select:disabled,
.readonly-input {
    background: #e2e8f0;
    cursor: not-allowed;
    border-color: #cbd5e1;
    color: #4a5568;
    font-weight: 600;
}

.form-group select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
    transition: transform 0.2s;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .half {
    flex: 1;
}

.form-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FE81D4, #FAACBF);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(254, 129, 212, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(254, 129, 212, 0.45);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.booking-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.booking-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.booking-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.calendar-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #1a73e8;
    border: 1px solid #dadce0;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.calendar-add-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
    border-color: #d2d2d2;
}

.calendar-add-btn i {
    font-size: 1.1rem;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 5%;
    }

    .cards {
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 100%;
    }

    nav {
        display: none;
        flex-direction: column;
        background: var(--dark-bg);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav a {
        padding: 12px 20px;
        margin: 5px 15px;
        display: block;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    nav a:active, nav a.active-nav {
        background: rgba(254, 129, 212, 0.2);
        color: var(--primary-color) !important;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Booking System Improvements */
.booking-form .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all var(--transition-speed);
    resize: vertical;
    font-family: inherit;
}

.booking-form .form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(250, 172, 191, 0.25);
    background: #ffffff;
    outline: none;
}

.service-mode-group {
    margin-bottom: 25px;
}

.service-mode-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 0.95rem;
}

.radio-group {
    display: flex;
    gap: 30px;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid #edf2f7;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--secondary-color);
    background: white;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-container {
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container.hidden {
    display: none;
    opacity: 0;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #edf2f7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 10px;
    height: 200px;
}

#addressGroup {
    transition: all 0.4s ease;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Booking Message Enhancements */
.booking-message {
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.booking-message.success {
    background: #e6fffa;
    color: #2c7a7b;
    border: 1px solid #b2f5ea;
}

.booking-message.error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

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

@keyframes bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.bump {
    animation: bump 0.3s ease-out;
}

/* Availability Feedback Messages */
.availability-feedback {
    font-size: 0.9rem;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    display: none;
    line-height: 1.4;
    font-weight: 500;
}

.availability-feedback.info {
    display: block;
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
}

.availability-feedback.warning {
    display: block;
    background: #fffaf0;
    color: #9c4221;
    border: 1px solid #feebc8;
}

/* Styling for booked/unavailable slots */
#appointmentTime option:disabled {
    color: #a0aec0;
    background-color: #f7fafc;
    font-style: italic;
}

/* Conditional Alajuela Fields */
.conditional-fields-container {
    background: #f8fafc;
    padding: 20px 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 2px dashed #e2e8f0;
    animation: fadeIn 0.4s ease;
}

.readonly-input {
    background-color: #edf2f7 !important;
    color: #64748b !important;
    cursor: not-allowed;
    border-color: #cbd5e1 !important;
    font-weight: 500;
}

/* --- Cancellation Feature Styles --- */
.cancel-booking-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
    padding: 18px;
    background: linear-gradient(135deg, #FE81D4, #FAACBF);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(254, 129, 212, 0.35);
}

.cancel-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(254, 129, 212, 0.45);
}

.cancellation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cancellation-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cancellation-container {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cancellation-overlay.show .cancellation-container {
    transform: scale(1);
}

.close-cancel-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #718096;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cancel-btn:hover {
    color: var(--primary-color);
}

.cancel-header {
    text-align: center;
    margin-bottom: 30px;
}

.cancel-header h2 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.cancel-header h2::after {
    display: none !important;
}

.cancel-header p {
    color: #718096;
}

.cancel-note {
    background: #fff5f5;
    border-left: 4px solid #feb2b2;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #c53030;
}

/* --- Multi-Cancellation UI Styles --- */
.batch-actions-container {
    display: none;
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.select-all-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

.cancel-selected-btn {
    padding: 10px 20px;
    background: #e11d48;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cancel-selected-btn:hover {
    background: #be123c;
    transform: translateY(-1px);
}

.cancel-selected-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.search-result-card {
    display: flex !important;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    padding: 20px 22px !important;
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 16px !important;
    box-shadow: 0 2px 12px rgba(61, 32, 66, 0.07);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-result-card:hover {
    border-color: rgba(254, 129, 212, 0.4);
    box-shadow: 0 4px 18px rgba(254, 129, 212, 0.15);
}

.card-checkbox-wrapper {
    padding-top: 5px;
}

.card-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.search-result-card .result-info {
    flex: 1;
}

.search-result-card .cancel-action-btn {
    width: auto !important;
    padding: 8px 15px !important;
    font-size: 0.85rem !important;
    margin-top: 10px;
    border-radius: 8px !important;
}

/* ── Flatpickr Custom Theme (Pink & Premium) ────────────────────────────── */
.flatpickr-calendar {
    background: #fff;
    box-shadow: 0 10px 30px rgba(61, 32, 66, 0.15) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(254, 129, 212, 0.2) !important;
    font-family: 'Inter', sans-serif !important;
}

.flatpickr-day.selected, .flatpickr-day.startRange, 
.flatpickr-day.endRange, .flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, .flatpickr-day.selected:focus, 
.flatpickr-day.selected:hover, .flatpickr-day.prevMonthDay.selected, 
.flatpickr-day.nextMonthDay.selected {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 700;
}

.flatpickr-day.today {
    border-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    color: #cbd5e1 !important;
    background: #f1f5f9 !important;
    cursor: not-allowed !important;
    text-decoration: none !important;
    opacity: 0.6;
}

.flatpickr-months .flatpickr-month {
    color: var(--dark-bg);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}

.flatpickr-day:hover {
    background: rgba(254, 129, 212, 0.1) !important;
}

.flatpickr-weekday {
    color: #94a3b8 !important;
    font-weight: 600 !important;
}

/* Fix for altInput styling */
input[data-input].flatpickr-input + input.form-control {
    background: #f8fafc;
}

/* WhatsApp Mandatory Note Styling */
.whatsapp-mandatory-note {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-left: 5px solid #25D366;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.whatsapp-mandatory-note:hover {
  transform: translateY(-2px);
}

.whatsapp-mandatory-note .note-icon {
  background: #25D366;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-mandatory-note .note-content h4 {
  margin: 0 0 5px 0;
  color: #2e7d32;
  font-size: 1.1rem;
  font-weight: 700;
}

.whatsapp-mandatory-note .note-content p {
  margin: 0;
  color: #455a64;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .whatsapp-mandatory-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }
  
  .whatsapp-mandatory-note .note-icon {
    margin-bottom: 10px;
  }
}

/* Store Capacity Notice Styling */
.store-capacity-notice {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border-left: 5px solid #ffa000;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.store-capacity-notice:hover {
  transform: translateY(-2px);
}

.store-capacity-notice .note-icon {
  background: #ffa000;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 160, 0, 0.3);
}

.store-capacity-notice .note-content h4 {
  margin: 0 0 5px 0;
  color: #b26a00;
  font-size: 1.1rem;
  font-weight: 700;
}

.store-capacity-notice .note-content p {
  margin: 0;
  color: #5d4037;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .store-capacity-notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }
  
  .store-capacity-notice .note-icon {
    margin-bottom: 10px;
  }
}