/* Custom CSS Styles */

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

/* Center text for specific sections */
.text-center {
    text-align: center !important;
}

/* Brand Colors - Enhanced Palette */
:root {
    --primary: #F97316;
    --primary-light: #FDBA74;
    --primary-dark: #C2410C;
    --primary-hover: #EA580C;
    --primary-bg: rgba(249, 115, 22, 0.1);
    --primary-bg-hover: rgba(249, 115, 22, 0.15);
    --secondary: #0EA5E9;
    --secondary-light: #7DD3FC;
    --secondary-dark: #0369A1;
    --accent: #8B5CF6;
    --accent-light: #C4B5FD;
    --success: #10B981;
    --success-light: #A7F3D0;
    --danger: #EF4444;
    --danger-light: #FCA5A5;
    --warning: #F59E0B;
    --warning-light: #FCD34D;
    --dark: #1F2937;
    --dark-light: #4B5563;
    --light: #F8F9FA;
    --light-dark: #E5E7EB;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-spin {
    animation: spin 1.5s linear infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg,
        rgba(255,255,255,0),
        rgba(255,255,255,0.2),
        rgba(255,255,255,0));
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: #1F2937;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.dark .nav-link {
    color: #F8F9FA;
}

.nav-link:hover {
    color: #F97316;
}

.nav-link.active {
    color: #F97316;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: linear-gradient(135deg, #FDBA74, #F97316);
    transition: width 0.3s ease;
    border-radius: 2px;
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

/* Button Hover Effects */
button {
    transition: transform 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
}

.dark button:hover {
    /* No shadow in dark mode */
}

/* No animations for images */
.fade-in {
    opacity: 1;
    transform: none;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

[dir="rtl"] .animate-marquee {
    animation: marquee-rtl 30s linear infinite;
}

/* Company Logo Styles */
.marquee-container {
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(253,186,116,0.1), rgba(255,255,255,0.9));
    padding: 2rem 0;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.05);
    position: relative;
    overflow: hidden;
}

.marquee-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.dark .marquee-container {
    background: linear-gradient(to right, rgba(31,41,55,0.9), rgba(249,115,22,0.1), rgba(31,41,55,0.9));
    border-top: 1px solid rgba(253, 186, 116, 0.1);
    border-bottom: 1px solid rgba(253, 186, 116, 0.1);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}

.dark .marquee-container::before {
    background: linear-gradient(90deg, transparent, rgba(253, 186, 116, 0.2), transparent);
}

.company-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.1);
}

.company-name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.dark .company-name {
    color: #D1D5DB;
}

