/**
 * Delhi Motors - Main Stylesheet
 * Converted from React/Tailwind to Pure CSS
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Colors */
    --color-primary: #1e2a4a;
    --color-secondary: #2d3e5f;
    --color-accent: #ff7a00;
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-warning: #f59e0b;
    --color-green-light: #00dc82;
    
    /* Text Colors */
    --color-text-primary: #1e2a4a;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-text-white: #ffffff;
    
    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-muted: #f3f4f6;
    --color-bg-dark: #1e2a4a;
    
    /* Border */
    --color-border: #e5e7eb;
    
    /* Spacing */
    --container-max-width: 1280px;
    --container-padding: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ==================== Container ==================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==================== Typography ==================== */
.text-accent {
    color: var(--color-accent);
}

.text-success {
    color: var(--color-success);
}

.text-primary {
    color: var(--color-primary);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

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

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #2d3e5f;
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background-color: #e66d00;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.btn-success {
    background-color: var(--color-success);
    color: white;
}

.btn-success:hover {
    background-color: #059669;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-white {
    background-color: white;
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

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

.btn-block {
    width: 100%;
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-2xl);
}

.navbar.scrolled .nav-link {
    color: var(--color-primary);
}

.navbar .nav-link {
    color: white;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.nav-logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.nav-logo-icon:hover {
    transform: rotate(15deg);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: 0.05em;
}

.navbar.scrolled .nav-logo-title {
    color: var(--color-primary);
}

.nav-logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.025em;
}

.navbar.scrolled .nav-logo-subtitle {
    color: var(--color-text-secondary);
}

.mobile-menu-toggle {
    display: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-fast);
}

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.navbar .mobile-menu-toggle {
    color: white;
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--color-primary);
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 122, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgba(30, 42, 74, 0.98);
        backdrop-filter: blur(16px);
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        z-index: 40;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .nav-menu .nav-link {
        color: white !important;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        transition: all 0.2s;
        font-weight: 500;
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(255, 122, 0, 0.1);
        color: var(--color-accent) !important;
    }
    
    .nav-menu .btn-book-now {
        background: linear-gradient(135deg, var(--color-accent), #ff9933);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0.625rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        margin-top: 0.5rem;
    }
    
    .nav-menu .btn-book-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
    }
}

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

.nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-accent);
}

.btn-book-now {
    background: linear-gradient(135deg, var(--color-accent), #ff9933);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-accent);
}

/* ==================== Hero Section ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
    z-index: 1;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 42, 74, 0.9), rgba(30, 42, 74, 0.7), rgba(30, 42, 74, 0.5));
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 42, 74, 0.6), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 64rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 122, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 122, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    color: white;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.025em;
    font-weight: 700;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
        font-weight: 700;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-mouse::before {
    content: '';
    width: 0.25rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.125rem;
    animation: pulse 2s infinite;
}

/* ==================== Section Styles ==================== */
.section {
    padding: 2.5rem 0;
    position: relative;
    isolation: isolate;
}

@media (min-width: 1024px) {
    .section {
        padding: 3.5rem 0;
    }
}

.section-white {
    background-color: var(--color-bg-white);
}

.section-muted {
    background-color: var(--color-bg-muted);
}

.section-dark {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.section-gradient {
    background: linear-gradient(to bottom right, var(--color-bg-muted), var(--color-bg-white));
}

.section-primary-gradient {
    background: linear-gradient(to bottom right, var(--color-primary), var(--color-secondary));
    position: relative;
    overflow: hidden;
}

.section-primary-gradient::before,
.section-primary-gradient::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
}

.section-primary-gradient::before {
    top: 0;
    left: 0;
    background-color: rgba(255, 122, 0, 0.05);
}

.section-primary-gradient::after {
    bottom: 0;
    right: 0;
    background-color: rgba(16, 185, 129, 0.05);
}

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

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 122, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: 500;
    font-size: 0.875rem;
}

.section-badge.badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.section-badge.badge-accent {
    background-color: var(--color-accent);
    color: white;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 10px 25px -5px rgba(255, 122, 0, 0.3);
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    font-weight: 700;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
        font-weight: 700;
    }
}

