/* ========================================
   DOCUMENTS PAGE STYLES
   ======================================== */

/* Hero Section */
.documents-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.documents-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: #e0e0e0;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e0;
}

.feature-item i {
    font-size: 1.5rem;
    color: #d4af37;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.1) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.08) 75%, #d8d8d8 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section::after {
    content: '📄 💼 🏛️ 📋 ✅ 🌍';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.1;
    color: #d4af37;
    letter-spacing: 3rem;
    line-height: 4rem;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #333;
    font-size: 1.1rem;
}

.documents-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.documents-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.documents-image:hover img {
    transform: scale(1.05);
}

.pricing-table-wrapper {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease 0.3s both;
}

.pricing-table {
    margin: 0;
    color: #e0e0e0;
}

.pricing-table thead {
    border-bottom: 2px solid #d4af37;
}

.pricing-table thead th {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    padding: 0.5rem 1rem;
    border: none;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-value {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-description {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #d4af37;
    padding: 1.5rem;
    border-radius: 10px;
}

.pricing-description p {
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Coverage Section */
.coverage-section {
    background: linear-gradient(135deg, #d0d0d0 0%, rgba(212, 175, 55, 0.12) 25%, #d8d8d8 50%, rgba(244, 208, 63, 0.09) 75%, #d0d0d0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 20%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(212, 175, 55, 0.09) 0%, transparent 50%);
    pointer-events: none;
}

.coverage-section::after {
    content: '🌎 🏳️ ✈️ 🗺️ 🌐 📍';
    position: absolute;
    top: 15%;
    right: 5%;
    font-size: 1.8rem;
    opacity: 0.1;
    color: #d4af37;
    letter-spacing: 2.5rem;
    line-height: 3.5rem;
    pointer-events: none;
    animation: float 8s ease-in-out infinite reverse;
}

.country-card {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease both;
}

.country-card:nth-child(1) { animation-delay: 0.1s; }
.country-card:nth-child(2) { animation-delay: 0.2s; }
.country-card:nth-child(3) { animation-delay: 0.3s; }
.country-card:nth-child(4) { animation-delay: 0.4s; }
.country-card:nth-child(5) { animation-delay: 0.5s; }
.country-card:nth-child(6) { animation-delay: 0.6s; }

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

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

.country-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.country-card i {
    font-size: 1.2rem;
    color: #d4af37;
    flex-shrink: 0;
}

.country-card span {
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.country-card:hover span {
    color: #333;
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #d8d8d8 0%, rgba(212, 175, 55, 0.1) 25%, #e0e0e0 50%, rgba(244, 208, 63, 0.08) 75%, #d8d8d8 100%);
    padding: 4rem 0;
    position: relative;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.disclaimer-section::after {
    content: '⚖️ 🔒 📜 ✓';
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 1.5rem;
    opacity: 0.08;
    color: #d4af37;
    letter-spacing: 2rem;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.disclaimer-box {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.disclaimer-box i {
    font-size: 3rem;
    color: #dc3545;
    flex-shrink: 0;
}

.disclaimer-content h4 {
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .documents-hero {
        padding: 3rem 0;
    }
    
    .pricing-section,
    .coverage-section {
        padding: 3rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-table-wrapper {
        padding: 1.5rem;
    }
    
    .pricing-table tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .disclaimer-box {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .disclaimer-box i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
}