/* Mobile Menu Animation */
#mobile-menu.open {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #FDBA74, #F97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Dark mode support for gradient text */
.dark .gradient-text {
    background: linear-gradient(135deg, #FDBA74, #F97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Add text shadow for better visibility in dark mode */
    text-shadow: 0 0 1px rgba(253, 186, 116, 0.1);
    /* Increase opacity for better visibility */
    opacity: 1;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Hero Background Pattern */
.bg-grid-pattern {
    background-image:
        linear-gradient(to right, rgba(249, 115, 22, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(249, 115, 22, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Hero Particles Animation */
.hero-particle {
    animation: float 6s ease-in-out infinite;
}

.hero-particle:nth-child(2) {
    animation-delay: 1s;
    animation-duration: 7s;
}

.hero-particle:nth-child(3) {
    animation-delay: 2s;
    animation-duration: 8s;
}

.hero-particle:nth-child(4) {
    animation-delay: 3s;
    animation-duration: 9s;
}

.hero-particle:nth-child(5) {
    animation-delay: 4s;
    animation-duration: 10s;
}

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

/* Hero Content Styles */
.hero-content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 550px;
}

/* Card Floating Elements */
.card-floating-element {
    animation: cardFloat 5s ease-in-out infinite;
}

.delay-300 {
    animation-delay: 1.5s;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::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: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background-color: transparent;
    color: var(--dark);
    font-weight: 600;
    border-radius: 0.5rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark .btn-secondary {
    color: var(--light);
    border-color: var(--primary-light);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-bg);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Global Companies Section */
.global-companies {
    position: relative;
    overflow: hidden;
}

/* Ensure text is visible in dark mode */
.dark .global-companies h2 {
    color: #F8F9FA !important; /* Force light color in dark mode */
}

.dark .global-companies .gradient-text {
    opacity: 1;
    text-shadow: 0 0 2px rgba(253, 186, 116, 0.2); /* Add subtle text shadow for better visibility */
}

.global-companies::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.global-companies::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Companies Carousel */
.companies-carousel {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.company-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.5s ease;
    position: relative;
    min-width: 100px;
    height: 50px;
}

.company-logo-wrapper::after {
    display: none; /* Remove the after element completely */
}

.company-img {
    max-width: 100%;
    height: auto;
    max-height: 35px;
    object-fit: contain;
    display: block;
}

.dark .company-img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Company Cards */
.company-card {
    opacity: 1;
    transform: none;
}

/* Improve dark mode company card visibility */
.dark .company-card {
    background-color: rgba(31, 41, 55, 0.9) !important; /* Darker background for better contrast */
    border-color: rgba(249, 115, 22, 0.3) !important; /* More visible border */
}

/* No animation delays for company cards */
/* No animations */

/* Trust Cards */
.trust-card {
    opacity: 1;
    transform: none;
}

/* No animations for company logos */
.companies-row-1, .companies-row-2 {
    transform: none;
}

/* Background Patterns */
.bg-pattern-dots {
    background-image: radial-gradient(rgba(249, 115, 22, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Comparison Section Styles */
.comparison-section {
    position: relative;
    overflow: hidden;
}

.comparison-section .container {
    position: relative;
    z-index: 10;
}

.comparison-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.solution-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.problem-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.comparison-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.solution-icon::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
}

.problem-icon::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.1));
}

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

.comparison-header:hover .comparison-icon-wrapper::before {
    opacity: 0.5;
    transform: scale(1.2);
}

.comparison-item {
    position: relative;
    z-index: 1;
}

.comparison-check-icon, .comparison-times-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-item:hover .comparison-check-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.25);
}

.comparison-item:hover .comparison-times-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.25);
}

/* Professional table styling */
.comparison-section .rounded-xl {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(249, 115, 22, 0.08);
    overflow: hidden;
}

.comparison-section .rounded-xl:hover {
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.08), 0 15px 20px rgba(0, 0, 0, 0.03);
    transform: translateY(-0.5rem);
    border-color: rgba(249, 115, 22, 0.15);
}