.section-description {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== Offers Section ==================== */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.offer-card {
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.offer-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-0.5rem);
}

.offer-image {
    position: relative;
    height: 8rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .offer-image {
        height: 9rem;
    }
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.offer-image-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
}

.offer-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background-color: var(--color-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.875rem;
}

.offer-content {
    padding: 1rem;
}

@media (min-width: 1024px) {
    .offer-content {
        padding: 1.25rem;
    }
}

.offer-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.offer-description {
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.875rem;
    line-height: 1.5;
}

.view-details-btn {
    width: 100%;
}

/* ==================== Service Categories Grid ==================== */
.service-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .service-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .service-categories-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
}

.category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--color-accent);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    width: 40px;
    height: 40px;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.category-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 3rem;
}

.category-view-btn {
    width: 100%;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-view-btn {
    background: var(--color-accent);
    transform: scale(1.02);
}

/* ==================== Features Grid ==================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.feature-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all var(--transition-normal);
}

@media (min-width: 1024px) {
    .feature-card {
        padding: 1.5rem;
    }
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-0.25rem);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.icon-accent {
    background: linear-gradient(to bottom right, rgba(255, 122, 0, 0.2), rgba(16, 185, 129, 0.2));
}

.feature-icon.icon-success {
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.2), rgba(255, 122, 0, 0.2));
}

.feature-icon.icon-primary {
    background: linear-gradient(to bottom right, rgba(30, 42, 74, 0.2), rgba(255, 122, 0, 0.2));
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent);
}

.feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.feature-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* ==================== Testimonials ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-card {
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem 1rem 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all var(--transition-normal);
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 1.5rem 1.25rem 1.25rem 1.25rem;
    }
}

.testimonial-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-0.5rem);
}

.quote-icon {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.quote-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.star-filled {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent);
    fill: var(--color-accent);
}

.testimonial-text {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.testimonial-author {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.author-name {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-car {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.author-location {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.trust-badge-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-bg-white);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
}

.trust-stat {
    text-align: center;
}

.trust-value {
    font-size: 1.875rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.trust-divider {
    width: 1px;
    height: 3rem;
    background-color: var(--color-border);
}

/* ==================== Franchise Section ==================== */
#franchise {
    position: relative;
    isolation: isolate;
}

.franchise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .franchise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.franchise-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: visible;
    box-shadow: var(--shadow-2xl);
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .franchise-image-wrapper {
        margin-bottom: 3rem;
    }
}

.franchise-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 1rem;
}

@media (min-width: 1024px) {
    .franchise-image {
        height: 550px;
    }
}

.franchise-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 42, 74, 0.8), transparent);
}

.free-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background-color: var(--color-success);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    transform: rotate(-3deg);
}

@media (min-width: 1024px) {
    .free-badge {
        top: 2rem;
        left: 2rem;
        padding: 1rem 2rem;
    }
}

.free-badge-text {
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .free-badge-text {
        font-size: 2.25rem;
    }
}

.free-badge-sub {
    font-size: 0.875rem;
    opacity: 0.9;
}

.coming-soon-ribbon {
    position: absolute;
    top: 1.5rem;
    right: 0;
    z-index: 10;
    background-color: var(--color-accent);
    color: white;
    padding: 0.625rem 1.75rem;
    box-shadow: var(--shadow-xl);
    font-size: 1.125rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .coming-soon-ribbon {
        top: 2rem;
        padding: 0.75rem 2rem;
        font-size: 1.25rem;
    }
}

.franchise-stats {
    position: absolute;
    bottom: -1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    background-color: var(--color-bg-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    padding: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .franchise-stats {
        left: 2rem;
        right: 2rem;
        padding: 1.5rem;
        gap: 1rem;
    }
}

.franchise-stat {
    text-align: center;
}

.franchise-stat-value {
    font-size: 1.75rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.franchise-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.franchise-benefits-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .franchise-benefits-col {
        padding-left: 0;
    }
}

.benefit-card {
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .benefit-card {
        padding: 1.5rem;
    }
}

.benefit-card.benefit-accent {
    background: linear-gradient(to bottom right, rgba(255, 122, 0, 0.05), rgba(16, 185, 129, 0.05));
    border-left: 4px solid var(--color-accent);
}

.benefit-card.benefit-success {
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.05), rgba(255, 122, 0, 0.05));
    border-left: 4px solid var(--color-success);
}

