/* Global Styles & Variables - Minimalist Premium */
:root {
    --primary-color: #00E4D0;
    /* Crisp Teal */
    --hover-color: #fff;
    --bg-dark: #080808;
    /* Almost black */
    --text-main: #ffffff;
    --text-muted: #999999;
    --font-main: 'Oxanium', sans-serif;
    --spacing-container: 1200px;
    --border-subtle: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 40px;
}

/* Minimalist Button */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    /* Rounded for "modern friendly" clean look */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-main);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-subtle);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: var(--text-main);
    color: #000;
}

/* Minimal Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo span {
    color: var(--primary-color);
}

/* Footer Styles (Moved to Global for Consistency) */
.site-footer {
    background: #000;
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    /* Centered Footer Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 64px;
}

.footer-logo {
    display: inline-block;
    font-size: 2rem;
    /* Larger Logo */
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--primary-color);
}

.brand-desc {
    color: #888;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    /* Wider for centered text */
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}


.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    /* Center Social Icons */
}

/* Removed Unused Footer Links Styles */

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 228, 208, 0.3);
}


.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
        /* Row gap 60px, Col gap 40px */
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .brand-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Services Section Styles (Moved from component) */
.services-section {
    padding: 120px 0;
    background: #080808;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-section .section-label {
    margin-bottom: 20px;
}

.services-section .label-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    max-width: 500px;
    margin: 0 auto;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-category {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered List */
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-number {
    font-size: 2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
    opacity: 0.5;
    font-family: var(--font-main);
    letter-spacing: -2px;
    position: relative;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center Title */
    gap: 12px;
}

.category-icon {
    color: var(--primary-color);
    opacity: 0.9;
}

/* Services Grid - Horizontal Scroll */
.services-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.services-grid::-webkit-scrollbar {
    height: 6px;
}

.services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.services-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.services-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.service-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    position: relative;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 228, 208, 0.15);
}

.service-card:hover .service-book-btn {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 228, 208, 0.2);
}

.service-card.wide {
    grid-column: span 2;
}

/* Service Card Line */
.card-line {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 20px 0;
    /* Balanced spacing */
    opacity: 0.5;
    transition: width 0.3s ease;
}

.service-card:hover .card-line {
    width: 60px;
    opacity: 1;
}

/* Simplified Book Button */
.service-book-btn {
    margin-top: auto;
    /* Pushes to bottom */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border */
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    /* Add "padding on top" interpretation: minimal margin from content above */
    margin-top: 32px;
}

.service-book-btn:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 228, 208, 0.2);
}

.service-card:hover .card-line {
    width: 60px;
    opacity: 1;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.card-desc {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.service-note {
    margin-top: 80px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
}

.note-text {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.note-line {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.note-line.highlight {
    color: var(--primary-color);
}

.note-subtitle {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

@media (max-width: 992px) {
    .service-card.wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-wrapper {
        gap: 48px;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        flex: 0 0 280px;
        padding: 24px 20px;
    }

    .service-note {
        padding: 32px 24px;
    }

    .note-text {
        flex-direction: column;
        gap: 8px;
    }

    .note-line {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================
   Why Section V2 - Fresh Editorial Design
   ============================================ */
.why-section-v2 {
    padding: 140px 0;
    background: #080808;
    position: relative;
}

.why-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side - Header */
.why-header {
    position: sticky;
    top: 120px;
}

.why-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(0, 228, 208, 0.08);
    border-radius: 100px;
}

.why-headline {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.why-headline span {
    color: var(--primary-color);
}

.why-subtext {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #888;
    max-width: 400px;
}

.why-subtext strong {
    color: #fff;
    font-weight: 500;
}

/* Right Side - Values Stack */
.values-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.value-item:first-child {
    padding-top: 0;
}

.value-item:last-child {
    border-bottom: none;
}

.value-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    font-family: var(--font-main);
    flex-shrink: 0;
    width: 80px;
    transition: color 0.4s ease;
}

.value-item:hover .value-number {
    color: rgba(0, 228, 208, 0.15);
}

.value-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.value-item:hover .value-content h3 {
    color: var(--primary-color);
}

.value-content p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Footer Quote */
.why-footer {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 60px 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.why-footer blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    font-style: italic;
    margin: 0;
    letter-spacing: -0.5px;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--primary-color);
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 228, 208, 0.25);
}

.why-cta svg {
    transition: transform 0.3s ease;
}

.why-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive - Why Section V2 */
@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-header {
        position: static;
        text-align: center;
    }

    .why-subtext {
        max-width: 100%;
    }

    .why-headline {
        font-size: 2.6rem;
    }

    .value-item {
        padding: 32px 0;
    }

    .value-number {
        font-size: 3rem;
        width: 60px;
    }
}

@media (max-width: 600px) {
    .why-section-v2 {
        padding: 100px 0;
    }

    .why-wrapper {
        padding: 0 24px;
    }

    .why-headline {
        font-size: 2rem;
    }

    .value-item {
        flex-direction: column;
        gap: 16px;
    }

    .value-number {
        font-size: 2.5rem;
    }

    .why-footer {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px 0;
    }

    .why-footer blockquote {
        font-size: 1.2rem;
    }
}

/* Booking Section Styles */
/* Booking Section Styles */
.schedule-section {
    padding: 120px 0;
    background: var(--primary-color);
    /* Primary Background */
    color: #000;
    /* Black Text for Contrast */
    position: relative;
    overflow: hidden;
}

.schedule-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.schedule-section .section-label {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.schedule-section .label-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    font-weight: 700;
    opacity: 0.6;
}

.schedule-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    /* Black Title */
    margin-bottom: 80px;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* Steps - Simplified Clean Look */
.booking-steps {
    display: flex;
    justify-content: center;
    /* Centered Steps */
    gap: 48px;
    /* Consistent Gap */
    margin-bottom: 80px;
    position: relative;
    text-align: center;
    /* Ensure internal text is centered */
}

/* Connecting Line REMOVED */
.booking-steps::before {
    display: none;
}

.booking-step {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: #000;
    /* Black Circle */
    border: none;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.booking-step:hover .step-circle {
    transform: scale(1.1);
    background: #000;
    color: #fff;
}

.step-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000;
    /* Black Headings */
    margin-bottom: 8px;
}

.step-info p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    /* Dark Grey Text */
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
}

/* Final CTA */
.booking-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.booking-note {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    max-width: 600px;
}

.booking-btn {
    background: #000;
    /* Black Button */
    color: #fff;
    /* White Text */
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-btn:hover {
    transform: translateY(-4px);
    background: #111;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-section {
        padding: 80px 0;
    }

    .schedule-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .booking-steps {
        flex-direction: column;
        gap: 40px;
    }

    .booking-steps::before {
        width: 1px;
        height: 80%;
        left: 50%;
        top: 0;
        bottom: auto;
        transform: translateX(-50%);
    }

    .step-circle {
        margin-bottom: 8px;
    }

    .booking-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Booking Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: var(--bg-dark);
    margin: 2% auto;
    padding: 0;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.close {
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: var(--text-main);
}

.booking-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(0, 228, 208, 0.1);
}

.service-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-btn {
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.service-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 228, 208, 0.1);
}

.service-btn.selected {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.vehicle-btn {
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.vehicle-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 228, 208, 0.1);
}

.vehicle-btn.selected {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.time-slot {
    padding: 10px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: var(--font-main);
}

.time-slot:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 228, 208, 0.1);
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.form-actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header,
    .booking-form {
        padding: 20px;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .form-actions {
        flex-direction: column;
    }
}