/* Website Buttons Styles */
.website-buttons-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Cairo', 'Amiri', 'Noto Sans Arabic', 'Arial Unicode MS', Arial, sans-serif;
    direction: inherit;
    unicode-bidi: embed;
}

.website-buttons-title {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Cairo', 'Amiri', 'Noto Sans Arabic', 'Arial Unicode MS', Arial, sans-serif;
    direction: inherit;
    unicode-bidi: embed;
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "liga", "kern";
    font-feature-settings: "liga", "kern";
}

.website-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.website-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
    background: transparent;
    border: 2px solid white;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    min-height: 70px;
    font-family: 'Cairo', 'Amiri', 'Noto Sans Arabic', 'Arial Unicode MS', Arial, sans-serif;
    direction: inherit;
    unicode-bidi: embed;
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "liga", "kern";
    font-feature-settings: "liga", "kern";
}

.website-button::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;
}

.website-button:hover::before {
    left: 100%;
}

.website-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    text-decoration: none;
}

.website-button-icon {
    margin-right: 15px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.website-button:hover .website-button-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.website-button-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.website-button-icon i {
    transition: transform 0.3s ease;
}

.website-button:hover .website-button-icon i {
    transform: scale(1.1);
}

.website-button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    font-family: 'Cairo', 'Amiri', 'Noto Sans Arabic', 'Arial Unicode MS', Arial, sans-serif;
    direction: inherit;
    unicode-bidi: embed;
}

.website-button-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
    font-family: 'Cairo', 'Amiri', 'Noto Sans Arabic', 'Arial Unicode MS', Arial, sans-serif;
    direction: inherit;
    unicode-bidi: embed;
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "liga", "kern";
    font-feature-settings: "liga", "kern";
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.website-button-url {
    font-size: 14px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
}

/* Country-specific styling */
.website-button.qatar {
    background: linear-gradient(135deg, #8B1538 0%, #6B0F2A 100%);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.website-button.qatar:hover {
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.4);
}

.website-button.uae {
    background: linear-gradient(135deg, #00732F 0%, #005024 100%);
    box-shadow: 0 8px 25px rgba(0, 115, 47, 0.3);
}

.website-button.uae:hover {
    box-shadow: 0 15px 35px rgba(0, 115, 47, 0.4);
}

.website-button.turkey {
    background: linear-gradient(135deg, #E30A17 0%, #B50812 100%);
    box-shadow: 0 8px 25px rgba(227, 10, 23, 0.3);
}

.website-button.turkey:hover {
    box-shadow: 0 15px 35px rgba(227, 10, 23, 0.4);
}

.website-button.global {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.website-button.global:hover {
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.website-button.info {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.website-button.info:hover {
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .website-buttons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .website-button {
        padding: 15px 20px;
        min-height: 60px;
    }
    
    .website-button-icon {
        margin-right: 12px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .website-button-title {
        font-size: 16px;
    }
    
    .website-button-url {
        font-size: 13px;
    }
    
    .website-buttons-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .website-buttons-section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .website-button {
        padding: 12px 15px;
        min-height: 55px;
    }
    
    .website-button-icon {
        margin-right: 10px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .website-button-title {
        font-size: 15px;
    }
    
    .website-button-url {
        font-size: 12px;
    }
}

/* Animation for section entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.website-buttons-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Pulse animation for attention */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(191, 157, 127, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(191, 157, 127, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(191, 157, 127, 0.3);
    }
}

.website-button.pulse {
    animation: pulse 2s infinite;
}