.benefit-card.benefit-primary {
    background: linear-gradient(to bottom right, rgba(30, 42, 74, 0.05), rgba(255, 122, 0, 0.05));
    border-left: 4px solid var(--color-primary);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card.benefit-accent .benefit-icon {
    background-color: rgba(255, 122, 0, 0.2);
}

.benefit-card.benefit-success .benefit-icon {
    background-color: rgba(16, 185, 129, 0.2);
}

.benefit-card.benefit-primary .benefit-icon {
    background-color: rgba(30, 42, 74, 0.2);
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent);
}

.benefit-card.benefit-success .benefit-icon svg {
    color: var(--color-success);
}

.benefit-card.benefit-primary .benefit-icon svg {
    color: var(--color-primary);
}

.benefit-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.benefit-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.franchise-notice {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.notice-text {
    font-size: 1.25rem;
}

/* ==================== App Section ==================== */
.app-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.app-content {
    color: white;
}

.app-title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    font-weight: 400;
}

@media (min-width: 640px) {
    .app-title {
        font-size: 2.5rem;
    }
}

.app-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 40rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.app-feature-icon.icon-accent {
    background-color: rgba(255, 122, 0, 0.2);
}

.app-feature-icon.icon-success {
    background-color: rgba(16, 185, 129, 0.2);
}

.app-feature-icon.icon-primary {
    background-color: rgba(30, 42, 74, 0.2);
}

.app-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.app-feature-icon.icon-accent svg {
    color: var(--color-accent);
}

.app-feature-icon.icon-success svg {
    color: var(--color-success);
}

.app-feature-icon.icon-primary svg {
    color: var(--color-primary);
}

.app-feature-title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.app-feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.app-image {
    position: relative;
}

.app-phone-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.3), rgba(16, 185, 129, 0.3));
    border-radius: 3rem;
    filter: blur(60px);
}

.app-phone {
    position: relative;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    aspect-ratio: 9 / 19;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 2rem;
    padding: 0.625rem;
    box-shadow: var(--shadow-2xl);
}

.app-phone-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.app-phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 74, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-text {
    color: white;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.coming-soon-text svg {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

.coming-soon-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.app-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ==================== Contact Form ==================== */
.contact-form-wrapper {
    max-width: 40rem;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    padding: 1.25rem;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 1.75rem;
    }
}

.contact-form-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    letter-spacing: -0.025em;
    font-weight: 700;
}

.form-description {
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: var(--color-success);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    margin-bottom: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-label svg {
    width: 1rem;
    height: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background-color: var(--color-bg-muted);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-success {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-success);
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.success-message {
    color: var(--color-text-secondary);
}

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

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.pulse-dot-small {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.footer-col-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-quick-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 122, 0, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.footer-contact-item:hover .footer-contact-icon {
    background-color: rgba(255, 122, 0, 0.3);
}

.footer-contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
}

.footer-contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-whatsapp-btn {
    width: 100%;
    background-color: var(--color-success);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-whatsapp-btn:hover {
    background-color: #059669;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.footer-whatsapp-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-whatsapp-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-whatsapp-text {
    font-size: 1rem;
}

.footer-social-section {
    margin-top: 0.5rem;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-accent);
    transform: scale(1.1);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

/* ==================== Floating WhatsApp ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 2rem;
    height: 2rem;
}

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

/* ==================== Modal ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-in-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.modal-content {
    background-color: var(--color-bg-white);
    border-radius: 1rem;
    max-width: 56rem;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.3s ease-in-out;
}

.modal-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-height: 85vh;
}

.modal-left-section {
    display: flex;
    flex-direction: column;
}

.modal-image-container {
    position: relative;
    height: 250px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.modal-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.modal-package-title {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.modal-package-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.modal-book-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.modal-right-section {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.modal-features-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: sticky;
    top: 0;
    background: white;
    padding-bottom: 0.5rem;
    z-index: 1;
}

.modal-features-title svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.modal-features-list {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.modal-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.modal-features-list li svg {
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--color-danger);
    color: white;
}

/* ==================== Modal Split Layout (Image Left, Accordion Right) ==================== */

.modal-split-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    height: 80vh;
    max-height: 600px;
    overflow: hidden;
}

/* Left Side - Fixed Image & Book Button */
.modal-left-side {
    background: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-right: 1px solid var(--color-border);
    height: 100%;
    overflow: hidden;
}

.modal-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-category-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.modal-price-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3);
}

