/**
 * Modern Redesign CSS
 * Hero Section & Footer - Matching Reference Design
 */

/* ================================================
   HERO SECTION - MODERN
   ================================================ */
.hero-modern {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: url('/assets/img/hero-taxi.webp') center center / cover no-repeat;
}

/* Dark overlay applied directly via pseudo-element that stretches with content */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.75) 100%);
    z-index: 1;
}

/* Hide the old background/overlay divs - no longer needed */
.hero-modern .hero-background,
.hero-modern .hero-overlay {
    display: none;
}

.hero-modern .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 2rem 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-modern .hero-content-inner {
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(247, 183, 49, 0.12);
    border: 1px solid rgba(247, 183, 49, 0.25);
    border-radius: 50px;
    color: #f7b731;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.hero-badge i {
    font-size: 0.9rem;
}

/* Hero Title */
.hero-title-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-modern .text-accent {
    color: #f7b731;
    display: block;
}

/* Hero Subtitle */
.hero-subtitle-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 0.5rem;
}

/* ================================================
   HERO CARDS - Visual Cards with Images
   ================================================ */
.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0 1.75rem;
    width: 100%;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.hero-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 183, 49, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* Card Image */
.hero-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-card:hover .hero-card-img img {
    transform: scale(1.08);
}

/* Rating Badge on Image */
.hero-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 6px;
    color: #f7b731;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.hero-card-badge i {
    font-size: 0.65rem;
}

/* Price Tag on Image */
.hero-card-price-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.hero-card-price-tag .from-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1;
}

.hero-card-price-tag .price-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f7b731;
    line-height: 1.1;
}

.hero-card-price-tag .price-val small {
    font-size: 0.55rem;
    font-weight: 500;
    opacity: 0.7;
    margin-left: 2px;
    vertical-align: super;
}

/* Card Body */
.hero-card-body {
    padding: 1rem 1.25rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 6px;
    min-height: 2.4em; /* Ensures consistent height for 1-2 line titles */
    line-height: 1.2;
}

.hero-card-body p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1rem;
    line-height: 1.4;
    flex-grow: 1; /* Allows description to take available space */
}

/* Card Button */
.hero-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    background: linear-gradient(135deg, #f7b731 0%, #f5a623 100%);
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto; /* Pushes button to bottom */
    white-space: nowrap;
    min-height: 42px;
    box-sizing: border-box;
}

.hero-card-btn:hover {
    box-shadow: 0 4px 16px rgba(247, 183, 49, 0.35);
    transform: translateY(-1px);
}

.hero-card-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-card-btn:hover i {
    transform: translateX(3px);
}