/* Table header styling */
.comparison-section .grid-cols-2 h3 {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-section .grid-cols-2 h3 i {
    margin-left: 0.5rem;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.comparison-section .grid-cols-2 h3:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Table row hover effects */
.comparison-section .grid-cols-2.text-right {
    transition: all 0.3s ease;
}

.comparison-section .grid-cols-2.text-right:hover > div {
    background-color: rgba(249, 115, 22, 0.03);
    transform: translateY(-2px);
}

.dark .comparison-section .grid-cols-2.text-right:hover > div {
    background-color: rgba(249, 115, 22, 0.05);
}

/* Icon styling */
.comparison-section .fas.fa-times-circle,
.comparison-section .fas.fa-check-circle {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    font-size: 1.25rem;
}

.comparison-section .w-6.h-6 {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.comparison-section .bg-green-100 {
    background-color: rgba(16, 185, 129, 0.15);
}

.comparison-section .bg-red-100 {
    background-color: rgba(239, 68, 68, 0.15);
}

.comparison-section .text-green-500 {
    color: var(--success);
}

.comparison-section .text-red-500 {
    color: var(--danger);
}

.comparison-section .fas.fa-times,
.comparison-section .fas.fa-check {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-section .flex:hover .w-6.h-6 {
    transform: scale(1.15);
}

.comparison-section .flex:hover .fas.fa-times,
.comparison-section .flex:hover .fas.fa-check {
    transform: scale(1.2) rotate(5deg);
}

/* Dark mode styling */
.dark .comparison-section .bg-red-50 {
    background-color: rgba(239, 68, 68, 0.1);
}

.dark .comparison-section .bg-green-50 {
    background-color: rgba(16, 185, 129, 0.1);
}

.dark .comparison-section .bg-gray-50 {
    background-color: rgba(31, 41, 55, 0.5);
}

.dark .comparison-section .bg-green-100 {
    background-color: rgba(16, 185, 129, 0.2);
}

.dark .comparison-section .bg-red-100 {
    background-color: rgba(239, 68, 68, 0.2);
}

/* Mobile version styling */
.comparison-section .md\:hidden .rounded-lg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(249, 115, 22, 0.08);
}

.comparison-section .md\:hidden .rounded-lg:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.05);
    border-color: rgba(249, 115, 22, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-section .text-base {
        font-size: 0.95rem;
    }

    .comparison-section h3 {
        font-size: 1.25rem;
    }

    .comparison-section .p-4 {
        padding: 0.75rem;
    }

    /* Improved mobile spacing for comparison items */
    .comparison-section .grid-cols-1 > div {
        margin-bottom: 0.5rem;
    }

    /* Add spacing between mobile rows */
    .comparison-section .grid-cols-1 {
        margin-bottom: 0.5rem;
    }

    /* Adjust icon size on mobile */
    .comparison-section .flex-shrink-0 {
        width: 1.25rem;
        height: 1.25rem;
    }

    .comparison-section .fas.fa-times,
    .comparison-section .fas.fa-check {
        font-size: 0.7rem;
    }

    /* Improve text readability */
    .comparison-section .leading-relaxed {
        line-height: 1.6;
    }

    /* Add alternating background for better readability */
    .comparison-section .grid-cols-1:nth-child(even) > div > div {
        background-color: rgba(249, 250, 251, 0.7);
    }

    .dark .comparison-section .grid-cols-1:nth-child(even) > div > div {
        background-color: rgba(31, 41, 55, 0.7);
    }
}

/* Print-friendly styles */
@media print {
    .comparison-section {
        background-color: white !important;
        color: black !important;
    }

    .comparison-section .rounded-xl {
        box-shadow: none !important;
        border: 1px solid #e5e7eb !important;
    }

    .comparison-section .text-gray-700,
    .comparison-section .text-gray-800 {
        color: black !important;
    }
}

.bg-pattern-circuit {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%23f97316' fill-opacity='0.1' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 217.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
}

.bg-pattern-zigzag {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.172L6.172 0h5.656L0 11.828V6.172zm40 5.656L28.172 0h5.656L40 6.172v5.656zM6.172 12l12-12h3.656l12 12h-5.656L20 3.828 11.828 12H6.172zm12 0L20 10.172 21.828 12h-3.656z' fill='%23f97316' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.bg-pattern-wave {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23f97316' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-delay {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-delay-2 {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 4s ease-in-out infinite;
}

.animate-pulse-delay {
    animation: pulse-delay 4s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-pulse-delay-2 {
    animation: pulse-delay-2 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* Slow Pulse Animations for Hero Section */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

.animate-pulse-slow-delay {
    animation: pulse-slow 8s ease-in-out infinite;
    animation-delay: 4s;
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Trust Badges */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.dark .trust-badge {
    background-color: rgba(31, 41, 55, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(253, 186, 116, 0.1);
}

.trust-badge i {
    font-size: 1.25rem;
    color: #F97316;
}

.trust-badge span {
    font-weight: 600;
    color: #1F2937;
}

.dark .trust-badge span {
    color: #F8F9FA;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.2);
}

/* Pricing Section Styles */
.pricing-header {
    /* No animation */
}

.pricing-cards-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(249, 115, 22, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dark .pricing-card {
    background-color: rgba(31, 41, 55, 0.8);
    border-color: rgba(249, 115, 22, 0.2);
}

.pricing-card.silver-card {
    background: white;
}

.dark .pricing-card.silver-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(31, 41, 55, 0.7));
}

.pricing-card.gold-card {
    background: white;
    border-color: rgba(249, 115, 22, 0.2);
    z-index: 2;
}

.dark .pricing-card.gold-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(31, 41, 55, 0.7));
    border-color: rgba(249, 115, 22, 0.3);
}

.pricing-card.subscription-card {
    background: white;
}

.dark .pricing-card.subscription-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(31, 41, 55, 0.7));
}

.pricing-card:hover {
    /* No hover animation */
}

.pricing-card-header {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
    background: linear-gradient(to bottom, rgba(249, 115, 22, 0.05), transparent);
}

.dark .pricing-card-header {
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    background: linear-gradient(to bottom, rgba(249, 115, 22, 0.1), transparent);
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.dark .pricing-card-title {
    color: #F8F9FA;
}

.pricing-card-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
    border-radius: 3px;
}

.pricing-card-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F97316;
    margin-right: 0.25rem;
    margin-left: 0;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1F2937;
    line-height: 1.2;
    margin-bottom: 0;
    order: -1;
}

.text-2xl {
    font-size: 1.5rem;
}

.dark .amount {
    color: #F8F9FA;
}

.period {
    font-size: 0.9rem;
    color: #6B7280;
    display: block;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
    flex-basis: 100%;
}

.dark .period {
    color: #D1D5DB;
}

.pricing-card-desc {
    font-size: 0.9rem;
    color: #6B7280;
    margin-top: 1rem;
    line-height: 1.6;
    padding: 0 0.5rem;
    text-align: center;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .pricing-card-desc {
    color: #D1D5DB;
}

.pricing-card-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    direction: rtl;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #4B5563;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(249, 115, 22, 0.1);
    font-size: 0.9rem;
}

.dark .pricing-feature {
    color: #D1D5DB;
    border-bottom-color: rgba(249, 115, 22, 0.2);
}

.pricing-feature:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.pricing-feature span {
    flex: 1;
    text-align: right;
    padding-right: 0.5rem;
}

.pricing-feature.disabled {
    color: #9CA3AF;
    opacity: 0.7;
}

.dark .pricing-feature.disabled {
    color: #6B7280;
}

.pricing-feature .feature-icon {
    margin-left: 0.75rem;
    color: #F97316;
    font-size: 0.85rem;
    min-width: 1.25rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

.pricing-feature.disabled .feature-icon {
    color: #9CA3AF;
    background-color: rgba(156, 163, 175, 0.1);
}

.pricing-card-footer {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to top, rgba(249, 115, 22, 0.05), transparent);
}

.dark .pricing-card-footer {
    background: linear-gradient(to top, rgba(249, 115, 22, 0.1), transparent);
}

.pricing-button {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    background: linear-gradient(135deg, #FDBA74, #F97316);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.25);
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 1rem;
}

.pricing-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: all 0.6s ease;
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.3);
}

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

.popular, .subscription-card {
    position: relative;
    overflow: visible;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #F97316, #FDBA74);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.3);
    z-index: 10;
}

.popular-badge::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: #F97316 transparent transparent transparent;
}