.modal-service-title-section {
    flex: 1;
}

.modal-service-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.modal-service-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.modal-left-book-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.modal-left-book-btn:hover {
    background: #e66b00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.3);
}

.modal-left-book-btn i {
    width: 22px;
    height: 22px;
}

/* Right Side - Scrollable Accordion */
.modal-right-side {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
    height: 100%;
    overflow: hidden;
}

.modal-right-header {
    padding: 1.5rem 2rem;
    background: white;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.modal-right-title {
    font-size: 1.25rem;
    color: var(--color-accent);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.modal-right-title i {
    width: 24px;
    height: 24px;
}

.modal-accordion-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem 2rem;
    min-height: 0;
}

/* Custom Scrollbar */
.modal-accordion-scroll::-webkit-scrollbar {
    width: 8px;
}

.modal-accordion-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-accordion-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.modal-accordion-scroll::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Accordion Styles */
.service-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 2px solid var(--color-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.accordion-item:hover {
    border-color: rgba(255, 122, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.15);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--color-bg-muted);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, var(--color-accent), #ff8c1a);
}

.accordion-title-section {
    flex: 1;
}

.accordion-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.accordion-item.active .accordion-title {
    color: white;
}

.accordion-price {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.accordion-item.active .accordion-price {
    color: rgba(255, 255, 255, 0.95);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    overflow-y: auto;
    border-top: 1px solid var(--color-border);
}

/* Accordion content scrollbar */
.accordion-content::-webkit-scrollbar {
    width: 6px;
}

.accordion-content::-webkit-scrollbar-track {
    background: transparent;
}

.accordion-content::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 3px;
}

.accordion-content::-webkit-scrollbar-thumb:hover {
    background: #cbd5e0;
}

.accordion-body {
    padding: 1.5rem;
}

.accordion-specs-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion-specs-title i {
    color: var(--color-accent);
    width: 20px;
    height: 20px;
}

.accordion-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.accordion-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.accordion-specs-list li i {
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.accordion-book-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.accordion-book-btn:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 122, 0, 0.3);
}

.accordion-book-btn i {
    width: 20px;
    height: 20px;
}

