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

:root {
    --primary-color: #c41e1e;
    --secondary-color: #1a1a1a;
    --accent-color: #f5a623;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-contact a {
    color: var(--white);
    text-decoration: none;
}

.top-contact a:hover {
    color: var(--primary-color);
}

.top-features {
    display: flex;
    align-items: center;
}

.pet-friendly-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pet-friendly-badge svg {
    flex-shrink: 0;
}

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

.top-social a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.top-social a:hover {
    color: var(--primary-color);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-color);
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu > li > a:hover {
    color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* Vehicles Dropdown - Multi-column */
.vehicles-dropdown {
    min-width: 600px;
    display: flex;
    padding: 1.5rem;
    gap: 2rem;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.dropdown-column ul {
    list-style: none;
}

.dropdown-column ul a {
    padding: 0.4rem 0;
}

.dropdown-column ul a:hover {
    padding-left: 0.5rem;
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #c41e1e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 2rem;
}

.hero-heading {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #f5f5f5;
}

.hero-cta-primary svg {
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Welcome Section */
.welcome {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.welcome p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.service-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-box h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* What We Do Section */
.what-we-do {
    padding: 5rem 0;
    background: var(--white);
}

.what-we-do h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.feature-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Warranty Section */
.warranty {
    padding: 4rem 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.warranty-content {
    max-width: 800px;
    margin: 0 auto;
}

.warranty h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.warranty p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Vehicles Section */
.vehicles-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.vehicles-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.vehicle-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.vehicle-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.vehicle-category ul {
    list-style: none;
}

.vehicle-category li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-light);
    transition: all 0.3s ease;
}

.vehicle-category li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--white);
}

.reviews h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.review-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.review-card h4 {
    text-align: right;
    color: var(--text-light);
    font-weight: 500;
}

.review-summary {
    text-align: center;
    margin-top: 3rem;
}

.rating-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 3rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.rating-badge h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.rating-badge p {
    font-size: 1.1rem;
}

.review-summary > p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.contact-location {
    max-width: 600px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.location-card h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.location-card .phone {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-card .phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.location-card .address {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-card .hours {
    color: var(--text-light);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.map-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: #c41e1e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.footer-social a:hover {
    background: var(--primary-color);
    padding-left: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vehicles-dropdown {
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 3rem;
    }

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

    .hero-description br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .top-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-features {
        width: 100%;
        justify-content: center;
    }

    .pet-friendly-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .dropdown-menu,
    .vehicles-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        display: none;
        padding: 0.5rem 0 0.5rem 1rem;
        background: var(--bg-light);
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .has-dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    .vehicles-dropdown {
        flex-direction: column;
    }

    .cta-button {
        display: none;
    }

    .hero-main {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem;
    }

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

    .section-title,
    .welcome h2,
    .what-we-do h2,
    .reviews h2,
    .warranty h2,
    .vehicles-section h2,
    .contact h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }
}

/* Booking Modal - Shop Genie Style */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    overflow-y: auto;
}

.booking-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 2rem 1rem;
}

.booking-modal-content {
    background: #f5f5f7;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    margin: auto;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

/* Header */
.booking-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    background: var(--white);
    border-radius: 20px 20px 0 0;
}

.booking-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-title-section {
    flex: 1;
    padding: 0 1rem;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.booking-subtitle {
    font-size: 0.95rem;
    color: #86868b;
    font-weight: 400;
}

.booking-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

.booking-close:hover {
    background: var(--bg-light);
}

/* Progress Bar */
.booking-progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #4a90e2;
    transition: width 0.3s ease;
}

/* Booking Steps */
.booking-step {
    display: none;
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.booking-step.active {
    display: block;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Service Cards */
.service-card-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-card,
.preference-card,
.describe-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-card:hover,
.preference-card:hover {
    border-color: #e0e0e0;
}

.service-card.selected {
    background: #e3f2fd;
    border-color: #4a90e2;
}

.describe-card {
    border: 2px solid #e0e0e0;
}

.service-icon,
.preference-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.preference-icon {
    width: 56px;
    height: 56px;
}

.service-details,
.preference-details {
    flex: 1;
}

.service-details h4,
.preference-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.service-details p,
.preference-details p {
    font-size: 0.95rem;
    color: #86868b;
    line-height: 1.4;
    margin: 0;
}

.preference-card {
    padding: 1.5rem;
}

.preference-card.selected {
    background: #e3f2fd;
    border-color: #4a90e2;
}

/* Form Styles */
.booking-form {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #d1d1d6;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer Buttons */
.booking-footer {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 1rem;
    border-radius: 0 0 20px 20px;
}

.btn-add-note {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 2px solid #4a90e2;
    background: var(--white);
    color: #4a90e2;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-note:hover {
    background: #f0f7ff;
}

.btn-next {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: none;
    background: #4a90e2;
    color: var(--white);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-next:hover {
    background: #3a7bc8;
}

.btn-next:disabled {
    background: #d1d1d6;
    cursor: not-allowed;
}

.booking-powered {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #86868b;
    background: #f5f5f7;
    border-radius: 0 0 20px 20px;
}

/* Info Box */
.info-box {
    background: #f0f7ff;
    border-left: 4px solid #4a90e2;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-box a {
    color: #4a90e2;
    font-weight: 600;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Confirmation */
.confirmation-content {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: #34c759;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

.confirmation-message {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #86868b;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.appointment-summary {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.appointment-summary h3 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.summary-item span {
    color: #86868b;
    text-align: right;
    flex: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

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

/* Responsive Booking Modal */
@media (max-width: 768px) {
    .booking-modal.active {
        padding: 0;
        align-items: stretch;
    }

    .booking-modal-content {
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .booking-header {
        border-radius: 0;
    }

    .booking-title {
        font-size: 1.3rem;
    }

    .booking-subtitle {
        font-size: 0.9rem;
    }

    .booking-step {
        padding: 1.25rem;
    }

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

    .booking-footer {
        border-radius: 0;
    }

    .booking-powered {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .service-card,
    .preference-card {
        padding: 1rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon svg,
    .preference-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-details h4,
    .preference-details h4 {
        font-size: 1rem;
    }

    .service-details p,
    .preference-details p {
        font-size: 0.875rem;
    }

    .booking-footer {
        flex-direction: column;
    }

    .btn-add-note,
    .btn-next {
        width: 100%;
    }
}

/* ============================================
   SERVICE DETAILS MODAL
   ============================================ */

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.service-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.service-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    position: relative;
    margin: 40px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

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

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-modal-close:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.service-modal-body {
    padding: 50px 50px 30px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Custom scrollbar for modal body */
.service-modal-body::-webkit-scrollbar {
    width: 8px;
}

.service-modal-body::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.service-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.service-modal-body::-webkit-scrollbar-thumb:hover {
    background: #a01818;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.service-detail-icon {
    font-size: 60px;
    line-height: 1;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-section {
    margin-bottom: 35px;
}

.service-section h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-section h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 20px 0 15px;
}

.service-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-cta-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.service-cta-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-cta-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-feature {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.service-modal-footer {
    display: flex;
    gap: 15px;
    padding: 25px 50px;
    background: var(--bg-light);
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
}

.service-cta-button,
.service-book-button {
    flex: 1;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.service-cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.service-cta-button:hover {
    background: #a01818;
    border-color: #a01818;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 30, 0.3);
}

.service-book-button {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.service-book-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 30, 0.3);
}

/* Hover effect for clickable service boxes */
.clickable-service {
    transition: all 0.3s ease;
}

.clickable-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(196, 30, 30, 0.2);
    border-color: var(--primary-color);
}

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

    .service-modal-content {
        margin: 20px auto;
        border-radius: 8px;
    }

    .service-modal-body {
        padding: 40px 25px 20px;
        max-height: calc(100vh - 150px);
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-detail-icon {
        font-size: 48px;
    }

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

    .service-intro {
        font-size: 1rem;
    }

    .service-section h3 {
        font-size: 1.3rem;
    }

    .service-section h4 {
        font-size: 1.1rem;
    }

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

    .service-modal-footer {
        flex-direction: column;
        padding: 20px 25px;
    }

    .service-cta-button,
    .service-book-button {
        width: 100%;
        padding: 14px 24px;
    }

    .service-modal-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 36px;
        height: 36px;
    }
}
