/* ================================================
   AURORA, IL - LANDING PAGE STYLES
   Premium Limo Service Landing Page
   ================================================ */

/* Variables */
:root {
    --au-gold: #D4AF37;
    --au-gold-dark: #B8960C;
    --au-bg: #0a0a0a;
    --au-card: #111111;
    --au-text: #ffffff;
    --au-muted: #9ca3af;
    --au-border: rgba(255,255,255,0.08);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.aurora-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    overflow: hidden;
}

.aurora-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aurora-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.aurora-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
}

.aurora-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aurora-hero-text {
    animation: fadeInUp 0.6s ease forwards;
}

.aurora-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--au-text);
}

.gold-text {
    color: var(--au-gold);
}

.aurora-subtitle {
    font-size: 1.1rem;
    color: var(--au-muted);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 500px;
}

.aurora-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-aurora-primary {
    background: linear-gradient(135deg, var(--au-gold), var(--au-gold-dark));
    color: #000;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-aurora-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.btn-aurora-outline {
    background: transparent;
    color: var(--au-text);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--au-border);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-aurora-outline:hover {
    border-color: var(--au-gold);
    color: var(--au-gold);
}

.aurora-trust-badges {
    display: flex;
    gap: 25px;
    padding-top: 30px;
    border-top: 1px solid var(--au-border);
}

.trust-badge-au {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--au-muted);
}

.trust-badge-au i {
    color: var(--au-gold);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* Hero Visual */
.aurora-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.aurora-car-img {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: fadeInRight 0.8s ease forwards;
}

.aurora-driver-img {
    position: absolute;
    right: -30px;
    bottom: 0;
    height: 85%;
    z-index: 3;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

/* ==================== */
/* SERVICES SECTION */
/* ==================== */
.aurora-services-section {
    padding: 80px 0;
    background: var(--au-bg);
}

.aurora-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.aurora-service-card {
    background: var(--au-card);
    border: 1px solid var(--au-border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.aurora-service-card:hover {
    border-color: var(--au-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.service-icon-au {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

.service-icon-au i {
    font-size: 1.6rem;
    color: var(--au-gold);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.8));
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212,175,55,1)) drop-shadow(0 0 40px rgba(212,175,55,0.5));
    }
}

/* Gold Glow Ring Effect */
.service-icon-au::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(212,175,55,0.4);
    animation: ringPulse 2.5s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212,175,55,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

/* Gold Glow Effect for Icons */
.icon-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212,175,55,0.5) 0%, rgba(212,175,55,0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 1;
}

.icon-glow-sm {
    position: absolute;
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, rgba(212,175,55,0.5) 0%, rgba(212,175,55,0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.aurora-service-card:hover .service-icon-au {
    box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.aurora-service-card:hover .service-icon-au i {
    animation: iconGlowHover 0.8s ease-in-out infinite;
}

@keyframes iconGlowHover {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(212,175,55,0.8));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(212,175,55,1)) drop-shadow(0 0 50px rgba(212,175,55,0.6));
    }
}

.aurora-service-card:hover .icon-glow {
    animation: pulseGlowHover 1s ease-in-out infinite;
}

@keyframes pulseGlowHover {
    0%, 100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.8);
        opacity: 1;
    }
}

.service-text-au h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--au-text);
}

.service-text-au p {
    font-size: 0.85rem;
    color: var(--au-muted);
    margin: 0;
}

/* ==================== */
/* FLEET GRID */
/* ==================== */
.aurora-fleet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.aurora-fleet-card {
    background: var(--au-card);
    border: 1px solid var(--au-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.aurora-fleet-card:hover {
    border-color: var(--au-gold);
    transform: translateY(-3px);
}

.fleet-img-au {
    height: 130px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

.fleet-img-au img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

.aurora-fleet-card:hover .fleet-img-au img {
    transform: scale(1.08);
}

.fleet-info-au {
    padding: 15px;
    text-align: center;
}

.fleet-info-au h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--au-text);
}

.fleet-info-au span {
    font-size: 0.8rem;
    color: var(--au-muted);
}

/* ==================== */
/* MAP SECTION */
/* ==================== */
.aurora-map-section {
    padding: 80px 0;
    background: #080808;
}

.aurora-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.aurora-map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--au-border);
    background: var(--au-card);
}

