/* ==============================
   ZONE 2: TRUST & WARNING (ULTRA-PREMIUM LIGHT)
============================== */
.premium-trust-section {
    padding: 20px 0 40px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    /* Seamless transition with other zones */
    background-color: #fff8f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-top: 40px; /* Space for floating icons */
}

/* Ultra-Premium White Cards */
.trust-card {
    background: #fff8f0;
    border-radius: 30px;
    padding: 0 45px 50px 45px; /* Top padding is 0 to accommodate floating icon */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything */
    text-align: center;
    overflow: visible !important; /* Override legacy style.css to allow floating icon */
}

.trust-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(106, 124, 79, 0.15), 0 10px 25px rgba(219, 235, 148, 0.2);
    border-color: #DBEB94;
}

/* Floating Icon Badges */
.card-icon-float {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px; /* Floats half outside the card */
    margin-bottom: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
/* Left Card: Warm Terracotta Palette (#e17864 / #f89f90) */
.warning-icon-bg {
    background: linear-gradient(135deg, #fff, rgba(225, 120, 100, 0.1));
    border: 2px solid rgba(225, 120, 100, 0.2);
}
/* Right Card: Golden Orange Palette (#fab863) */
.trust-icon-bg {
    background: linear-gradient(135deg, #fff, rgba(250, 184, 99, 0.15));
    border: 2px solid rgba(250, 184, 99, 0.3);
}
.premium-icon {
    font-size: 32px;
}
.warning-icon-bg .premium-icon {
    color: #e17864; /* Terracotta */
    filter: drop-shadow(0 4px 6px rgba(225, 120, 100, 0.3));
}
.trust-icon-bg .premium-icon {
    color: #fab863; /* Golden Orange */
    filter: drop-shadow(0 4px 6px rgba(250, 184, 99, 0.3));
}

/* Background Wrapper for Watermark */
.trust-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 30px;
    overflow: hidden;
    z-index: 0;
}

/* Background Watermark */
.card-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 250px;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
    color: #ffffff;
}

/* Content Wrapper */
.card-content-wrap {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Typography */
.premium-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.red-text { color: #e17864; } /* Terracotta */
.gold-text { color: #fab863; } /* Golden Orange */

.premium-desc {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Elegant Quote Boxes */
.premium-quote-box {
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    padding: 25px 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    width: 100%;
    z-index: 1;
}
.premium-quote-box::before {
    content: '\201C'; /* Huge quote mark */
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(219, 235, 148, 0.4); /* Pale lime green #DBEB94 */
    z-index: -1;
    line-height: 1;
}
.red-box {
    background: linear-gradient(145deg, #ffffff, rgba(225, 120, 100, 0.05));
    border: 1px solid rgba(225, 120, 100, 0.1);
    box-shadow: 0 10px 30px rgba(225, 120, 100, 0.05);
    color: #e17864; /* Terracotta */
}

.premium-solution {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
    margin-top: auto;
}

/* Badges */
.free-badge-wrap { margin-top: 20px; }
.premium-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.red-badge {
    background: linear-gradient(135deg, #f89f90, #e17864); /* Soft Coral to Terracotta */
    color: white;
    box-shadow: 0 8px 20px rgba(225, 120, 100, 0.3);
    border: 2px solid #fff;
}

/* Dividers */
.premium-divider {
    width: 40px;
    height: 3px;
    background: #fab863;
    border-radius: 2px;
    margin: 10px 0 25px 0;
    position: relative;
}

.premium-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -12px;
    width: 7px;
    height: 7px;
    background: #6A7C4F;
    border-radius: 50%;
    box-shadow: 10px 0 0 0 #DBEB94;
}

.premium-subtitle {
    font-size: 1.4rem;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}
.premium-subtitle i {
    color: #fab863;
    margin-right: 5px;
    opacity: 0.8;
}

/* CTA Banner */
.premium-cta-banner {
    margin-top: 60px;
    background: #fff8f0;
    border-radius: 24px;
    padding: 45px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.02);
    z-index: 2;
}
.cta-floating-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f89f90, #e17864);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(225, 120, 100, 0.3);
    border: 3px solid #fff;
    white-space: nowrap;
}
.cta-inner p {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.5;
    color: var(--color-dark);
}
.cta-inner p::before {
    content: '\f2b5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fab863;
    margin-right: 15px;
    font-size: 2rem;
    vertical-align: middle;
}

/* Footer Note (Warning Block) */
.premium-footer-note {
    transition-delay: 0.4s;
    background: rgba(225, 120, 100, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(225, 120, 100, 0.1);
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}
.premium-footer-note .note-title {
    color: #e17864;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.premium-footer-note .note-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}
.premium-footer-note .highlight {
    color: #e17864;
    font-weight: bold;
}
.premium-footer-note i {
    margin-right: 5px;
    color: #e17864;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .trust-grid { gap: 30px; }
    .trust-card { padding: 0 30px 40px 30px; }
    .premium-title { font-size: 1.8rem; }
    .premium-cta-banner { padding: 45px 20px 30px; }
}

@media (max-width: 768px) {
    .premium-trust-section { padding: 20px 0 40px 0; margin-top: 0; }
    .trust-grid { grid-template-columns: 1fr; gap: 60px; margin-top: 40px; }
    .premium-title { font-size: 1.7rem; }
    .premium-quote-box { font-size: 1.15rem; padding: 20px; }
    .premium-subtitle { font-size: 1.25rem; }
    .desktop-only { display: none; }
    .mobile-only { display: inline; }
    .cta-floating-badge { font-size: 0.95rem; padding: 8px 20px; top: -18px; }
    .cta-inner p { font-size: 1.3rem; }
    .card-icon-float { width: 70px; height: 70px; margin-top: -35px; }
    
    .premium-footer-note {
        padding: 20px 15px;
        border-radius: 12px;
        margin-top: 25px;
    }
    .premium-footer-note .note-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .premium-footer-note .note-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}
