/* ========================================
   ULTRA PROFESSIONAL HERO SECTION
   Modern, Responsive, Premium Design
   ======================================== */

/* Hero Section Base - Premium Background */
.hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f0fdf9 0%, #e6f7f1 50%, #f0fdf9 100%);
    position: relative;
    overflow: hidden;
    min-height: 750px;
}

/* Animated Background Pattern - Multi-Layer */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(0, 123, 93, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(0, 168, 118, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 123, 93, 0.03) 0%, transparent 60%);
    animation: backgroundPulse 20s ease-in-out infinite;
}

/* Geometric Pattern Overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(0, 123, 93, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 123, 93, 0.02) 87.5%),
        linear-gradient(150deg, rgba(0, 123, 93, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 123, 93, 0.02) 87.5%);
    background-size: 80px 140px;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Container - Flexible Grid Layout */
.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Area - Smooth Entrance */
.hero-content {
    max-width: 680px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge - Premium Design with Glow */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 123, 93, 0.12), rgba(0, 168, 118, 0.08));
    color: #006b4f;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1.5px solid rgba(0, 123, 93, 0.25);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 123, 93, 0.12);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-badge:hover {
    background: linear-gradient(135deg, rgba(0, 123, 93, 0.18), rgba(0, 168, 118, 0.12));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 123, 93, 0.2);
    border-color: rgba(0, 123, 93, 0.35);
}

.badge-icon {
    font-size: 18px;
    animation: pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 93, 0.3));
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(0, 123, 93, 0.3));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 4px 8px rgba(0, 123, 93, 0.5));
    }
}

/* Title - Bold & Modern with Gradient */
.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.15;
    color: #0a0a0a;
    margin-bottom: 28px;
    letter-spacing: -1.2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.highlight-text {
    color: #007b5d;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #007b5d 0%, #00a876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 14px;
    background: linear-gradient(90deg, rgba(0, 123, 93, 0.25), rgba(0, 168, 118, 0.25));
    border-radius: 6px;
    z-index: -1;
    animation: highlightExpand 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    transform-origin: left;
    transform: scaleX(0);
    box-shadow: 0 2px 8px rgba(0, 123, 93, 0.15);
}

@keyframes highlightExpand {
    to { transform: scaleX(1); }
}

/* Description - Clear & Readable */
.hero-description {
    font-size: clamp(16px, 1.8vw, 19px);
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 450;
    max-width: 580px;
}

/* Search Section - Ultra Premium Design */
.search-section {
    margin-bottom: 40px;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 123, 93, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 93, 0.05), rgba(0, 168, 118, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 60px;
}

.search-container:hover,
.search-container:focus-within {
    box-shadow: 
        0 16px 48px rgba(0, 123, 93, 0.15),
        0 8px 24px rgba(0, 123, 93, 0.1);
    border-color: rgba(0, 123, 93, 0.3);
    transform: translateY(-3px);
}

.search-container:hover::before,
.search-container:focus-within::before {
    opacity: 1;
}

.search-icon {
    padding: 0 20px;
    color: #007b5d;
    font-size: 20px;
    z-index: 1;
    transition: all 0.3s ease;
}

.search-container:focus-within .search-icon {
    transform: scale(1.1);
    color: #006b4f;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 12px;
    font-size: clamp(15px, 1.5vw, 16px);
    background: transparent;
    color: #2d3748;
    z-index: 1;
    font-weight: 500;
}

