/* Airport Services - Matching Hotel Page Design */

/* Airport Services Page Styles */

/* Hero Section */
.airport-hero {
    position: relative;
    height: 450px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(255, 255, 255, 1) 100%), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 30px;
    /* Offset for navbar */
    margin-bottom: 30px;
}

.airport-hero .hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.airport-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Category Tabs - Same as Hotel */
.category-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding: 5px 0 10px;
}

.tab-btn {
    flex: 1;
    min-width: 200px;
    padding: 20px 25px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.tab-btn i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.tab-btn span {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.tab-btn .count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    color: #666;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 166, 178, 0.15);
}

.tab-btn:hover i {
    transform: scale(1.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 166, 178, 0.25);
}

.tab-btn.active i,
.tab-btn.active span {
    color: white;
}

.tab-btn.active .count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Filters Bar */
.filters-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-item {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 15px;
    gap: 10px;
}

.filter-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.search-filter {
    flex: 1;
    min-width: 250px;
}

.search-filter input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.filter-item select {
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    color: var(--secondary-color);
    padding-right: 10px;
}

.btn-reset {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-reset:hover {
    background: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Provider Selector */
.provider-selector {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.provider-label {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
    white-space: nowrap;
}

.provider-group {
    display: none;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.provider-group.active {
    display: flex;
}

.provider-logo-btn {
    cursor: pointer;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-logo-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 178, 0.15);
}

.provider-logo-btn.selected {
    border-color: var(--primary-color);
    background: rgba(0, 166, 178, 0.05);
    box-shadow: 0 5px 15px rgba(0, 166, 178, 0.2);
}

.provider-logo-btn img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.placeholder-provider {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Services Grid - Match Hotel Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Explicitly no padding on card itself */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
    /* No margin */
    padding: 0;
    /* No padding */
}

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 166, 178, 0.95);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.service-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

.service-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.service-location i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
}

.service-provider i {
    color: var(--accent-color);
}

.service-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.price-amount.free {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.btn-book-service {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-book-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 178, 0.3);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #666;
}

.no-results p {
    font-size: 1rem;
}

/* Hidden cards */
.service-card.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .category-tabs {
        gap: 10px;
    }

    .tab-btn {
        min-width: 150px;
        padding: 15px 18px;
    }

    .tab-btn i {
        font-size: 1.5rem;
    }

    .tab-btn span {
        font-size: 0.85rem;
    }

    .filters-bar {
        flex-direction: column;
    }

    .filter-item,
    .search-filter {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   PROMO BANNER
   ============================================= */
.promo-banner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 36px;
    background: linear-gradient(135deg, #0a1628 0%, #0f2d55 50%, #0a4d68 100%);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 166, 178, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 100, 130, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.promo-banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: center;
    gap: 30px;
    padding: 36px 44px;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 166, 178, 0.2);
    border: 1px solid rgba(0, 166, 178, 0.4);
    color: #4dd9e6;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.promo-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 14px;
}

.promo-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
}

.promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 28px;
}

.promo-features span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-features i {
    color: #4dd9e6;
}

.promo-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-btn-primary {
    display: inline-block;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 166, 178, 0.4);
    white-space: nowrap;
}

.promo-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 166, 178, 0.5);
}

.promo-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.promo-price-old {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.promo-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.promo-price-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Right visual */
.promo-banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-visual {
    position: relative;
    width: 220px;
    height: 220px;
}

.promo-main-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(6px);
}

.promo-card-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    animation: floatCard 3s ease-in-out infinite;
}

.promo-card-float i {
    color: #4dd9e6;
    font-size: 0.95rem;
}

.promo-float-1 {
    top: 10px;
    left: 0;
    animation-delay: 0s;
}

.promo-float-2 {
    bottom: 30px;
    left: 10px;
    animation-delay: 1s;
}