/* ==================== Utilities ==================== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Responsive Utilities ==================== */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-grid-layout {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
        max-height: none;
    }
    
    .modal-right-section {
        max-height: 300px;
    }
    
    /* Category Cards Mobile */
    .service-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .category-icon i {
        width: 32px;
        height: 32px;
    }
    
    .category-title {
        font-size: 1.125rem;
    }
    
    .category-description {
        font-size: 0.813rem;
        min-height: auto;
    }
    
    /* Split Modal Layout Mobile */
    .modal-split-layout {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .modal-left-side {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 1.25rem;
    }
    
    .modal-category-image {
        height: 220px;
    }
    
    .modal-price-overlay {
        padding: 0.375rem 0.875rem;
        font-size: 1rem;
    }
    
    .modal-service-title {
        font-size: 1.25rem;
    }
    
    .modal-service-subtitle {
        font-size: 0.875rem;
    }
    
    .modal-left-book-btn {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .modal-left-book-btn i {
        width: 20px;
        height: 20px;
    }
    
    .modal-right-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-right-title {
        font-size: 1.125rem;
    }
    
    .modal-right-title i {
        width: 20px;
        height: 20px;
    }
    
    .modal-accordion-scroll {
        padding: 1rem 1.5rem;
    }
    
    /* Category Modal Mobile */
    .category-modal-header {
        padding: 1.5rem;
    }
    
    .category-modal-title {
        font-size: 1.5rem;
        gap: 0.75rem;
    }
    
    .category-modal-title i {
        width: 36px;
        height: 36px;
    }
    
    .category-modal-description {
        font-size: 0.875rem;
    }
    
    .category-modal-body {
        padding: 1rem;
        max-height: 60vh;
    }
    
    /* Accordion Mobile */
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-price {
        font-size: 0.813rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .accordion-specs-list li {
        font-size: 0.813rem;
    }
    
    .accordion-book-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.938rem;
    }
    
    /* Chatbot Package Selection Mobile */
    .chatbot-packages-container {
        max-height: 300px;
    }
    
    .package-category-title {
        font-size: 0.938rem;
    }
    
    .package-option-content {
        padding: 0.875rem 1rem;
    }
    
    .package-option-name {
        font-size: 0.813rem;
    }
    
    .package-option-price {
        font-size: 0.938rem;
    }
}

/* ==================== Scroll Behavior ==================== */
html {
    scroll-padding-top: 80px;
}

/* ==================== Floating Service Button ==================== */
.floating-btn-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.floating-service-btn {
    position: relative;
    min-width: 140px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #ff9933);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatPulse 3s ease-in-out infinite;
    border: none;
    padding: 0 1.5rem;
}

.floating-service-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 122, 0, 0.5);
}

.floating-service-btn:active {
    transform: translateY(-2px);
}

.floating-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.floating-btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.floating-btn-text {
    color: white;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    white-space: nowrap;
}

/* Sports Car Image Animation */
.floating-car-animation {
    position: absolute;
    top: -45px;
    left: -250%;
    width: 100px;
    height: 50px;
    animation: carRaceAcross 5s ease-in-out infinite;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.racing-car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.2);
}

/* Speed Trail Effect */
.floating-car-animation::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    animation: speedBlur 6s ease-in-out infinite;
    box-shadow: 0 0 8px var(--color-accent);
}

/* Speed Line 2 */
.floating-car-animation::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 60%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.6), transparent);
    opacity: 0;
    animation: speedBlur 6s ease-in-out infinite 0.1s;
}

/* Ground Shadow */
.floating-btn-wrapper::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    animation: shadowRace 6s ease-in-out infinite;
    z-index: 9;
}

