:root {
    /* Core Colors */
    --bg: #070707;
    /* deep night */
    --ink: #ffffff;
    /* pure white text */
    --muted: #ffffff;
    /* white secondary text */
    --acc: #2596be;
    /* glacier blue */

    /* Extended Color Palette */
    --acc-dark: #2596be;
    /* much darker glacier blue */
    --acc-darker: #2596be;
    /* very dark glacier blue for hover */
    --acc-light: #2596be;
    /* lighter glacier blue */
    --bg-light: #0f0f0f;
    /* slightly lighter background */
    --bg-lighter: #1a1a1a;
    /* even lighter background */
    --bg-brightest: #2a2a2a;
    /* brightest top background */
    --bg-glow: #3a3a3a;
    /* glowing light effect */

    /* Glass Effects */
    --glass-bg: rgba(37, 150, 190, 0.05);
    --glass-border: rgba(37, 150, 190, 0.2);
    --glass-bg-light: rgba(37, 150, 190, 0.1);
    --glass-border-light: rgba(37, 150, 190, 0.3);

    /* Shadows */
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 10px 30px rgba(37, 150, 190, 0.4);
    --shadow-button: 0 8px 25px rgba(37, 150, 190, 0.3);

    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #2596be 100%);
    --gradient-background: linear-gradient(180deg,
            #070707 0%,
            #070707 30%,
            #070707 60%,
            #0d1421 70%,
            #1a237e 100%);
    --gradient-background-opposite: linear-gradient(180deg, 
        #1a237e 0%, 
        #0d1421 30%, 
        #070707 60%, 
        #070707 70%, 
        #1a237e 100%);
    --gradient-text: linear-gradient(135deg, var(--ink) 0%, #2596be 100%);

    /* Typography */
    --font-primary: 'Helvetica', Arial, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-xl: 25px;
    --radius-full: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-background);
    padding: 0.75rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    color: #2596be;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.breadcrumb-separator {
    color: #2596be;
}

.breadcrumb-current {
    color: #ffffff;
    opacity: 0.8;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--acc, #2596be);
    opacity: 1;
}

/* Booking Progress Tracker */
.booking-progress-tracker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--muted);
    transition: all var(--transition-normal);
    text-decoration: none;
    cursor: pointer;
}

.step:hover .step-icon-wrapper {
    border-color: var(--acc);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(37, 150, 190, 0.3);
}

.step:hover .step-label {
    color: var(--acc-light);
}

.step.active:hover .step-icon-wrapper {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(37, 150, 190, 0.5);
}

.step.active:hover .step-label {
    color: var(--acc);
}

.step.active {
    color: var(--acc);
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg-light);
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.step.active .step-icon-wrapper {
    background: var(--acc);
    border-color: var(--acc-light);
    box-shadow: 0 0 15px rgba(37, 150, 190, 0.5);
}

.step-icon {
    font-size: 1.5rem;
    color: var(--ink);
}

.step.active .step-icon {
    color: var(--ink);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--bg-brightest);
    color: var(--acc);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    border: 1px solid var(--acc);
}

.step.active .step-number {
    background: var(--ink);
}

.step-label {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--glass-border);
    max-width: 100px;
}

/* Container Sub */
.section .container-sub {
    background: linear-gradient(var(--gradient-background-opposite));
    position: relative;
    z-index: 1;
}

/* Booking Content Grid */
.booking-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.extra-options-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.section-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
    color: var(--ink);
}

.form-group-modern {
    margin-bottom: var(--spacing-xl);
}

.form-label-modern {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-sm);
    color: var(--ink);
}

.form-control-modern {
    width: 100%;
    padding: var(--spacing-md);
    background: rgba(7, 7, 7, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--ink);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--acc);
    box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.3);
    background: rgba(7, 7, 7, 0.8);
}

.service-category {
    margin-bottom: var(--spacing-xl);
}

.category-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--acc);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: var(--spacing-sm);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--glass-border-light);
}

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

.service-details {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--ink);
}

.service-description {
    font-size: 0.85rem;
    color: var(--muted);
    opacity: 0.8;
}

.service-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.service-price {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--acc);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background: var(--acc);
    border: none;
    border-radius: 50%;
    color: var(--ink);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--acc-light);
    transform: scale(1.1);
}

