@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Global font */
* {
    font-family: 'Inter', sans-serif;
}
body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* CSS Variables */
:root {
    --primary: #024f86;
    --secondary: #023e6b;
    --accent: #10b981;
}

/* Brand Color Classes */
.bg-brand-blue {
    background-color: #024f86 !important;
}

.bg-brand-blue-hover:hover {
    background-color: #033a63 !important;
}

.text-brand-blue {
    color: #024f86 !important;
}

.border-brand-blue {
    border-color: #024f86 !important;
}

.border-l-brand-blue {
    border-left-color: #024f86 !important;
}

/* Primary/Secondary/Accent Utility Classes */
.text-primary {
    color: var(--primary);
}

.bg-primary {
    background-color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.bg-accent {
    background-color: var(--accent);
}

.text-primary-custom {
    color: var(--primary);
}

.bg-primary-custom {
    background-color: var(--primary);
}

/* Gradient Classes */
.gradient-text {
    background: linear-gradient(135deg, #024F86 0%, #03659e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #024f86 0%, #033a63 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, #024f86 0%, #036bb8 100%);
}

.gradient-bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.section-bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Tailwind gradient direction utilities using brand blue */
.from-blue-800 {
    --tw-gradient-from: #024f86;
    --tw-gradient-to: rgb(2 79 134 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-blue-900 {
    --tw-gradient-to: #033a63;
}

/* Complete footer gradient utility using brand blue */
.footer-gradient {
    background: linear-gradient(135deg, #024f86 0%, #033a63 100%);
}

/* WhatsApp Green */
.bg-whatsapp {
    background-color: #25d366 !important;
}

.bg-whatsapp:hover {
    background-color: #1da851 !important;
}

/* Icon Background */
.icon-bg-brand {
    background-color: #024f86;
}

/* Button Styles */
.btn-primary {
    background-color: #2563eb;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #10b981;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #059669;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-primary-custom {
    background-color: var(--primary);
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary);
}

/* Button with white border */
.btn-brand-outline {
    background-color: #024f86;
    border: 2px solid white;
    color: white;
}

.btn-brand-outline:hover {
    background-color: #033a63;
}

/* Button with brand border on white background */
.btn-brand-outline-white {
    background-color: white;
    border: 2px solid #024f86;
    color: #024f86;
}

.btn-brand-outline-white:hover {
    background-color: #f8fafc;
}

.cta-button-white {
    background-color: white;
    color: var(--primary);
}

/* Typography and Cursors */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: #024F86;
    animation: blink 1s infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

.typing-text {
    display: inline-block;
    min-height: 1.5em;
}

/* Card Styles */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-brand {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.card-brand:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pricing-card {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popular-card {
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.3), 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.popular-card:hover {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5), 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.hero-card {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    border-width: 1px;
}

/* Icon and Component Styles */
.industry-icon {
    transition: all 0.3s ease;
}

.industry-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-icon-container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--primary);
}

.step-number-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.price-toggle {
    transition: all 0.3s ease;
}

.faq-item {
    transition: all 0.3s ease;
}

.scroll-indicator {
    animation: bounce 2s infinite;
    cursor: pointer;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.logo-brand {
    color: var(--primary);
}

.border-primary-custom {
    border-color: var(--primary);
    border-width: 1px;
}

.border-primary-outline {
    border-color: var(--primary);
}

/* WhatsApp Floating Button Styles */
.whatsapp-float-btn {
    width: 64px;
    height: 64px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #25d366 !important;
}

.whatsapp-float-btn:hover {
    width: 180px;
    transform: scale(1.05);
    border-radius: 32px;
    background-color: #1da851 !important;
}

.whatsapp-icon {
    transition: margin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-text {
    width: 0;
    opacity: 0;
    margin-left: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.whatsapp-float-btn:hover .whatsapp-text {
    width: auto;
    opacity: 1;
    margin-left: 12px;
}

.whatsapp-float-btn:hover .whatsapp-icon {
    margin-right: 0;
}

/* New Mobile Navigation System - Complete Override */
.new-mobile-menu-hidden {
    display: none !important;
}

.new-mobile-menu-visible {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
}

.new-mobile-overlay {
    background-color: #ffffff !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 2rem !important;
}

#new-mobile-close {
    position: absolute !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #374151 !important;
    font-size: 1.5rem !important; /* text-2xl = 1.5rem */
}

#new-mobile-close:hover {
    background-color: #f3f4f6 !important;
    transform: scale(1.1) !important;
}

.new-mobile-links {
    margin-top: 4rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.new-mobile-links a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    color: #374151 !important;
    text-decoration: none !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.new-mobile-links a:hover {
    background-color: #f9fafb !important;
    color: #024f86 !important;
    transform: translateX(0.5rem) !important;
}

.new-mobile-links a:last-child {
    border-bottom: none !important;
}

/* Mobile menu button */
#new-mobile-btn {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#new-mobile-btn:hover {
    transform: scale(1.1) !important;
    color: #024f86 !important;
}

/* Footer Consistency */
.footer-standard {
    background: linear-gradient(135deg, #024f86 0%, #033a63 100%);
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-company-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #e0f2fe; /* Light blue that works with brand blue */
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-link {
    color: #e0f2fe; /* Light blue that works with brand blue */
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Additional footer utility classes for consistency */
.footer-text-blue-100 {
    color: #e0f2fe !important; /* Light blue that works with brand blue */
}

.footer-text-white {
    color: white !important;
}

.footer-bg-gray-800 {
    background-color: #1f2937 !important; /* Tailwind gray-800 */
}

.footer-text-gray-300 {
    color: #d1d5db !important; /* Tailwind gray-300 */
}

/* Utility Classes for Brand Consistency */
.section-spacing {
    padding: 3rem 1rem;
}

/* Section padding for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

/* Animation Classes */
.floating {
    animation: floating 3s ease-in-out infinite;
}

.chat-bubble {
    animation: slideUp 0.5s ease-out;
}

.pulse-dot {
    animation: pulse 2s infinite;
}

.trust-feature-animate {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-fade-in-item {
    animation: fadeInItem 0.6s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

.fade-in {
    animation: fadeInItem 0.6s ease-out;
}

/* Keyframe Animations */
@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInItem {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Pricing Card Effects */
.pricing-card:hover .fas {
    animation: pulse 0.6s ease-in-out;
}

/* WordPress Button Mobile Responsiveness */
@media (max-width: 640px) {
    .wordpress-btn-mobile {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .wordpress-btn-mobile-lg {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* Mobile menu responsive improvements */
@media (max-width: 768px) {
    .section-spacing {
        padding: 4rem 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #mobile-menu a {
        font-size: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    #mobile-menu a:last-child {
        border-bottom: none;
    }
    
    #mobile-menu li:last-child a {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
    }
}

@media (min-width: 768px) {
    .section-spacing {
        padding: 4rem 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Footer spacing adjustments for better layout */
.footer-reduced-gap {
    gap: 1.5rem; /* Reduced from default 2rem (gap-8) */
}

/* Standard map size across all footers */
.footer-map-standard {
    height: 16rem; /* h-64 equivalent */
}

@media (min-width: 768px) {
    .footer-map-standard {
        height: 20rem; /* h-80 equivalent on medium screens and up */
    }
}

/* Consistent CTA Button Styling */
.cta-primary {
    background: linear-gradient(135deg, #024f86 0%, #033a63 100%);
    color: white;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 14px 0 rgba(2, 79, 134, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px 0 rgba(2, 79, 134, 0.4);
}

@media (max-width: 640px) {
    .cta-primary {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Payment Rules Text Styling */
.deposit-rules {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.payment-rules {
    background-color: #fef7cd;
    border: 1px solid #fbbf24;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #92400e;
    font-weight: 500;
}

/* Mobile-specific styles for features section */
@media (max-width: 768px) {
    .features-slider {
        display: flex !important;
        flex-direction: column !important;
        transform: none !important;
    }
    
    .features-slider > div {
        width: 100% !important;
        flex-shrink: 0 !important;
    }
    
    /* Hide navigation controls on mobile */
    #prev-btn,
    #next-btn,
    .dot {
        display: none !important;
    }
    
    /* Reduce padding for feature slides on mobile */
    .features-slider .p-4.md\:p-8 {
        padding: 0.5rem !important;
    }
    
    /* Make the white boxes smaller on mobile */
    .features-slider .bg-white.rounded-lg.shadow-lg {
        padding: 0.75rem !important;
        margin-bottom: 1rem;
    }
    
    /* Smaller heading text in contact management */
    .features-slider h4.text-xl {
        font-size: 0.875rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Smaller button text */
    .features-slider button.text-white.px-4.py-2 {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Smaller search input */
    .features-slider input.w-full.px-4.py-2 {
        padding: 0.375rem 0.5rem 0.375rem 2rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Adjust search icon position */
    .features-slider .fa-search.absolute {
        left: 0.5rem !important;
        top: 0.5rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Contact items adjustments */
    .features-slider .contact-item {
        padding: 0.5rem !important;
    }
    
    /* Smaller avatar circles */
    .features-slider .contact-item .w-10.h-10 {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Smaller contact names and phone numbers */
    .features-slider .contact-item .font-semibold {
        font-size: 0.8rem !important;
    }
    
    .features-slider .contact-item .text-sm {
        font-size: 0.7rem !important;
    }
    
    /* Smaller action buttons (edit/delete) */
    .features-slider .contact-item button.p-2 {
        padding: 0.25rem !important;
    }
    
    .features-slider .contact-item button i {
        font-size: 0.75rem !important;
    }
    
    /* Stats footer adjustments */
    .features-slider .mt-6.flex.justify-between {
        margin-top: 0.75rem !important;
    }
    
    .features-slider .mt-6.flex.justify-between .text-sm {
        font-size: 0.65rem !important;
    }
    
    /* Bottom section text adjustments */
    .features-slider h3.text-3xl {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .features-slider p.text-lg {
        font-size: 0.875rem !important;
        line-height: 1.25rem !important;
    }
    
    /* Reduce icon sizes in headers */
    .features-slider .fa-plus {
        font-size: 0.65rem !important;
    }
    
    /* Green sync indicator */
    .features-slider .w-2.h-2.bg-green-500 {
        width: 0.375rem !important;
        height: 0.375rem !important;
    }
    
    /* ===== Slide 3: Knowledge Base specific styles ===== */
    
    /* Document items in knowledge base */
    .features-slider .p-4.border {
        padding: 0.5rem !important;
    }
    
    /* Document icon containers */
    .features-slider .w-10.h-10.rounded-lg {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    /* Document icons */
    .features-slider .fa-file-alt,
    .features-slider .fa-cogs,
    .features-slider .fa-shopping-cart {
        font-size: 0.75rem !important;
    }
    
    /* Document names */
    .features-slider .font-semibold.text-gray-800 {
        font-size: 0.75rem !important;
    }
    
    /* Document metadata (update time, category) */
    .features-slider .text-sm.text-gray-500 {
        font-size: 0.65rem !important;
    }
    
    /* Status badges (Aktif/Draft) */
    .features-slider .px-2.py-1.bg-green-100,
    .features-slider .px-2.py-1.bg-yellow-100 {
        padding: 0.125rem 0.375rem !important;
        font-size: 0.6rem !important;
    }
    
    /* Document action buttons */
    .features-slider .p-2.text-gray-600 {
        padding: 0.25rem !important;
    }
    
    .features-slider .p-2.text-gray-600 i {
        font-size: 0.65rem !important;
    }
    
    /* Stats footer in knowledge base */
    .features-slider .mt-6.flex.justify-between.items-center {
        margin-top: 0.75rem !important;
    }
    
    .features-slider .mt-6.flex.justify-between.items-center .text-sm {
        font-size: 0.6rem !important;
    }
    
    /* AI sync indicator in knowledge base */
    .features-slider .w-2.h-2.rounded-full {
        width: 0.375rem !important;
        height: 0.375rem !important;
    }
    
    /* Gap between document items */
    .features-slider .space-y-3 > * + * {
        margin-top: 0.5rem !important;
    }
}

/* ========================================== */
/* TRUST SECTION STYLES (from trust-section.css) */
/* ========================================== */

/* Trust Section Styles */
.trust-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #27ae60);
}

.trust-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.trust-section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.trust-section-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-section-feature {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    border: 1px solid #e9ecef;
}

.trust-section-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-section-feature:nth-child(1) {
    transition-delay: 0.4s;
}

.trust-section-feature:nth-child(2) {
    transition-delay: 0.6s;
}

.trust-section-feature:nth-child(3) {
    transition-delay: 0.8s;
}

.trust-section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.trust-section-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.trust-section-feature:hover .trust-section-icon::before {
    opacity: 1;
    animation: trust-section-shine 0.6s ease;
}

@keyframes trust-section-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.trust-section-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.trust-section-feature-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Japan Flag Icon Special Styling */
.trust-section-feature:first-child .trust-section-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Lightbulb Icon Special Styling */
.trust-section-feature:nth-child(2) .trust-section-icon {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

/* Rocket Icon Special Styling */
.trust-section-feature:nth-child(3) .trust-section-icon {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

/* Visible state */
.trust-section.visible .trust-section-title,
.trust-section.visible .trust-section-subtitle,
.trust-section.visible .trust-section-feature {
    opacity: 1;
    transform: translateY(0);
}

/* Trust Section Responsive Design */
@media (max-width: 767px) {
    .trust-section {
        padding: 3rem 1rem;
    }

    .trust-section-title {
        font-size: 1.8rem;
    }

    .trust-section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .trust-section-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-section-feature {
        padding: 2rem 1.5rem;
    }

    .trust-section-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .trust-section-feature-title {
        font-size: 1.2rem;
    }

    .trust-section-feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trust-section-title {
        font-size: 1.6rem;
    }

    .trust-section-subtitle {
        font-size: 1rem;
    }

    .trust-section-feature {
        padding: 1.5rem 1rem;
    }
}