.promo-float-3 {
    top: 30px;
    right: 0;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =============================================
   SPONSORED CARD (inline in grid)
   ============================================= */
.service-card-sponsored {
    border: 2px solid #e8f0fe;
    background: linear-gradient(145deg, #fff 60%, #f0f9fc 100%);
    position: relative;
    overflow: visible;
}

.service-card-sponsored:hover {
    border-color: var(--primary-color);
    box-shadow: 0 16px 45px rgba(0, 166, 178, 0.14);
}

.sponsored-card-inner {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.sponsored-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

.sponsored-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 166, 178, 0.3);
}

.sponsored-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

.sponsored-loc {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.sponsored-desc {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.sponsored-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sponsored-features li {
    font-size: 0.78rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sponsored-features i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.sponsored-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sponsored-from {
    display: block;
    font-size: 0.65rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsored-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.sponsored-unit {
    font-size: 0.75rem;
    color: #aaa;
    margin-left: 2px;
}

.sponsored-btn {
    display: inline-block;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 5px 14px rgba(0, 166, 178, 0.3);
    white-space: nowrap;
}

.sponsored-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 178, 0.4);
}

/* Responsive promo */
@media (max-width: 768px) {
    .promo-banner-content {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .promo-banner-right {
        display: none;
    }
}

/* =============================================
   FEATURED PRODUCT SPOTLIGHT
   ============================================= */
.featured-product {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 36px;
    min-height: 280px;
    background: linear-gradient(125deg, #07112a 0%, #0d2b55 45%, #073d5a 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.fp-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 90% 10%, rgba(0, 166, 178, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 5% 90%, rgba(0, 80, 140, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.fp-overlay {
    position: absolute;
    inset: 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.015'%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");
    pointer-events: none;
}

.fp-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 44px 52px;
}

/* ---- Left side ---- */
.fp-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.fp-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 166, 178, 0.18);
    border: 1px solid rgba(0, 166, 178, 0.4);
    color: #4dd9e6;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
}

.fp-airport-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.fp-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.fp-title em {
    font-style: italic;
    color: #4dd9e6;
}

.fp-tagline {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 400px;
}

.fp-details {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.fp-detail-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.fp-detail-item i {
    color: #4dd9e6;
    font-size: 0.9rem;
}

.fp-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.fp-btn {
    display: inline-block;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(0, 166, 178, 0.45);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.fp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 166, 178, 0.55);
    color: #fff;
}

.fp-price-block {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.fp-price-from {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fp-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.fp-price-unit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Right side ---- */
.fp-right {
    position: relative;
    width: 260px;
    flex-shrink: 0;
}

.fp-visual-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.fp-vc-img {
    height: 110px;
    background: linear-gradient(135deg, rgba(0, 166, 178, 0.3), rgba(0, 80, 140, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-vc-icon {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.fp-vc-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fp-vc-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4dd9e6;
}

.fp-vc-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.fp-vc-loc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 4px;
}

.fp-vc-loc i {
    color: #4dd9e6;
    font-size: 0.7rem;
}

.fp-vc-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
    font-size: 0.7rem;
    color: #f59e0b;
}

.fp-vc-rating span {
    color: rgba(255, 255, 255, 0.55);
    margin-left: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* Floating stat pills */
.fp-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    animation: fpFloat 3.5s ease-in-out infinite;
}

.fp-stat i { color: #4dd9e6; }

.fp-stat-1 { top: -14px; right: 20px; animation-delay: 0s; }
.fp-stat-2 { bottom: -14px; left: 10px; animation-delay: 1.8s; }

@keyframes fpFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* Responsive */
@media (max-width: 900px) {
    .fp-body {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 32px;
    }
    .fp-right {
        width: 100%;
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }
    .fp-visual-card { flex: 1; }
    .fp-stat-1, .fp-stat-2 { display: none; }
    .fp-title { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .fp-body { padding: 28px 20px; }
    .fp-right { display: none; }
    .fp-title { font-size: 1.9rem; }
}