* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
}

/* Professional scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e9ecef;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0056b3, #004085, #002752);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #004085, #002752, #001a33);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Trust gradient backgrounds */
.trust-gradient {
    background: linear-gradient(135deg, #0056b3 0%, #004085 25%, #002752 50%, #004085 75%, #0056b3 100%);
    background-size: 200% 200%;
    animation: trust-flow 10s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes trust-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.trust-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Offer card style */
.offer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0056b3, #004085, #002752);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 86, 179, 0.15);
    border-color: #0056b3;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

/* Icon container */
.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0056b3, #004085);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

/* Trust button */
.btn-trust {
    background: linear-gradient(135deg, #0056b3 0%, #004085 50%, #002752 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-trust:hover::before {
    left: 100%;
}

.btn-trust:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.btn-trust:active {
    transform: translateY(0);
}

/* Section backgrounds */
.section-light {
    background: #f8f9fa;
}

.section-white {
    background: #ffffff;
}

.section-gradient {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

/* Badge design */
.trust-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #0056b3, #004085);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 86, 179, 0.2);
}

/* Stats display */
.stat-display {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0056b3, #004085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Input styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #2c3e50;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    background: #ffffff;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
}

/* Professional divider */
.professional-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    margin: 2rem 0;
}

/* Year display */
.established-year {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    font-style: italic;
}

