.elementor-324 .elementor-element.elementor-element-3b93fd4{--display:flex;}.elementor-324 .elementor-element.elementor-element-18fcc2e:hover .elementor-widget-container{background-color:transparent;background-image:linear-gradient(180deg, #000000 0%, #f2295b 100%);}.elementor-324 .elementor-element.elementor-element-18fcc2e > .elementor-widget-container{transition:background 0s;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-18fcc2e *//* farabio-pricing.css */

/* CSS Variables for Farabio colors */
:root {
    --farabio-blue: #0A6D6C; /* A deep blue/teal from the logo */
    --farabio-green: #3EC594; /* A vibrant green from the logo */
    --farabio-orange: #FF9800; /* A distinct orange for the contact button */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --card-bg: #fff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Basic Body/Container Styles - Ensure these don't conflict with Elementor's global styles too much */
.farabio-pricing-wrapper {
    font-family: 'Cairo', sans-serif; /* Using Cairo font, make sure it's loaded by theme or Elementor */
    direction: rtl; /* Set Right-To-Left direction for Arabic */
    background-color: var(--bg-light); /* Light background for the section */
    padding: 20px 0; /* Add some vertical padding around the section */
    color: var(--text-dark);
}

.pricing-container {
    max-width: 1200px;
    margin: 40px auto;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
}
.pricing-header {
    margin-bottom: 50px;
}
.pricing-header h1 {
    font-size: 2.5em;
    color: var(--farabio-blue);
    margin-bottom: 10px;
}
.pricing-header p {
    font-size: 1.1em;
    color: var(--text-light);
    line-height: 1.6;
}

/* Tabs Navigation Styles */
.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-button {
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.tab-button.active {
    background-color: var(--farabio-green);
    color: #fff;
    border-color: var(--farabio-green);
    box-shadow: 0 2px 8px rgba(62, 197, 148, 0.3);
}
.tab-button:hover:not(.active) {
    background-color: #e2e6ea;
}

/* Pricing Cards Grid Styles */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}
.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Ensure cards have similar height */
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}
.pricing-card h2 {
    font-size: 1.8em;
    color: var(--farabio-blue);
    margin-bottom: 15px;
}
.pricing-card .price {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.pricing-card .price small {
    font-size: 0.6em;
    color: var(--text-light);
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: right; /* Align text to the right for RTL */
}
.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
    position: relative;
    padding-right: 25px; /* Space for icon */
}
.pricing-card ul li::before {
    content: '✓'; /* Checkmark icon */
    color: var(--farabio-green);
    position: absolute;
    right: 0;
    font-weight: bold;
}
.pricing-card .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-top: auto; /* Push button to the bottom */
}
.btn-contact {
    background-color: var(--farabio-orange);
    color: #fff;
    border: 1px solid var(--farabio-orange);
}
.btn-contact:hover {
    background-color: #e68900; /* Slightly darker orange on hover */
    border-color: #e68900;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .pricing-container {
        padding: 15px;
        margin: 20px auto; /* Adjust margin for smaller screens */
    }
    .pricing-header h1 {
        font-size: 2em;
    }
    .tab-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .pricing-cards {
        grid-template-columns: 1fr; /* Stack cards vertically on small screens */
    }
    .pricing-card {
        padding: 25px;
    }
    .pricing-card h2 {
        font-size: 1.6em;
    }
    .pricing-card .price {
        font-size: 2em;
    }
}/* End custom CSS */