/* Emerald Green - Day Trips (nature, exploration) */
.hero-card-btn.btn-emerald {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.hero-card-btn.btn-emerald:hover {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

/* Royal Blue - Activity Tours (trust, adventure) */
.hero-card-btn.btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.hero-card-btn.btn-blue:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

/* Hero Trust Strip */
.hero-trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 44px;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'InterVariable', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    line-height: 1;
}

.hero-trust-strip span i {
    color: #22c55e;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section-modern {
    position: relative;
    padding: 80px 2rem;
    background: #0f172a;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, transparent 40%, rgba(247, 183, 49, 0.05) 40%, rgba(247, 183, 49, 0.05) 60%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(247, 183, 49, 0.15);
    border-radius: 50px;
    color: #f7b731;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-section-modern h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-section-modern > .cta-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f7b731;
    margin-bottom: 0.25rem;
}

.stat-item strong i {
    font-size: 0.8em;
    margin-left: 2px;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ================================================
   FOOTER - MODERN
   ================================================ */
.footer-modern {
    background: #0a0f1a;
    color: white;
}

.footer-main {
    padding: 60px 2rem 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #f7b731;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f7b731;
    color: #0a0f1a;
}

/* Footer Columns */
.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f7b731;
}

/* Contact List */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list li i {
    color: #f7b731;
    margin-top: 3px;
    font-size: 0.9rem;
}

.contact-list li a,
.contact-list li span {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-list li a:hover {
    color: #f7b731;
}

/* Footer Bottom */
.footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-modern p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #f7b731;
}

/* ================================================
   RESPONSIVE - MOBILE
   ================================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .hero-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-card-img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-modern .hero-content {
        padding: 70px 1rem 60px;
    }

    .hero-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        gap: 0.65rem;
    }

    .hero-card {
        display: flex;
        flex-direction: row;
        border-radius: 12px;
    }

    .hero-card-img {
        width: 90px;
        height: auto;
        min-height: 90px;
        flex-shrink: 0;
    }

    .hero-card-body {
        padding: 0.65rem 0.9rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-card-body h3 {
        font-size: 0.9rem;
        min-height: unset;
        line-height: 1.25;
        margin-bottom: 0.5rem;
    }

    /* Hide description on mobile — keeps cards compact */
    .hero-card-body p {
        display: none;
    }

    .hero-card-btn {
        padding: 7px 14px;
        font-size: 0.78rem;
        margin-top: 0;
    }

    .hero-card-btn.btn-emerald {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
    }

    .hero-card-btn.btn-blue {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
    }

    /* Hide floating price on mobile — image too narrow to share space */
    .hero-card-price-tag {
        display: none;
    }

    /* Show price as golden text in card body via data-price attribute */
    .hero-card-body[data-price]::before {
        content: "from " attr(data-price);
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        color: #f7b731;
        margin-bottom: 0.3rem;
        letter-spacing: 0.01em;
    }

    .hero-trust-strip {
        gap: 24px;
    }

    .hero-trust-strip span {
        font-size: 13px;
    }

    .hero-trust-strip span i {
        font-size: 15px;
    }

    .cta-stats {
        gap: 1.5rem;
    }

    .stat-item strong {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
        max-width: 100%;
    }

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

    .footer-column {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom-modern {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-subtitle-modern {
        font-size: 0.95rem;
    }

    .hero-cards-grid {
        max-width: 100%;
    }

    .hero-card-img {
        width: 85px;
    }

    .hero-card-body h3 {
        font-size: 0.85rem;
    }

    .hero-card-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero-card-btn.btn-emerald {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
    }

    .hero-card-btn.btn-blue {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: white;
    }

    .hero-trust-strip {
        gap: 16px 24px;
    }

    .hero-trust-strip span {
        font-size: 12px;
    }

    .hero-trust-strip span i {
        font-size: 14px;
    }

    .cta-section-modern {
        padding: 60px 1rem;
    }
}

@media (max-width: 360px) {
    .hero-title-modern {
        font-size: 1.75rem;
    }

    .hero-card-img {
        width: 75px;
    }

    .hero-trust-strip span {
        font-size: 11px;
    }

    .hero-trust-strip span i {
        font-size: 13px;
    }
}

/* ================================================
   SERVICES SECTION - MODERN
   ================================================ */
.services-modern {
    padding: 80px 2rem;
    background: #f8fafc;
}

.section-header-modern {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header-modern h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.section-header-modern p {
    color: #64748b;
    font-size: 1.05rem;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card Modern */
.service-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f7b731;
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.service-badge.blue {
    background: #3b82f6;
    color: white;
}

.service-badge.green {
    background: #22c55e;
    color: white;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-content > p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-features-modern li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-features-modern li i {
    color: #22c55e;
    font-size: 0.8rem;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

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

.price-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.service-rating i {
    color: #f7b731;
    font-size: 0.75rem;
}

.service-rating span {
    color: #64748b;
    font-size: 0.75rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f7b731;
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #e5a82a;
    transform: translateX(3px);
}

.btn-service.blue {
    background: #3b82f6;
    color: white;
}

.btn-service.blue:hover {
    background: #2563eb;
}

.btn-service.green {
    background: #22c55e;
    color: white;
}

.btn-service.green:hover {
    background: #16a34a;
}

/* Services Responsive */
@media (max-width: 992px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-modern {
        padding: 60px 1rem;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .service-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-service {
        justify-content: center;
    }
}
