/* area-premium.css */

/* =========================================
   Global Typography & Spacing
   ========================================= */

.text-primary-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* =========================================
   

@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #667085;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Hero Visuals */
.hero-visual-wrapper {
    position: relative;
    z-index: 2;
}

.main-hero-img {
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 50, 100, 0.15);
    border: 8px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.glass-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Floating Trust Row */
.trust-row {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #344054;
}

/* =========================================
   Modern Services Cards
   ========================================= */
.service-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eaecf0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bs-primary, #0d6efd);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
}

.service-card-premium:hover::before {
    opacity: 1;
}

.icon-wrapper-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.learn-more-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.learn-more-link i {
    transition: transform 0.3s;
}

.service-card-premium:hover .learn-more-link i {
    transform: translateX(4px);
}

/* =========================================
   Conditions Chips Grid
   ========================================= */
.condition-chip-premium {
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 50px;
    /* Fully rounded pill */
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: #344054;
}

.condition-chip-premium:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
    color: #0d6efd;
}

.condition-chip-premium i {
    color: #0d6efd;
    font-size: 1.1rem;
}

/* =========================================
   Why Choose Us (Split Layout)
   ========================================= */
.why-us-feature {
    margin-bottom: 2rem;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 12px;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-micro-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #0d6efd;
    margin-top: 2rem;
    max-width: 400px;
}

/* =========================================
   Map & Directions Card
   ========================================= */
.location-card-container {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08);
    /* Deep shadow */
    border: 1px solid #eaecf0;
    overflow: hidden;
}

.address-panel {
    padding: 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.transport-tags {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.transport-tag {
    font-size: 0.85rem;
    background: #f9fafb;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    color: #667085;
    border: 1px solid #eaecf0;
}

/* =========================================
   Area Pills
   ========================================= */
.area-pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eaecf0;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: #475467;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    /* margin-bottom: 0.5rem; */
    /* Handled by grid gap */
    width: auto;
    font-weight: 500;
}

.area-pill:hover:not(.disabled) {
    background: #f0f7ff;
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
}

.area-pill:hover .fa-arrow-right {
    opacity: 1 !important;
    transform: translateX(4px);
}

.area-pill.active {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #212529;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}


.area-pill:hover {
    background: #f0f7ff;
    border-color: #0d6efd;
    color: #0d6efd;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .address-panel {
        padding: 2rem;
    }

    .hero-premium {
        padding-top: 140px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .trust-row {
        justify-content: center;
    }

    .main-hero-img {
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}