/* Car Racing Animation */
@keyframes carRaceAcross {
    0% {
        left: -250%;
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    5% {
        opacity: 1;
    }
    10% {
        left: -80%;
        transform: translateY(-3px) scale(1.02);
    }
    25% {
        left: 0%;
        transform: translateY(0) scale(1);
    }
    45% {
        left: 80%;
        transform: translateY(-2px) scale(1.01);
    }
    65% {
        left: 180%;
        transform: translateY(0) scale(1);
    }
    85% {
        left: 280%;
        transform: translateY(-1px) scale(1);
    }
    95% {
        opacity: 1;
    }
    100% {
        left: 380%;
        opacity: 0;
        transform: translateY(0) scale(1);
    }
}

/* Speed Blur Effect */
@keyframes speedBlur {
    0%, 15% {
        opacity: 0;
        width: 0;
    }
    20%, 80% {
        opacity: 0.7;
        width: 60px;
    }
    85%, 100% {
        opacity: 0;
        width: 35px;
    }
}

/* Shadow Racing Effect */
@keyframes shadowRace {
    0%, 5% {
        opacity: 0;
        transform: translateX(-250%) scaleX(0.5);
    }
    10%, 90% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
    95%, 100% {
        opacity: 0;
        transform: translateX(300%) scaleX(0.5);
    }
}

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

@media (max-width: 768px) {
    .floating-btn-wrapper {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-service-btn {
        min-width: 120px;
        height: 54px;
        padding: 0 1.25rem;
    }
    
    .floating-btn-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .floating-btn-text {
        font-size: 0.9375rem;
    }
    
    .floating-car-animation {
        width: 75px;
        height: 38px;
        top: -52px;
    }
    
    .floating-btn-wrapper::before {
        width: 60px;
    }
}

/* ==================== Chatbot Modal ==================== */
.chatbot-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-in-out;
}

.chatbot-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.chatbot-modal-content {
    background-color: var(--color-bg-white);
    border-radius: 1.25rem;
    max-width: 32rem;
    width: 100%;
    max-height: 95vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: auto;
}

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.chatbot-avatar {
    width: 2.75rem;
    height: 2.75rem;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.chatbot-header-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.chatbot-header-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.online-indicator {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chatbot-close {
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.chatbot-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-close svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #f8f9fa;
    background-image: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
                      linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
                      linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 300px;
    max-height: 400px;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    animation: messageSlide 0.4s ease-out;
}

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

.bot-message {
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.chat-message-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-message-avatar svg {
    width: 1.125rem;
    height: 1.125rem;
    color: white;
}

.chat-bubble {
    max-width: 75%;
    padding: 0.875rem 1.125rem;
    border-radius: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.bot-bubble {
    background-color: white;
    color: var(--color-text-primary);
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-bubble {
    background: linear-gradient(135deg, var(--color-accent), #ff9933);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.typing-indicator {
    display: flex;
    gap: 0.375rem;
    padding: 0.875rem 1.125rem;
}

.typing-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-text-muted);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Chatbot Form */
.chatbot-form-container {
    border-top: 1px solid var(--color-border);
    background-color: white;
    padding: 1.25rem 1.5rem;
}

.chatbot-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.chatbot-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chatbot-input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-input-label svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-accent);
}

.chatbot-input,
.chatbot-select,
.chatbot-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    transition: all 0.2s;
    font-family: inherit;
}

.chatbot-input:focus,
.chatbot-select:focus,
.chatbot-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.chatbot-textarea {
    resize: vertical;
    min-height: 80px;
}

.chatbot-submit-btn {
    background: linear-gradient(135deg, var(--color-accent), #ff9933);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    width: 100%;
}

.chatbot-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

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

.chatbot-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chatbot-submit-btn i[data-lucide],
.chatbot-submit-btn svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.chatbot-submit-btn span {
    line-height: 1;
}

/* Chatbot Loader */
.chatbot-loader {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-secondary);
}

.chatbot-loader i {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
    animation: spin 1s linear infinite;
}

.chatbot-loader span {
    display: block;
    font-size: 0.875rem;
}

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

.spin-icon {
    animation: spin 1s linear infinite;
}

/* Chatbot Error */
.chatbot-error {
    text-align: center;
    padding: 2rem;
    color: var(--color-danger);
}

.chatbot-error p {
    margin: 0;
    font-size: 0.875rem;
}

/* Package Selection */
.chatbot-packages-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}

/* New Compact Package Display V2 */
.chatbot-packages-container-v2 {
    max-height: 450px;
    overflow-y: auto;
    padding: 0.5rem;
}

/* Simple Package List */
.chatbot-packages-simple {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
}

.chatbot-packages-simple .package-list-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    background: white;
    transition: all 0.3s ease;
}

.chatbot-packages-simple .package-list-item input[type="radio"] {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-accent);
    margin: 0;
}

.chatbot-packages-simple .package-list-item:hover {
    border-color: var(--color-accent);
    background: rgba(255, 122, 0, 0.05);
}

.chatbot-packages-simple .package-list-item.selected,
.chatbot-packages-simple .package-list-item:has(input:checked) {
    border-color: var(--color-accent);
    background: rgba(255, 122, 0, 0.1);
}

.chatbot-packages-simple .package-list-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.chatbot-packages-simple .package-list-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.chatbot-packages-simple .package-list-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}

/* Single Category View (From Modal) */
.package-single-category {
    padding: 0.5rem;
}

.package-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.package-category-header i {
    width: 24px;
    height: 24px;
}

/* ===== List View for Single Category ===== */
.package-list-view {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-list-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    background: white;
    transition: all 0.3s ease;
}