.search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.search-btn {
    background: linear-gradient(135deg, #007b5d 0%, #00a876 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(0, 123, 93, 0.35),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #006b4f 0%, #008f66 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.search-btn:hover::before {
    opacity: 1;
}

.search-btn:hover {
    transform: translateX(3px) translateY(-2px);
    box-shadow: 
        0 10px 28px rgba(0, 123, 93, 0.45),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}

/* Search Suggestions - Modern Tags */
.search-suggestions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.suggestion-label {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.suggestion-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: linear-gradient(135deg, rgba(0, 123, 93, 0.1), rgba(0, 168, 118, 0.08));
    color: #006b4f;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(0, 123, 93, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.suggestion-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007b5d, #00a876);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.suggestion-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 123, 93, 0.2);
    border-color: #007b5d;
    color: white !important;
}

.suggestion-tag:hover::before {
    opacity: 1;
}

/* Trust Indicators - Premium Icons */
.trust-indicators {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    color: #007b5d;
    transform: translateY(-2px);
}

.trust-icon,
.trust-icon-svg {
    width: 20px;
    height: 20px;
    color: #007b5d;
    fill: #007b5d;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 93, 0.2));
    display: inline-block;
}

/* Ensure Font Awesome icons are visible */
.trust-item i.trust-icon {
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* SVG fallback - hidden by default */
.trust-icon-svg {
    display: none;
}

/* Show SVG only if Font Awesome fails */
.trust-item i.trust-icon:empty + .trust-icon-svg,
.trust-item i.trust-icon:not([class*="fa-"]) + .trust-icon-svg {
    display: inline-block !important;
}

/* Hide Font Awesome if it fails */
.trust-item i.trust-icon:empty,
.trust-item i.trust-icon:not([class*="fa-"]) {
    display: none !important;
}

.trust-item:hover .trust-icon,
.trust-item:hover .trust-icon-svg {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 123, 93, 0.35));
}

/* Hero Visual - Premium Floating Cards */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 123, 93, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 123, 93, 0.1);
    backdrop-filter: blur(20px);
    cursor: pointer;
    width: 100%;
    max-width: 240px;
    min-height: 260px;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 93, 0.05), rgba(0, 168, 118, 0.05));
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-card:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 
        0 32px 80px rgba(0, 123, 93, 0.25),
        0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 93, 0.25);
}

.floating-card:hover::before {
    opacity: 1;
}

.card-1 {
    order: 3;
    animation: floatCard 8s ease-in-out infinite;
    animation-delay: 2.7s;
}

.card-2 {
    order: 2;
    animation: floatCard 8s ease-in-out infinite;
    animation-delay: 0s;
}

.card-3 {
    order: 1;
    animation: floatCard 8s ease-in-out infinite;
    animation-delay: 5.3s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(-25px);
    }
    75% {
        transform: translateY(-15px);
    }
}

/* Special hover for center card */
.card-2:hover {
    transform: translateY(-20px) scale(1.08);
}