.discount-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #e53e3e, #fc8181);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
    z-index: 10;
}

.discount-badge::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: #e53e3e transparent transparent transparent;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), 0 6px 12px rgba(0, 0, 0, 0.02);
    text-align: center;
    opacity: 1;
    border: 1px solid rgba(249, 115, 22, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.dark .feature-card {
    background-color: rgba(31, 41, 55, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(253, 186, 116, 0.15);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(249, 115, 22, 0.1), 0 10px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(249, 115, 22, 0.25);
}

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.dark .feature-card:hover {
    box-shadow: 0 20px 30px rgba(249, 115, 22, 0.15), 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(253, 186, 116, 0.3);
}

.feature-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.feature-card:hover .feature-icon::before {
    transform: scale(1.15);
    opacity: 0.15;
}

.feature-content {
    width: 100%;
    padding: 0 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 4rem;
}

.dark .feature-title {
    color: var(--light);
}

.feature-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.dark .feature-desc {
    color: var(--light-dark);
}

/* Responsive adjustments for feature cards and pricing cards */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .pricing-card-price {
        flex-wrap: nowrap;
    }

    .currency {
        margin-right: 0.15rem;
        margin-left: 0;
    }
}

    /* Pricing cards mobile adjustments */
    .pricing-card {
        margin-bottom: 2rem;
    }

    .pricing-card-title {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2rem;
    }

    .pricing-card-desc {
        min-height: auto;
        margin-bottom: 1rem;
    }

    .pricing-feature {
        font-size: 0.85rem;
    }
}

/* FAQ Section Styles */
.faq-item {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 4px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(249, 115, 22, 0.08);
    position: relative;
    margin-bottom: 1rem;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px 0 0 4px;
    z-index: 1;
}

.faq-item.active::before {
    height: 100%;
}

.dark .faq-item {
    background-color: rgba(31, 41, 55, 0.8);
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    box-shadow: 0 15px 25px rgba(249, 115, 22, 0.08), 0 8px 15px rgba(0, 0, 0, 0.03);
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.15);
}