.package-list-item input[type="radio"] {
    position: absolute;
    left: 1.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-accent);
    margin: 0;
}

.package-list-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 2rem;
}

.package-list-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.package-list-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
}

.package-list-radio-icon {
    display: none;
}

.package-list-item:hover {
    border-color: var(--color-accent);
    background: rgba(255, 122, 0, 0.05);
    transform: translateX(4px);
}

.package-list-item.selected {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 140, 26, 0.05));
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.2);
}

.package-list-item.selected .package-list-name {
    color: var(--color-accent);
}

@media (max-width: 480px) {
    .package-list-item {
        padding: 0.875rem 1rem;
    }
    
    .package-list-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding-left: 1.75rem;
    }
    
    .package-list-name {
        font-size: 0.9375rem;
    }
    
    .package-list-price {
        font-size: 1rem;
    }
}

/* ===== Grid View (keeping for multi-category) ===== */
.package-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .package-grid-compact {
        grid-template-columns: 1fr;
    }
}

.package-card-compact {
    position: relative;
    cursor: pointer;
    display: block;
    border-radius: 0.5rem;
    overflow: hidden;
}

.package-card-compact input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.package-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    background: white;
    transition: all 0.3s ease;
    min-height: 100px;
    justify-content: center;
}

.package-card-compact:hover .package-card-content {
    border-color: var(--color-accent);
    background: rgba(255, 122, 0, 0.05);
    transform: translateY(-2px);
}

.package-card-compact.selected .package-card-content {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(255, 140, 26, 0.1));
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
}

.package-type {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-card-compact.selected .package-type {
    color: var(--color-accent);
}

.package-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
}

.package-check-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--color-success);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
}

.package-check-icon i {
    width: 16px;
    height: 16px;
}

.package-card-compact.selected .package-check-icon {
    display: flex;
}

/* Multi-Category Compact View (From Dashboard) */
.package-category-compact {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.package-category-compact:last-child {
    border-bottom: none;
}

.package-category-title-compact {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--color-bg-muted);
    border-radius: 0.375rem;
}

.package-category-title-compact i {
    color: var(--color-accent);
    width: 18px;
    height: 18px;
}

.package-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

@media (max-width: 480px) {
    .package-grid-row {
        grid-template-columns: 1fr;
    }
}

.package-card-mini {
    position: relative;
    cursor: pointer;
    display: block;
}

.package-card-mini input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.package-mini-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.375rem;
    background: white;
    transition: all 0.3s ease;
}

.package-card-mini:hover .package-mini-content {
    border-color: var(--color-accent);
    background: rgba(255, 122, 0, 0.05);
}

.package-card-mini.selected .package-mini-content {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(255, 140, 26, 0.1));
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.2);
}

.package-mini-type {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.package-card-mini.selected .package-mini-type {
    color: var(--color-accent);
}

.package-mini-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
}

.package-mini-check {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--color-success);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.package-card-mini.selected .package-mini-check {
    display: flex;
}

.package-category {
    margin-bottom: 1.5rem;
}

.package-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--color-border);
}

.package-category-title i {
    color: var(--color-accent);
    width: 20px;
    height: 20px;
}

.package-options {
    display: grid;
    gap: 0.75rem;
}

.package-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.package-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    background: white;
    transition: all 0.3s ease;
}

.package-option:hover .package-option-content {
    border-color: var(--color-accent);
    background: rgba(255, 122, 0, 0.05);
}

.package-option.selected .package-option-content,
.package-option input[type="radio"]:checked + .package-option-content {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 140, 26, 0.1));
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.15);
}

.package-option-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.package-option.selected .package-option-name,
.package-option input[type="radio"]:checked ~ .package-option-content .package-option-name {
    color: var(--color-accent);
}

.package-option-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* Success State */
.chatbot-success {
    text-align: center;
    padding: 2rem 1.5rem;
}

.chatbot-success-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-success), #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.chatbot-success-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.chatbot-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.chatbot-success-message {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .chatbot-modal-content {
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .chat-messages {
        max-height: calc(100vh - 300px);
    }
}