.card-icon {
    font-size: 52px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 123, 93, 0.15), rgba(0, 168, 118, 0.12));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 20px rgba(0, 123, 93, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.floating-card:hover .card-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, rgba(0, 123, 93, 0.22), rgba(0, 168, 118, 0.18));
    box-shadow: 
        0 12px 28px rgba(0, 123, 93, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.card-content {
    flex: 1;
    z-index: 1;
}

.card-content h4 {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.floating-card:hover .card-content h4 {
    color: #007b5d;
}

.card-content p {
    font-size: clamp(13px, 1.4vw, 15px);
    color: #718096;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Decorative Elements - Bottom Fade */
.hero-section .hero-container::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   RESPONSIVE DESIGN - ULTRA OPTIMIZED
   ======================================== */

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
    .hero-container {
        max-width: 1600px;
        padding: 0 80px;
    }
    
    .hero-title {
        font-size: 68px;
    }
    
    .floating-card {
        max-width: 280px;
        min-height: 300px;
    }
}

/* Large Desktops (1440px - 1920px) */
@media (max-width: 1440px) {
    .hero-container {
        max-width: 1200px;
        padding: 0 50px;
    }
}

/* Standard Desktops (1280px - 1440px) */
@media (max-width: 1280px) {
    .hero-container {
        max-width: 1100px;
        padding: 0 40px;
        gap: 60px;
    }
    
    .floating-card {
        max-width: 220px;
        min-height: 240px;
        padding: 28px 24px;
    }
}

/* Small Desktops & Large Tablets (1024px - 1280px) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding: 0 40px;
    }
    
    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-description {
        max-width: 100%;
        margin: 0 auto 40px;
    }
    
    .search-suggestions,
    .trust-indicators {
        justify-content: center;
    }
    
    /* Hide floating cards on tablets and mobile */
    .hero-visual {
        display: none !important;
    }
    
    /* Center all content */
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .search-section {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 30px;
        gap: 0;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 24px;
    }
    
    .badge-icon {
        font-size: 16px;
    }
    
    .hero-title {
        margin-bottom: 24px;
    }
    
    .hero-description {
        margin-bottom: 36px;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        gap: 12px;
    }
    
    .search-icon {
        display: none;
    }
    
    .search-input {
        width: 100%;
        padding: 12px;
        text-align: center;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        border-radius: 12px;
    }
    
    .search-suggestions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
    
    .trust-indicators {
        gap: 20px;
        padding-bottom: 20px;
    }
    
    /* Hide floating cards */
    .hero-visual {
        display: none !important;
    }
}

/* Mobile Landscape (640px - 768px) */
@media (max-width: 640px) {
    .hero-section {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 24px;
        gap: 0;
    }
    
    .suggestion-tag {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .trust-item {
        font-size: 13px;
        gap: 8px;
    }
    
    .trust-icon,
    .trust-icon-svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile Portrait (480px - 640px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 0;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .highlight-text::after {
        height: 10px;
        bottom: 4px;
    }
    
    .search-container {
        padding: 14px;
    }
    
    .search-input {
        padding: 10px;
    }
    
    .search-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .suggestion-label {
        font-size: 13px;
    }
    
    .suggestion-tag {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .trust-indicators {
        gap: 16px;
    }
    
    .trust-item {
        font-size: 12px;
    }
}

/* Small Mobile (375px - 480px) */
@media (max-width: 375px) {
    .hero-section {
        padding: 70px 0 35px;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 0;
    }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 320px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-container {
        padding: 0 12px;
    }
}

/* Reduce animations on mobile for performance */
@media (max-width: 1024px) {
    .floating-card {
        animation: none;
    }
    
    .hero-section::before {
        animation: none;
    }
    
    .badge-icon {
        animation: none;
    }
    
    .card-icon::before {
        animation: none;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
    .floating-card:hover {
        transform: none;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.12),
            0 8px 24px rgba(0, 123, 93, 0.08);
    }
    
    .card-2:hover {
        transform: none;
    }
    
    .suggestion-tag:hover {
        transform: none;
        color: #006b4f;
    }
    
    .trust-item:hover {
        transform: none;
        color: #4a5568;
    }
    
    .hero-badge:hover {
        transform: none;
    }
    
    .search-container:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
        background: white;
    }
    
    .hero-section::before,
    .hero-section::after {
        display: none;
    }
    
    .floating-card,
    .hero-visual {
        display: none;
    }
}


/* ========================================
   FINAL OVERRIDE - FORCE HIDE ON MOBILE
   ======================================== */

/* Force hide floating cards on all devices <= 1024px */
@media (max-width: 1024px) {
    .hero-visual,
    .floating-card,
    .card-1,
    .card-2,
    .card-3 {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 0 !important;
    }
    
    .hero-content {
        max-width: 700px !important;
        margin: 0 auto !important;
    }
}


/* ========================================
   TRUST ICONS FIX - FORCE VISIBILITY
   ======================================== */

/* Force trust icons to be visible */
.trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.trust-item i.trust-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 20px !important;
    height: 20px !important;
    color: #007b5d !important;
    font-size: 18px !important;
    line-height: 20px !important;
    text-align: center !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Specific icon codes */
.trust-item i.fa-shield-check::before {
    content: "\f2f3" !important;
    display: inline-block !important;
}

.trust-item i.fa-clock::before {
    content: "\f017" !important;
    display: inline-block !important;
}

.trust-item i.fa-medal::before {
    content: "\f5a2" !important;
    display: inline-block !important;
}

/* SVG fallback styling */
.trust-item .trust-icon-svg {
    display: none !important;
    width: 20px !important;
    height: 20px !important;
    fill: #007b5d !important;
}

/* Show SVG if Font Awesome fails */
.trust-item i.trust-icon:empty + .trust-icon-svg {
    display: inline-block !important;
}

/* Ensure text is visible */
.trust-item span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #4a5568 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}
