/* Valet Parking Landing Page Styles */
/* ==================================== */

/* Design Tokens */
:root {
    --color-primary: #2C3E50;
    --color-accent: #27AE60;
    --color-light-bg: #ECF0F1;
    --color-text-dark: #2C2C2C;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-success: #27AE60;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ============================= */
/* Hero Section - Valet Parking */
/* ============================= */

.valet-parking-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.valet-parking-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.valet-parking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.valet-parking-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.valet-parking-hero-text {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.valet-parking-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.valet-parking-hero-description {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.valet-parking-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

/* ============================= */
/* Valet Parking Services Section */
/* ============================= */

.valet-parking-services {
    padding: 6rem 2rem;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Valet Overview Section */
.valet-overview-section {
    margin-bottom: 5rem;
}

.valet-overview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.valet-overview-content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.valet-overview-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.valet-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.valet-highlights li {
    color: var(--color-text-light);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.valet-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.valet-overview-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.valet-overview-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Valet Shifts Header */
.valet-shifts-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 3rem;
}

.valet-shifts-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.valet-shifts-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.valet-service-card {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--color-accent);
}

.valet-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.valet-service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2.5rem 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-info p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--color-text-light);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Valet Value Section */
.valet-value-section {
    margin: 5rem 0;
    padding: 4rem 2rem;
    background-color: var(--color-light-bg);
    border-radius: var(--border-radius);
}

.valet-value-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.valet-value-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    order: 2;
}

.valet-value-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.valet-value-content {
    order: 1;
}

.valet-value-content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.valet-value-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.value-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-point h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-point p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Valet Parking CTA Section */
.valet-parking-cta {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a2332 100%);
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================= */
/* Responsive Design */
/* ============================= */

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .valet-parking-services {
        padding: 4rem 1.5rem;
    }

    .valet-overview-container,
    .valet-value-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .valet-value-image {
        order: 1 !important;
    }

    .valet-value-content {
        order: 2 !important;
    }

    .value-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .valet-parking-services {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .valet-shifts-header h2 {
        font-size: 1.8rem;
    }

    .service-image {
        height: 240px;
    }

    .service-info {
        padding: 2rem 1.5rem;
    }

    .service-info h3 {
        font-size: 1.4rem;
    }

    .valet-overview-content h3,
    .valet-value-content h3 {
        font-size: 1.6rem;
    }

    .valet-highlights {
        grid-template-columns: 1fr;
    }

    .valet-value-section {
        padding: 3rem 1.5rem;
    }

    .valet-parking-cta {
        padding: 3rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .valet-parking-hero-title {
        font-size: 2rem;
    }

    .valet-parking-hero-description {
        font-size: 1rem;
    }

    .valet-parking-hero-buttons {
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .valet-shifts-header h2 {
        font-size: 1.4rem;
    }

    .valet-overview-content h3,
    .valet-value-content h3 {
        font-size: 1.3rem;
    }

    .value-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-point h4 {
        font-size: 1rem;
    }

    .value-point p {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
