/*
Theme Name: Azizta
Description: Custom theme for Azizta Trading website
Version: 1.0.0
Author: Azizta Trading
Text Domain: azizta
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Awesome Fallback for Mobile Safari */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2"),
         url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff") format("woff"),
         url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2"),
         url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff") format("woff"),
         url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.ttf") format("truetype");
}

/* Ensure Font Awesome classes work properly */
.fas, .fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fab, .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fallback for missing icons - show text alternatives */
.fa-download::before { content: "⬇"; }
.fa-envelope::before { content: "✉"; }
.fa-shield-alt::before { content: "🛡"; }
.fa-exclamation-triangle::before { content: "⚠"; }
.fa-quote-right::before { content: """; }
.fa-language::before { content: "🌐"; }
.fa-chart-bar::before { content: "📊"; }
.fa-graduation-cap::before { content: "🎓"; }
.fa-book-open::before { content: "📖"; }
.fa-headset::before { content: "🎧"; }
.fa-chart-line::before { content: "📈"; }
.fa-brain::before { content: "🧠"; }
.fa-star::before { content: "⭐"; }
.fa-book::before { content: "📚"; }
.fa-shopping-cart::before { content: "🛒"; }
.fa-credit-card::before { content: "💳"; }
.fa-university::before { content: "🏛"; }
.fa-mobile-alt::before { content: "📱"; }
.fa-wallet::before { content: "👛"; }
.fa-map-marker-alt::before { content: "📍"; }
.fa-instagram::before { content: "📷"; }
.fa-linkedin::before { content: "💼"; }
.fa-tiktok::before { content: "🎵"; }

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    direction: rtl;
}

/* CSS Variables */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #28a745;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e9ecef;
    --white: #ffffff;
    --dark: #1a1a1a;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Custom Button Overrides - Bootstrap Compatible */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-color) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Custom Container Overrides - Bootstrap Compatible */
.container {
    max-width: 1200px;
}

/* Custom Grid Overrides - Bootstrap Compatible */
.row {
    margin: 0 -15px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

@media (max-width: 991.98px) {
    .d-lg-none { display: none; }
    .d-lg-flex { display: flex; }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* WooCommerce Styles */
.woocommerce {
    font-family: inherit;
}

.woocommerce-page .woocommerce {
    max-width: 100%;
}

.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--primary-color);
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--accent-color);
}

/* Product Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 0 1rem 1rem;
}

/* Single Product */
.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.woocommerce div.product .woocommerce-product-gallery {
    width: 100%;
}

.woocommerce div.product .summary {
    width: 100%;
}

.woocommerce div.product .product_title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.woocommerce div.product .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Cart & Checkout */
.woocommerce-cart .woocommerce table.cart {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.woocommerce-cart .woocommerce table.cart th,
.woocommerce-cart .woocommerce table.cart td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: right;
}

.woocommerce-cart .woocommerce table.cart th {
    background: var(--secondary-color);
    font-weight: 600;
}

.woocommerce-checkout .woocommerce {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .woocommerce-checkout .woocommerce {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Forms */
.woocommerce form .form-row {
    margin-bottom: 1rem;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 10px;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/* Custom Navbar Styles - Bootstrap Compatible */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 80px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile navbar improvements */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand img {
        height: 70px;
    }
    
    .navbar-collapse {
        background: rgba(0,0,0,0.15);
        border-radius: 15px;
        padding: 1.5rem;
        margin-top: 1rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1.2rem;
        margin: 0.3rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.15);
        transform: translateX(-5px);
        color: white !important;
    }
    
    .d-flex {
        justify-content: center;
        width: 100%;
    }
}

/* Desktop layout */
@media (min-width: 992px) {
    .navbar .container-fluid {
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    
    .navbar-nav {
        order: 2;
        flex: 1;
        justify-content: center;
        margin: 0 2rem;
    }
    
    .navbar-brand {
        order: 1;
        flex-shrink: 0;
    }
    
    .d-flex {
        order: 3;
        flex-shrink: 0;
    }
}

/* Mobile button styles */
@media (max-width: 991.98px) {
    .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        height: 60px;
    }
    
    .navbar-collapse {
        padding: 1rem;
        margin-top: 0.75rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-primary {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
        max-width: 250px;
    }
}

@media (max-width: 375px) {
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        max-width: 220px;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 375px) {
    .navbar {
        padding: 0.4rem 0;
    }
}

/* DAFR Dashboard Styles */
.dafr-dashboard {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    direction: rtl;
    padding-top: 100px;
}

/* Value Proposition Styles */
.value-proposition {
    background: #F6DCAC;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(1, 32, 78, 0.1);
}

.value-proposition .value-text {
    color: #01204E;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

/* Motivational Message Styles */
.motivational-message {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    animation: slideInDown 0.5s ease-out;
}

.motivational-message.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.motivational-message.warning {
    background: linear-gradient(135deg, #FEAE6F, #dc3545);
    color: white;
    box-shadow: 0 4px 15px rgba(254, 174, 111, 0.3);
}

.motivational-message .message-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white !important;
}

.stats-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    opacity: 0.8;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.dashboard-card .card-body {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
}

.checklist-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.checklist-header {
    text-align: center;
    margin-bottom: 2rem;
}

.progress-container {
    position: relative;
}

.progress-bar {
    background: linear-gradient(90deg, #01204E 0%, #028391 33%, #F6DCAC 66%, #FEAE6F 100%);
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.status-message {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.status-message.ready {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.status-message.blocked {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.status-message.incomplete {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.checklist-questions {
    display: grid;
    gap: 1.5rem;
}

.question-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.question-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.question-item.critical-blocked {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
}

.question-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.question-text {
    font-weight: 600;
    color: #343a40;
    margin: 0;
    flex: 1;
}

.question-weight {
    background: #17a2b8;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.critical-badge {
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.answer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.answer-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.answer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.answer-btn.true {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.answer-btn.false {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-color: #dc3545;
}

.answer-btn.true:hover,
.answer-btn.false:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.checklist-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
}

.checklist-actions .btn {
    min-width: 150px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.checklist-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checklist-actions .btn:not(:disabled):hover {
    transform: translateY(-2px);
}

/* Edit and Delete Button Styles */
.btn-edit {
    background: #028391 !important;
    border-color: #028391 !important;
    color: white !important;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 0.25rem;
}

.btn-edit:hover {
    background: #026a75 !important;
    border-color: #026a75 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(2, 131, 145, 0.3);
}

.btn-delete {
    background: #DC3545 !important;
    border-color: #DC3545 !important;
    color: white !important;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: #c82333 !important;
    border-color: #bd2130 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Table Action Buttons Container */
.table td:last-child {
    white-space: nowrap;
    width: 120px;
}

/* Modal Enhancements */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px 20px 0 0;
    border: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Financial Instrument Icons */
.financial-instrument-icon {
    font-size: 1.2em;
    margin-left: 0.5rem;
}

.notification {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 90vw;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    background: #28a745;
    color: white;
}

.notification.error {
    background: #dc3545;
    color: white;
}

.notification.info {
    background: #17a2b8;
    color: white;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Mobile Responsive for Dashboard */
@media (max-width: 768px) {
    .dafr-dashboard {
        padding-top: 90px;
    }
    
    .dashboard-container {
        padding: 15px;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .dashboard-card .card-body {
        padding: 1.5rem;
    }
    
    .checklist-container {
        padding: 1.5rem;
    }
    
    .question-item {
        padding: 1rem;
    }
    
    .answer-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .answer-btn {
        width: 100%;
        justify-content: center;
    }
    
    .checklist-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .dafr-dashboard {
        padding-top: 80px;
    }
    
    .hero-section {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    .form-control, .form-select {
        font-size: 16px;
    }
}

/* ========================================
   EBOOK PAGE STYLES - ENHANCED
   ======================================== */

.ebook-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ebook-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.ebook-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.ebook-hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

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

.ebook-hero-content .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.ebook-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ebook-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 500;
    line-height: 1.6;
}

.book-cover {
    border-radius: 25px;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.15);
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 25px;
    z-index: 1;
}

.book-cover:hover {
    transform: scale(1.08) rotateY(8deg) rotateX(5deg);
    box-shadow: 
        0 35px 100px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.book-covers-section img {
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.book-covers-section img:hover {
    transform: scale(1.08) rotateY(3deg);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-list li:hover::before {
    transform: scaleY(1);
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 1.5rem;
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.feature-list li span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.2),
        0 0 0 1px rgba(40, 167, 69, 0.3);
    border-color: #20c997;
}

.pricing-card::after {
    content: '🎁 مرفق معه دفتر تداول مجاني';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 10;
}

.original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.current-price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.free-journal-highlight {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #155724;
    font-weight: 600;
    font-size: 0.95rem;
    animation: gentle-pulse 3s infinite;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.free-journal-highlight i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* شعارات وسائل الدفع */
.payment-methods {
    text-align: center;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.payment-logo {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.payment-logo:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.payment-logo i {
    font-size: 1rem;
    color: var(--accent-color);
}

.payment-logo:hover i {
    color: white;
}

.purchase-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
    border: none;
    padding: 1.5rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(40, 167, 69, 0.4),
        0 0 0 1px rgba(255,255,255,0.1);
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purchase-btn::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.6s ease;
}

.purchase-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(40, 167, 69, 0.6),
        0 0 0 1px rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
}

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

.guarantee-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid var(--accent-color);
    margin-top: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(40, 167, 69, 0.1),
        0 0 0 1px rgba(40, 167, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding: 1rem 0;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    bottom: -1rem;
    left: -0.5rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 1.5rem;
}

.testimonial-author::before {
    content: '—';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 300;
}

.why-different {
    background: var(--secondary-color);
}

.difference-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.difference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.difference-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Final CTA Section Styles */
.final-cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.final-cta-section .cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.final-cta-section .cta-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #f8fafc !important;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-weight: 400;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.final-cta-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white !important;
}

.final-cta-section .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.final-cta-section .feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-primary-btn::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 ease;
}

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

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
    color: white;
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-secondary-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

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

.cta-trust {
    margin-top: 2rem;
}

.final-cta-section .trust-text {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
}

.trust-text i {
    color: #28a745;
}

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

/* Simple Sticky Button */
.sticky-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #20c997 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-glow 2s infinite;
}

.sticky-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, var(--accent-color) 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(40, 167, 69, 0.7); }
    100% { box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4); }
}

/* Simple Warning */
.simple-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: gentle-pulse 3s infinite;
}

.simple-warning p {
    margin: 0;
    color: #856404;
    font-weight: 600;
    font-size: 0.95rem;
}

.simple-warning i {
    color: #ffc107;
    font-size: 1.1rem;
}

@keyframes gentle-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Professional Contact Icons */
.contact-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

.contact-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
}

.contact-icon-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-icon-link:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon.email {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
    color: white;
}

.contact-icon.twitter {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
    color: white;
}

.contact-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.contact-icon.tiktok {
    background: linear-gradient(135deg, #000000, #ff0050);
    color: white;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

/* Ebook Page Responsive Styles */
@media (max-width: 768px) {
    .ebook-hero {
        padding: 30px 0 80px;
        min-height: 85vh;
    }
    
    .ebook-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .ebook-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
        margin-top: 2rem;
    }
    
    .purchase-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .feature-list li {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .sticky-purchase-btn {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .contact-icons-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .contact-icon-link {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .contact-label {
        font-size: 0.9rem;
    }
    
    .payment-logos {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .payment-logo {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .book-cover {
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .guarantee-box {
        padding: 2rem;
    }
}