.dark .faq-item:hover {
    box-shadow: 0 15px 25px rgba(249, 115, 22, 0.12), 0 8px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--dark);
    text-align: right;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question::after {
    opacity: 1;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.dark .faq-question {
    color: var(--light);
}

.dark .faq-item.active .faq-question {
    color: var(--primary-light);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--primary);
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dark .faq-icon {
    background-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-item.active .faq-icon::before {
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--gray);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.dark .faq-answer {
    color: var(--light-dark);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    line-height: 1.8;
    position: relative;
    padding-right: 1.25rem;
    font-size: 1rem;
}

.faq-answer p::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 3px;
    height: calc(100% - 1rem);
    background: linear-gradient(to bottom, var(--primary-light), transparent);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer p::before {
    top: 0.25rem;
    height: calc(100% - 0.5rem);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-link::after {
        bottom: -4px;
    }

    /* Hero section responsive adjustments */
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content-wrapper {
        flex-direction: column;
    }

    .hero-text-content {
        width: 100%;
        padding: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

    .hero-text-content p {
        font-size: 0.875rem;
    }

    .hero-text-content .flex {
        justify-content: center;
    }

    .hero-image-content {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-img {
        max-width: 100%;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    /* Features section responsive adjustments */
    #features {
        padding: 3rem 0;
    }

    #features .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #features h2 {
        font-size: 1.75rem;
    }

    #features p {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    /* Pricing Cards Responsive */
    .pricing-card {
        margin-bottom: 2rem;
    }

    .pricing-card.gold-card {
        order: -1;
    }

    .pricing-feature {
        font-size: 0.95rem;
    }

    .pricing-card-price {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    /* Hero section responsive adjustments for small screens */
    .hero-section {
        padding: 2.5rem 0;
    }

    .hero-text-content h1 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .hero-text-content p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-text-content .btn-primary,
    .hero-text-content .btn-secondary {
        width: 100%;
        margin-bottom: 0.5rem;
        justify-content: center;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .hero-text-content .flex {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .hero-image-content {
        max-width: 100%;
    }

    /* Features section responsive adjustments for small screens */
    #features {
        padding: 2.5rem 0;
    }

    #features .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    #features h2 {
        font-size: 1.5rem;
    }

    #features p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }

    /* Pricing Cards Responsive */
    .pricing-card-title {
        font-size: 1.25rem;
    }

    .amount {
        font-size: 2.25rem;
    }

    .pricing-feature {
        font-size: 0.9rem;
    }

    .pricing-button {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        right: 10px;
    }
}

/* إضافة أو تعديل نمط لقسم المدفوعات الآمنة */
.image-text-section {
    display: flex;
    align-items: center !important; /* استخدام !important لضمان تطبيق المحاذاة العمودية */
    margin: 2rem 0;
}

/* تأكد من محاذاة العناصر بشكل صحيح */
.image-text-section .text-content,
.image-text-section .image-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

/* Steps Section Styles */
.step-card {
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Call to Action Section Styles */
.cta-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 3px;
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(249, 115, 22, 0.3);
    z-index: 2;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
}

.step-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    width: 5px !important;
    height: 5px !important;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 3px 6px rgba(16, 185, 129, 0.3);
}

.step-card h3 {
    position: relative;
    padding-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.step-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary));
    transition: width 0.3s ease;
}

.step-card:hover h3::after {
    width: 100px;
}

.step-card h3 i {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover h3 i {
    transform: scale(1.2) rotate(5deg);
}

.step-card ul {
    position: relative;
    z-index: 1;
}

.step-card ul::before {
    content: '';
    position: absolute;
    top: 0;
    right: 12px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-light), transparent);
    opacity: 0.3;
    z-index: -1;
}

.step-card:hover ul::before {
    opacity: 0.5;
}

/* Form and Button Improvements for 90% Zoom and Responsiveness */
.form-input {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Submit Button Consistency */
button[type="submit"], .submit-btn {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Form Layout Improvements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 14px;
}

/* Responsive Form Containers */
.bg-white, .bg-gray-50 {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* 90% Zoom Optimization */
@media screen and (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .form-input {
        font-size: 15px;
        padding: 14px 18px;
    }

    button[type="submit"], .submit-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
}

/* Mobile Form Improvements */
@media (max-width: 768px) {
    .bg-white, .bg-gray-50 {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .form-input {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px 14px;
    }

    button[type="submit"], .submit-btn {
        font-size: 16px;
        padding: 14px 20px;
        min-height: 50px;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }
}

