/* ============================================
   Elegant Hero Section – Callout Layout
   ============================================ */

.hero-elegant {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-elegant .hero-overlay {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.82) 0%, rgba(0, 60, 120, 0.65) 50%, rgba(0, 120, 227, 0.45) 100%);
}

.hero-elegant .hero-overlay::before,
.hero-elegant .hero-overlay::after {
    display: none;
}

/* Grid: left text + right callout cards */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* ---------- Left column ---------- */
.hero-content-left {
    text-align: left;
}

.hero-content-left .hero-title {
    text-align: left;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #d0e8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-content-left .hero-subtitle {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-content-left .hero-badge {
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-content-left .hero-badge i {
    color: #fed25c;
}

.hero-content-left .hero-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* CTA Buttons */
.hero-content-left .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    background: linear-gradient(135deg, #0078e3, #00b4d8);
    border: none;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 120, 227, 0.45), 0 0 40px rgba(0, 120, 227, 0.15);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 120, 227, 0.6), 0 0 60px rgba(0, 120, 227, 0.25);
}

.btn-glow i {
    margin-right: 0.5rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline-light i {
    margin-right: 0.5rem;
}

/* Trust pills */
.hero-trust-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.trust-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.trust-pill i {
    color: #fed25c;
    font-size: 0.85rem;
}

/* ---------- Right column: Callout Cards ---------- */
.hero-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    perspective: 800px;
}

.callout-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    text-align: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floatCard 6s ease-in-out infinite;
}

.callout-card:nth-child(2) { animation-delay: -1.5s; }
.callout-card:nth-child(3) { animation-delay: -3s; }
.callout-card:nth-child(4) { animation-delay: -4.5s; }

.callout-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Rating card spans full width */
.callout-rating {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.15), rgba(255, 255, 255, 0.1));
    border-color: rgba(254, 210, 92, 0.3);
}

.callout-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callout-icon i {
    font-size: 1.3rem;
    color: #4285f4;
}

.callout-body {
    text-align: left;
}

.callout-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.callout-stars i {
    color: #fed25c;
    font-size: 0.95rem;
}

.callout-number {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #fff, #d0e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.callout-number span {
    font-size: 1.6rem;
    opacity: 0.7;
}

.callout-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Float animation for callout cards */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

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

    .hero-content-left .hero-title,
    .hero-content-left .hero-subtitle {
        text-align: center;
    }

    .hero-content-left .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content-left .hero-buttons {
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .hero-callouts {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-elegant {
        min-height: auto;
        padding: 120px 0 60px;
    }

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

    .hero-content-left .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content-left .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content-left .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .hero-callouts {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        max-width: 100%;
    }

    .callout-rating {
        flex-direction: row;
        gap: 0.75rem;
        padding: 1rem;
    }

    .callout-number {
        font-size: 1.8rem;
    }

    .callout-card {
        padding: 1rem 0.8rem;
    }

    .trust-pill {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}
