/* ==========================================================================
   HOME PAGE - Specific Styles
   ========================================================================== */

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Title Slider */
.hero-title-slider {
    position: relative;
    height: 140px;
    margin-bottom: 24px;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin: 0;
}

.hero-title.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Vehicles */
.hero-vehicles {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.hero-vehicle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-vehicle img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.hero-vehicle:hover img {
    transform: scale(1.05);
}

.hero-vehicle span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Google Badge Mobile - Hidden by default on desktop */
.hero-google-badge-mobile {
    display: none;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card h3 svg {
    color: var(--primary);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.hero-floating {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating.top {
    top: -20px;
    right: -20px;
}

.hero-floating.bottom {
    bottom: -20px;
    left: -20px;
    animation-delay: 1.5s;
}

.hero-floating svg {
    color: var(--success);
}

.hero-floating span {
    font-weight: 600;
    color: var(--dark);
}

/* Info Bar */
.info-bar {
    background: var(--dark);
    color: var(--white);
    padding: 16px 0;
}

.info-bar-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.info-item svg {
    color: var(--success);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Savings Banner */
.savings-banner {
    background: var(--gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.savings-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.savings-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.savings-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.savings-amount {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.savings-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Baby Seat Section */
.baby-seat {
    padding: 100px 0;
    background: var(--light);
}

.baby-seat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.baby-seat-image {
    position: relative;
}

.baby-seat-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
}

.baby-seat-features {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.baby-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.baby-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.baby-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.baby-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Vehicles Section */
.vehicles {
    padding: 100px 0;
    background: var(--light);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.vehicle-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.vehicle-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.vehicle-image {
    height: 220px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.vehicle-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.vehicle-info {
    padding: 24px;
}

.vehicle-info h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.vehicle-info p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vehicle-feature {
    padding: 6px 14px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* Guarantees Section */
.guarantees {
    padding: 100px 0;
    background: var(--white);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guarantee-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.guarantee-card.highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, #F0F7FF 100%);
    border-color: var(--primary);
}

.guarantee-badge {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.guarantee-badge svg {
    color: var(--white);
}

.guarantee-badge.accent {
    background: var(--accent);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
}

.guarantee-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.guarantee-card .guarantee-highlight {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.guarantee-card.highlight:nth-child(2) .guarantee-highlight {
    background: var(--accent);
    color: var(--dark);
}

.guarantee-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.review-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.review-stars {
    color: #FFB800;
    font-size: 1.5rem;
}

.review-badge span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Testimonials Slider */
.testimonials-slider {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width: 100%;
    padding: 0 4px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonials-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text);
}

.testimonials-nav button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.testimonials-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonials-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dots span.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* Includes Section */
.includes {
    padding: 100px 0;
    background: var(--light);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.include-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.include-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.include-item span {
    font-size: 0.95rem;
    color: var(--text);
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    text-align: center;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.payment-option {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 280px;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.payment-option h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.payment-option p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .baby-seat-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .testimonials-slide .testimonial-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-title-slider {
        height: 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* Hero vehicles fade in/out on mobile */
    .hero-vehicles {
        justify-content: center;
        position: relative;
        height: 140px;
    }

    .hero-vehicle {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .hero-vehicle.active {
        opacity: 1;
    }

    .hero-vehicle img {
        height: 100px;
    }

    .hero-vehicle span {
        font-size: 0.9rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-floating {
        display: none;
    }

    /* Hide booking iframe on mobile */
    .hero-visual {
        display: none;
    }

    /* Show Google badge on mobile */
    .hero-google-badge-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
        padding: 12px 20px;
        text-decoration: none;
        justify-content: center;
    }

    .hero-google-badge-mobile span {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .hero-google-badge-mobile strong {
        color: var(--dark);
        font-size: 0.95rem;
    }

    .hero-google-badge-mobile small {
        color: var(--text-light);
        font-size: 0.75rem;
    }

    /* Sections padding reduction */
    .features {
        padding: 50px 0;
    }

    .vehicles {
        padding: 50px 0;
    }

    .guarantees {
        padding: 50px 0;
    }

    .reviews {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    /* Include items padding reduction */
    .include-item {
        padding: 2px 20px;
    }

    /* Baby seat centered */
    .baby-seat-content {
        text-align: center;
    }

    .baby-seat-image {
        display: flex;
        justify-content: center;
    }

    .baby-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-bar-content {
        gap: 20px;
    }

    .info-item {
        font-size: 0.85rem;
    }

    .savings-content h2 {
        font-size: 1.75rem;
    }

    .savings-amount {
        font-size: 1.25rem;
    }

    .testimonials-slide {
        grid-template-columns: 1fr;
    }

    .testimonials-slide .testimonial-card:nth-child(2),
    .testimonials-slide .testimonial-card:nth-child(3) {
        display: none;
    }

    .payment-options {
        flex-direction: column;
        align-items: center;
    }

    .payment-option {
        width: 100%;
        max-width: 300px;
    }
}
