/* ================================
   CSS VARIABLES & GLOBAL STYLES
   ================================ */
:root {
    --primary-color: #1a1a2e;
    --primary-hover: #16213e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --text-primary: #2d2d2d;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e5e7eb;
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

/* ================================
   NAVIGATION
   ================================ */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 24px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 8px;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--bg-secondary);
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 8px;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-book {
    background: var(--accent-color);
    color: white;
    font-weight: 600;
}

.btn-book:hover {
    background: #d63851;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.8)), 
                linear-gradient(45deg, #f8fafc, #e2e8f0);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-location {
    font-size: 1.125rem;
    margin-bottom: 48px;
    opacity: 0.85;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.scroll-indicator {
    margin-top: 64px;
    opacity: 0.7;
}

.scroll-indicator a {
    color: white;
    text-decoration: none;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ================================
   SECTIONS
   ================================ */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-primary);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 24px;
}

.about-features {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-icon {
    background: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-card {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.about-card h3 {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ================================
   XL VEHICLE TOGGLE
   ================================ */
.xl-toggle-container {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.xl-toggle-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.xl-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.xl-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.xl-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.xl-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .xl-slider {
    background-color: var(--primary-color);
}

input:checked + .xl-slider:before {
    transform: translateX(26px);
}

.xl-toggle-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.xl-toggle-option {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.xl-toggle-option.active {
    background: var(--primary-color);
    color: white;
}

.xl-toggle-option.inactive {
    color: var(--text-light);
}

/* ================================
   SERVICES GRID
   ================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.375rem;
}

.service-description {
    margin-bottom: 32px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-price {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.service-price.updating {
    transform: scale(1.05);
    color: var(--accent-color);
}

.combo-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #10b981;
}

.combo-savings {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: #10b981;
    font-weight: 600;
}

.maintenance-note {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #e74c3c;
    font-weight: 600;
}

.featured-subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

/* Combo Card Styles */
.service-card.combo-card {
    border: 2px solid #10b981;
}

.service-card.combo-card::before {
    background: #10b981;
}

.service-card.combo-card .service-icon {
    background: #10b981;
    color: white;
}

/* Featured Card Styles */
.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.service-card.featured::before {
    background: var(--accent-color);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card.featured .service-price {
    color: white;
}

.service-card.featured .service-price.updating {
    color: #fbbf24;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Popular Add-ons */
.popular-addons {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.addons-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.addons-title::before {
    content: "⭐";
    font-size: 0.8rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px dotted var(--border-color);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-name {
    font-weight: 500;
}

.addon-price {
    font-weight: 600;
    color: var(--primary-color);
}

.service-card.featured .addons-title {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .addon-item {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-card.featured .addon-price {
    color: rgba(255, 255, 255, 0.95);
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.coming-soon-section p {
    margin: 0;
    font-size: 1.1rem;
    color: #000000;
    opacity: 0.8;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ================================
   GALLERY
   ================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

.gallery-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border: 3px solid #707070;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.gallery-placeholder:hover img {
    border-color: var(--primary-color);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-placeholder:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay-text {
    font-weight: 600;
    text-align: center;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h3 {
    margin-bottom: 32px;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.contact-icon {
    background: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact CTA Card */
.contact-cta-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-cta-card h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
    text-align: center;
    font-size: 1.75rem;
}

.cta-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.cta-btn {
    padding: 16px 24px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-info {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.quick-info h4 {
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.info-text small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.service-highlight {
    background: linear-gradient(135deg, var(--accent-color), #d63851);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.highlight-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.highlight-icon {
    font-size: 1.125rem;
}

.service-highlight p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* ================================
   BOOKING PAGE
   ================================ */
.booking-page {
    padding-top: 120px;
    padding-bottom: 96px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.booking-header {
    text-align: center;
    margin-bottom: 48px;
}

.booking-form {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.booking-form h3 {
    margin-bottom: 32px;
    color: var(--text-primary);
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Date Input Styling */
.form-group input[type="date"] {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    position: relative;
    color: var(--text-primary);
    font-weight: 500;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="date"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1), var(--shadow-md);
    transform: translateY(-1px);
}

.form-group input[type="date"]:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background: var(--primary-color);
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper::before {
    content: "📅";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    pointer-events: none;
    z-index: 1;
}

.date-input-wrapper input[type="date"] {
    padding-left: 48px;
}

/* Service Selection Styling */
#booking-service {
    font-size: 1rem;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

#booking-service:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#booking-service optgroup {
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 0 4px 0;
    font-size: 0.9rem;
}

#booking-service option {
    padding: 8px 12px;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.95rem;
}

#booking-service optgroup option {
    padding-left: 20px;
}

/* Service Pricing Display */
.service-pricing-display {
    margin-top: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-pricing-display.show {
    display: block !important;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-weight: 600;
    color: var(--text-primary);
}

.service-price-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-description-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}
/* Address Validation Styles */
.location-input-container { 
    position: relative; 
}

#booking-location.valid { 
    border-color: #10b981; 
    background-color: #f0fdf4; 
}

#booking-location.invalid { 
    border-color: #ef4444; 
    background-color: #fef2f2; 
}

.validation-icon { 
    position: absolute; 
    right: 12px; 
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 18px; 
    pointer-events: none; 
}

.validation-message { 
    margin-top: 8px; 
    font-size: 14px; 
    font-weight: 500; 
    min-height: 20px; 
}

.validation-message.success { color: #10b981; }
.validation-message.error { color: #ef4444; }
.validation-message.warning { color: #f59e0b; }

.autocomplete-dropdown { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: white; 
    border: 1px solid #d1d5db; 
    border-top: none; 
    border-radius: 0 0 8px 8px; 
    max-height: 300px; 
    overflow-y: auto; 
    z-index: 1000; 
    display: none; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); 
}

.autocomplete-item { 
    padding: 12px 16px; 
    cursor: pointer; 
    border-bottom: 1px solid #f3f4f6; 
    font-size: 14px; 
    transition: background-color 0.1s; 
}

.autocomplete-item:hover, 
.autocomplete-item.highlighted { 
    background-color: #f9fafb; 
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.address-main { 
    font-weight: 500; 
    color: #1f2937; 
}

.address-details { 
    font-size: 12px; 
    color: #6b7280; 
    margin-top: 2px; 
}

.loading { opacity: 0.7; }

.no-results { 
    padding: 12px 16px; 
    font-size: 14px; 
    color: #6b7280; 
    text-align: center; 
    font-style: italic; 
}

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.addon-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.addon-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.addon-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.05), rgba(15, 52, 96, 0.08));
    transform: translateY(-1px);
}

.addon-card.selected::after {
    content: "✓";
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.addon-icon {
    font-size: 1.1rem;
}

.addon-card .addon-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.addon-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}

.addon-helper-text {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-top: 12px;
    display: block;
}

/* Price Estimate */
.price-estimate {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 24px;
    border-radius: 12px;
    color: white;
    text-align: center;
    display: none;
}

.price-estimate h4 {
    margin-bottom: 12px;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-breakdown {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-note {
    display: block;
    margin-top: 12px;
    opacity: 0.8;
    font-size: 0.85rem;
}

.location-note {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-top: 8px;
    display: block;
}

/* Service Info Box */
.service-info-box {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-info-box h4 {
    margin-bottom: 16px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.service-info-box ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Booking Submit Button */
.booking-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.125rem;
}

.contact-backup {
    text-align: center;
    margin-top: 16px;
    color: var(--text-secondary);
}

.contact-backup small {
    color: var(--text-secondary);
}

.contact-backup a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-backup a:hover {
    text-decoration: underline;
}

/* ================================
   FOOTER
   ================================ */
footer {
    background: var(--primary-color);
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-book-btn {
    margin-top: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    justify-content: flex-start;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    padding: 6px;
}

.social-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.social-icon:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.footer-section:last-child {
    text-align: center;
}

.footer-section:last-child .social-icons {
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   MOBILE CONTACT BAR
   ================================ */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 16px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-contact-buttons {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-contact-btn:first-child {
    background: var(--accent-color);
}

.mobile-contact-btn:first-child:hover {
    background: #d63851;
}

/* ================================
   PAGE TRANSITIONS
   ================================ */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* ================================
   SUCCESS MESSAGE
   ================================ */
.success-message {
    background: #10b981;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: none;
}

.success-message.show {
    display: block;
}

/* ================================
   LIGHTBOX
   ================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: default;
    max-width: 900px;
    max-height: 80vh;
    margin: 40px;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.lightbox-image {
    display: block;
    max-width: 900px;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-caption {
    background: white;
    padding: 20px 24px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.lightbox-counter {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    z-index: 2001;
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* ================================
   ANIMATIONS
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    section {
        padding: 64px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mobile-contact-bar {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .contact-form,
    .about-card,
    .booking-form {
        padding: 32px 24px;
    }

    .xl-toggle-container {
        padding: 20px 16px;
    }
    
    .xl-toggle-labels {
        gap: 12px;
    }
    
    .xl-toggle-option {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .addons-title {
        font-size: 0.85rem;
    }
    
    .addon-item {
        font-size: 0.8rem;
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .addon-card {
        padding: 10px 8px;
        min-height: 65px;
    }
    
    .addon-title {
        font-size: 0.8rem;
    }
    
    .addon-card .addon-price {
        font-size: 0.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Lightbox Mobile */
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
        margin: 20px;
    }
    
    .lightbox-image {
        max-width: 100%;
        max-height: 65vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .lightbox-counter {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        padding: 14px 24px;
    }

    /* Lightbox Small Mobile */
    .lightbox-content {
        margin: 10px;
        border-radius: 8px;
        max-height: 90vh;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
    
    .lightbox-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .lightbox-prev {
        left: 8px;
    }
    
    .lightbox-next {
        right: 8px;
    }
    
    .lightbox-caption {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .lightbox-counter {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* ================================
   ACCESSIBILITY
   ================================ */
.lightbox[aria-hidden="true"] {
    display: none !important;
}

.lightbox-nav[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .lightbox,
    .lightbox-close,
    .lightbox-nav {
        transition: none;
    }
}


/*====================================
LOCATION CHECK
====================================*/