/* ==================== Print Styles ==================== */
@media print {
    .navbar,
    .whatsapp-float,
    .floating-service-btn,
    .chatbot-modal,
    .btn {
        display: none;
    }
}

/* ==================== Animation Classes ==================== */
.animate-spin {
    animation: spin 1s linear infinite;
}

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

/* ==================== App Launch Badge ==================== */
.app-launch-badge {
    animation: float-badge 3s ease-in-out infinite;
}

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

/* Mobile responsive for app badge */
@media (max-width: 768px) {
    .app-launch-badge {
        top: 5.5rem !important;
        right: 0.75rem !important;
    }
    
    .app-launch-badge span {
        font-size: 0.65rem !important;
    }
    
    .app-launch-badge i[data-lucide="smartphone"] {
        width: 0.875rem !important;
        height: 0.875rem !important;
    }
    
    .app-launch-badge .inline-flex {
        padding: 0.25rem 0.5rem !important;
        gap: 0.375rem !important;
    }
}

@media (max-width: 640px) {
    .app-launch-badge {
        top: 5rem !important;
        right: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .app-launch-badge {
        top: 4.75rem !important;
    }
    
    .app-launch-badge span {
        font-size: 0.6rem !important;
    }
}

@media (max-width: 375px) {
    .app-launch-badge {
        top: 4.5rem !important;
        right: 0.375rem !important;
    }
    
    .app-launch-badge span {
        font-size: 0.55rem !important;
    }
    
    .app-launch-badge i[data-lucide="smartphone"] {
        width: 0.75rem !important;
        height: 0.75rem !important;
    }
}

/* ==================== DIAGNOSTIC SERVICES SECTION ==================== */
/* Advanced Diagnostics & Luxury Car Solutions Section */

.section-diagnostic {
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

.badge-diagnostic {
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

/* Diagnostic Cards Grid */
.diagnostic-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .diagnostic-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .diagnostic-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Diagnostic Card */
.diagnostic-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.diagnostic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.diagnostic-card-header {
    padding: 2rem 1.5rem 0 1.5rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.diagnostic-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.diagnostic-icon i[data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 2;
}

.diagnostic-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #fbbf24;
}

.diagnostic-card-body {
    padding: 1.5rem;
    text-align: center;
}

.diagnostic-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.diagnostic-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Diagnostic Disclaimer */
.diagnostic-disclaimer {
    background: #fef9e7;
    border: 1px solid #fbbf24;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
}

.diagnostic-disclaimer i[data-lucide] {
    width: 1.125rem;
    height: 1.125rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.diagnostic-disclaimer span {
    font-size: 0.8125rem;
    color: #78350f;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
}

/* Diagnostic Button */
.btn-diagnostic {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-diagnostic:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.btn-diagnostic i[data-lucide] {
    width: 1.125rem;
    height: 1.125rem;
}

/* ==================== DIAGNOSTIC MODAL (Using Chatbot Modal Styles) ==================== */

/* Diagnostic form specific styles within chatbot modal */
.diagnostic-form-disclaimer {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.diagnostic-form-disclaimer i[data-lucide] {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.diagnostic-form-disclaimer p {
    font-size: 0.875rem;
    color: #065f46;
    line-height: 1.5;
    margin: 0;
}

/* Success bubble in chat */
.success-bubble {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
}

.success-bubble strong {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.success-bubble .btn-sm {
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    background: white;
    color: var(--color-primary);
}

.success-bubble .btn-sm:hover {
    background: #f3f4f6;
}

/* Success Message */
.diagnostic-success-message {
    padding: 3rem 2rem;
    text-align: center;
}

.diagnostic-success-message .success-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.diagnostic-success-message .success-icon i[data-lucide] {
    width: 3rem;
    height: 3rem;
    color: white;
}

.diagnostic-success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.diagnostic-success-message p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .diagnostic-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .diagnostic-modal .modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .diagnostic-modal-header {
        padding: 1.5rem;
    }
    
    .diagnostic-form {
        padding: 1.5rem;
    }
}