.quantity-value {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--ink);
    min-width: 20px;
    text-align: center;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.custom-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: rgba(7, 7, 7, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.custom-checkbox:hover .checkmark {
    border-color: var(--acc);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--acc);
    border-color: var(--acc-light);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid var(--ink);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.textarea-modern {
    width: 100%;
    min-height: 120px;
    padding: var(--spacing-md);
    background: rgba(7, 7, 7, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--ink);
    font-size: 1rem;
    resize: vertical;
    transition: all var(--transition-normal);
}

.textarea-modern:focus {
    outline: none;
    border-color: var(--acc);
    box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.3);
    background: rgba(7, 7, 7, 0.8);
}

.action-button-container {
    margin-top: var(--spacing-xl);
    text-align: right;
}

.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--ink);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-button);
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-continue i {
    transition: transform var(--transition-fast);
}

.btn-continue:hover i {
    transform: translateX(4px);
}

/* Ride Summary Panel */
.ride-summary-panel {
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: sticky;
    top: var(--spacing-xl);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--ink);
}

.summary-edit-link {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--acc);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.summary-edit-link:hover {
    color: var(--acc-light);
}

.summary-section {
    margin-bottom: var(--spacing-xl);
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.summary-icon {
    font-size: 1.2rem;
    color: var(--acc);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.summary-item-details {
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--muted);
    opacity: 0.8;
}

.summary-value {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--ink);
}

.pricing-summary {
    border-top: 1px solid var(--glass-border);
    padding-top: var(--spacing-lg);
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.pricing-label {
    font-size: 0.9rem;
    color: var(--muted);
}

.pricing-value {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--ink);
}

.pricing-total {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--glass-border-light);
}

.total-label {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--ink);
}

.total-value {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--acc);
}

.price-variation-note {
    font-size: 0.8rem;
    color: var(--muted);
    opacity: 0.7;
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .booking-content-grid {
        grid-template-columns: 1fr;
    }

    .ride-summary-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-progress-tracker {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .step-connector {
        display: none;
    }

    .extra-options-section, .ride-summary-panel {
        padding: var(--spacing-lg);
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .step-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .step-icon {
        font-size: 1.2rem;
    }

    .step-number {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .service-action {
        flex-direction: column;
        align-items: flex-end;
        gap: var(--spacing-sm);
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #1a237e 0%, #0d1421 30%, #070707 60%, #070707 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(37, 150, 190, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(37, 150, 190, 0.05) 0%, transparent 25%);
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Two-row layout */
.footer-top-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    border-bottom: 1px solid var(--glass-border);
}

.footer-bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
}

.footer-section {
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    color: var(--acc);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-description {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.newsletter-description {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

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

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    position: relative;
    padding-left: var(--spacing-sm);
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--acc);
    transition: width var(--transition-normal);
}

.footer-section a:hover {
    color: var(--acc);
    transform: translateX(var(--spacing-xs));
}

.footer-section a:hover::before {
    width: 12px;
}

/* Cities section */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.city-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.city-column a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid transparent;
}

.city-column a:hover {
    color: var(--acc);
    background: var(--glass-bg-light);
    border-color: var(--glass-border);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    margin-top: var(--spacing-3xl);
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) var(--spacing-xl) 0;
}

.footer-links {
    margin-top: var(--spacing-sm);
}

.footer-link {
    color: var(--muted);
    text-decoration: none;
    margin: 0 var(--spacing-sm);
}

.footer-link:hover {
    color: var(--acc);
}

/* Social Media Section */
.footer-social {
    margin-bottom: var(--spacing-xl);
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--ink);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--acc);
    border-color: var(--acc);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
}

.newsletter-title {
    color: var(--acc) !important;
    margin-bottom: var(--spacing-md) !important;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.newsletter-input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--ink);
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: var(--muted);
}

.newsletter-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--acc);
    color: var(--ink);
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

/* Gradient Section */
.gradient-section {
    background: var(--gradient-background-opposite);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: -1px !important;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(37, 150, 190, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(37, 150, 190, 0.05) 0%, transparent 25%);
    z-index: 0;
    pointer-events: none;
}

.gradient-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 150, 190, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(37, 150, 190, 0.1) 0%, transparent 30%);
    z-index: 0;
    pointer-events: none;
}

.gradient-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gradient-text h2 {
    font-size: 2.25rem;
    font-weight: var(--font-weight-regular);
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--ink) 0%, var(--acc) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text p {
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Apply gradient background to main sections */
.main {
    background: var(--gradient-background-opposite);
    min-height: 100vh;
}

.section {
    background: linear-gradient(var(--gradient-background-opposite)) !important;
    padding: var(--spacing-3xl) 0;
}

.container-sub {
    
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
    border: 1px solid var(--glass-border);
}
/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top-row,
    .footer-bottom-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