.aurora-map-container iframe {
    width: 100%;
    height: 320px;
    border: none;
    filter: saturate(0.8) brightness(1.05);
    opacity: 0.95;
}

.aurora-map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--au-gold);
    border-radius: 10px;
    padding: 15px 20px;
}

.map-route-au {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--au-text);
    font-size: 0.9rem;
}

.map-route-au:last-child {
    margin-bottom: 0;
}

.map-route-au i {
    color: var(--au-gold);
    margin: 0 10px;
}

.map-route-au strong {
    color: var(--au-gold);
}

.btn-view-route {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
    text-align: center;
}

/* Info Column */
.aurora-info-col h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--au-text);
}

.aurora-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.why-item-au {
    background: var(--au-card);
    border: 1px solid var(--au-border);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s;
}

.why-item-au:hover {
    border-color: var(--au-gold);
}

.why-icon-au {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
}

.why-icon-au::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    animation: ringPulse 3s ease-out infinite;
}

.why-item-au i {
    font-size: 1.8rem;
    color: var(--au-gold);
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.7));
    animation: iconGlow 2.5s ease-in-out infinite;
}

.why-item-au:hover .why-icon-au {
    box-shadow: 0 0 25px rgba(212,175,55,0.3);
}

.why-item-au:hover i {
    animation: iconGlowHover 0.8s ease-in-out infinite;
}

.why-item-au span {
    font-size: 0.85rem;
    color: var(--au-muted);
    line-height: 1.4;
}

.aurora-seo-block {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--au-border);
}

.aurora-seo-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--au-gold);
    margin-bottom: 10px;
}

.aurora-seo-block p {
    font-size: 0.9rem;
    color: var(--au-muted);
    line-height: 1.7;
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.aurora-cta-section {
    padding: 60px 0;
    background: linear-gradient(90deg, var(--au-card), #1a1a1a);
    border-top: 1px solid var(--au-border);
}

.aurora-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aurora-cta-inner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--au-text);
    margin: 0;
}

.aurora-star-deco {
    font-size: 2.5rem;
    color: var(--au-gold);
    opacity: 0.5;
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== */
/* RESPONSIVE - TABLET */
/* ==================== */
@media (max-width: 992px) {
    .aurora-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .aurora-title {
        font-size: 2.8rem;
    }

    .aurora-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .aurora-btns {
        justify-content: center;
    }

    .aurora-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .aurora-hero-visual {
        display: none;
    }

    .aurora-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aurora-fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .aurora-map-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* RESPONSIVE - MOBILE */
/* ==================== */
@media (max-width: 768px) {
    .aurora-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .aurora-title {
        font-size: 2rem;
    }

    .aurora-btns {
        flex-direction: column;
    }

    .btn-aurora-primary,
    .btn-aurora-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .aurora-trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-badge-au {
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
    }

    /* Vertical Service Cards */
    .aurora-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aurora-service-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 15px 20px;
        gap: 15px;
    }

    .service-icon-au {
        margin: 0;
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    .service-text-au p {
        display: none;
    }

    /* Horizontal Scroll Fleet */
    .aurora-fleet-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .aurora-fleet-card {
        min-width: 150px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .fleet-img-au {
        height: 100px;
    }

    /* Map Section */
    .aurora-map-container iframe {
        height: 220px;
    }

    .aurora-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .why-item-au {
        padding: 15px 10px;
    }

    .why-item-au i {
        font-size: 1.4rem;
    }

    .why-item-au span {
        font-size: 0.75rem;
    }

    /* CTA */
    .aurora-cta-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .aurora-cta-inner h2 {
        font-size: 1.5rem;
    }

    .aurora-star-deco {
        display: none;
    }
}

/* ==================== */
/* SCROLLBAR STYLING */
/* ==================== */
.aurora-fleet-grid::-webkit-scrollbar {
    height: 6px;
}

.aurora-fleet-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.aurora-fleet-grid::-webkit-scrollbar-thumb {
    background: var(--au-gold);
    border-radius: 3px;
}
