/* 
 * Ajyalz Elementor Widgets - Core Styles 
 * Using the Modern UI/UX Design System
 */

:root {
    --primary: #ff9300;
    --primary-dark: #e07d00;
    --primary-light: #ffb84d;
    --gradient-primary: linear-gradient(135deg, #ff9300 0%, #ff6b00 50%, #ff4500 100%);
    --gradient-warm: linear-gradient(135deg, #ff9300 0%, #ffb926 100%);
    --text-dark: #1a1a2e;
    --text-mid: #4a4a68;
    --text-light: #8888a0;
    --bg-page: #f0f2f5;
    --bg-card: #ffffff;
    --bg-input: #f5f6fa;
    --shadow-md: 0 8px 30px rgba(26,26,46,0.08);
    --shadow-lg: 0 20px 60px rgba(26,26,46,0.12);
    --shadow-xl: 0 30px 80px rgba(26,26,46,0.16);
    --shadow-glow: 0 8px 30px rgba(255,147,0,0.25);
    --shadow-glow-lg: 0 15px 50px rgba(255,147,0,0.35);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 100px;
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

.ajyalz-widget-container {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
}

/* ============================================
   1. HERO BANNER
   ============================================ */
.ajyal-hero-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 21/9;
    box-shadow: var(--shadow-xl);
}
.ajyal-hero-banner video, .ajyal-hero-banner img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .ajyal-hero-banner { border-radius: var(--radius-md); aspect-ratio: 16/9; } }

/* ============================================
   2. CATEGORIES
   ============================================ */
.ajyal-categories-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.ajyal-category-card { text-decoration: none; text-align: center; color: var(--text-dark); width: calc(33.333% - 30px); max-width: 200px; min-width: 140px; transition: all 0.5s var(--transition-bounce); }
.ajyal-category-card:hover { transform: translateY(-12px); }
.ajyal-cat-img-wrapper { width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; margin-bottom: 18px; border: 4px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--gradient-primary) border-box; box-shadow: var(--shadow-md); transition: all 0.5s var(--transition-bounce); position: relative; }
.ajyal-category-card:hover .ajyal-cat-img-wrapper { box-shadow: var(--shadow-glow-lg); transform: scale(1.05); }
.ajyal-cat-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition-smooth); }
.ajyal-category-card:hover .ajyal-cat-img-wrapper img { transform: scale(1.15); }
.ajyal-category-card h3 { font-size: 18px; font-weight: 800; transition: color 0.3s; margin: 0; }
.ajyal-category-card:hover h3 { color: var(--primary); }
@media (max-width: 768px) {
    .ajyal-categories-grid { gap: 15px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 15px; scrollbar-width: none; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
    .ajyal-categories-grid::-webkit-scrollbar { display: none; }
    .ajyal-category-card { flex: 0 0 38%; max-width: none; scroll-snap-align: center; }
}

/* ============================================
   3. FEATURES
   ============================================ */
.ajyal-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 35px; }
.ajyal-feature-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 50px 25px 30px; text-align: center; position: relative; box-shadow: var(--shadow-md); transition: all 0.5s var(--transition-bounce); overflow: visible; border: 1px solid rgba(0,0,0,0.03); }
.ajyal-feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ajyal-feature-icon { width: 80px; height: 80px; margin: -70px auto 20px; background: var(--bg-card); border-radius: 50%; padding: 12px; box-shadow: var(--shadow-md); transition: all 0.5s var(--transition-bounce); }
.ajyal-feature-card:hover .ajyal-feature-icon { transform: scale(1.15) rotate(5deg); box-shadow: var(--shadow-glow); }
.ajyal-feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.ajyal-feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .ajyal-features-grid { grid-template-columns: 1fr; gap: 50px; } }

/* ============================================
   4. COUNTERS
   ============================================ */
.ajyal-counters-section { display: flex; justify-content: space-around; flex-wrap: wrap; background: var(--bg-card); padding: 50px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.ajyal-counters-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); }
.ajyal-counter-box { text-align: center; padding: 15px; flex: 1; min-width: 180px; }
.ajyal-counter-num { font-size: 52px; font-weight: 900; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; direction: ltr; display: inline-flex; align-items: center; justify-content: center; }
.ajyal-counter-num::after { content: attr(data-suffix); font-size: 34px; margin-left: 4px; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ajyal-counter-label { font-size: 16px; color: var(--text-mid); font-weight: 700; }
@media (max-width: 768px) { .ajyal-counters-section { flex-direction: column; gap: 25px; padding: 40px 20px; } .ajyal-counter-num { font-size: 42px; } }

/* ============================================
   5. FAQ
   ============================================ */
.ajyal-faq-container { max-width: 750px; margin: 0 auto; }
.ajyal-faq-item { background: transparent; border-bottom: 1px solid rgba(0,0,0,0.06); overflow: hidden; transition: all 0.3s ease; }
.ajyal-faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.ajyal-faq-item summary { padding: 24px 50px 24px 10px; font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; position: relative; color: var(--text-dark); transition: all 0.3s ease; outline: none; }
.ajyal-faq-item summary::-webkit-details-marker { display: none; }
.ajyal-faq-item summary:hover { color: var(--primary); }
.ajyal-faq-item summary::after { content: ''; position: absolute; left: 10px; top: 50%; width: 30px; height: 30px; background: var(--bg-input); border-radius: 50%; display: flex; align-items: center; justify-content: center; transform: translateY(-50%); transition: all 0.4s var(--transition-bounce); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff9300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.ajyal-faq-item[open] summary::after { background-color: var(--primary); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); transform: translateY(-50%) rotate(180deg); }
.ajyal-faq-content { padding: 0 10px 24px 50px; color: var(--text-mid); line-height: 1.9; font-size: 15px; animation: faqSlide 0.3s ease; }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   6. COURSE TABS
   ============================================ */
.ajyal-tabs-container { margin: 20px 0; }
.ajyal-tabs-header { display: flex; justify-content: center; gap: 10px; margin-bottom: 35px; flex-wrap: wrap; background: var(--bg-input); padding: 6px; border-radius: var(--radius-full); width: fit-content; margin-left: auto; margin-right: auto; }
.ajyal-tab-btn { background: transparent; border: none; color: var(--text-mid); padding: 12px 30px; border-radius: var(--radius-full); font-family: 'Tajawal', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.4s var(--transition-bounce); position: relative; z-index: 1; }
.ajyal-tab-btn.active { background: var(--bg-card); color: var(--primary); box-shadow: var(--shadow-md); }
.ajyal-tab-btn:hover:not(.active) { color: var(--text-dark); }
.ajyal-tab-content { display: none; animation: tabFadeIn 0.5s ease forwards; }
.ajyal-tab-content.active { display: block; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .ajyal-tabs-header { width: 100%; border-radius: var(--radius-md); padding: 10px; } .ajyal-tab-btn { padding: 10px 15px; font-size: 14px; flex: 1 1 100%; text-align: center; } }

/* ============================================
   7. HOW IT WORKS (STEPS)
   ============================================ */
.ajyal-steps-container { padding: 40px 0; }
.ajyal-steps-grid { display: flex; justify-content: center; gap: 40px; position: relative; counter-reset: ajyal-step; padding-top: 40px; }
.ajyal-step { flex: 1; text-align: center; position: relative; z-index: 2; background: var(--bg-card); padding: 40px 30px 30px; border-radius: var(--radius-xl); box-shadow: 0 10px 40px rgba(0,0,0,0.04); transition: all 0.4s var(--transition-bounce); border: 1px solid rgba(0,0,0,0.03); }
.ajyal-step:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(255, 147, 0, 0.12); border-color: rgba(255, 147, 0, 0.2); }
.ajyal-step-number { width: 64px; height: 64px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 900; color: #fff; margin: -72px auto 25px; box-shadow: 0 0 0 8px #fff, var(--shadow-glow); transition: transform 0.4s var(--transition-bounce); position: relative; z-index: 3; }
.ajyal-step:hover .ajyal-step-number { transform: scale(1.15) rotate(5deg); }
.ajyal-step h3 { font-size: 20px; color: var(--text-dark); margin: 0 0 15px 0; font-weight: 900; }
.ajyal-step p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin: 0; }
.ajyal-steps-grid::before { content: ''; position: absolute; top: 40px; left: 16%; right: 16%; height: 0; z-index: 1; border-top: 2px dashed var(--primary); opacity: 0.35; }
@media (max-width: 768px) { .ajyal-steps-grid { flex-direction: column; gap: 60px; margin-top: 40px; padding-top: 0; } .ajyal-step { margin-top: 40px; } .ajyal-steps-grid::before { display: none; } }

/* ============================================
   8. COMPARISON TABLE
   ============================================ */
.ajyal-compare-section { padding: 20px 0; }
.ajyal-compare-table { width: 100%; max-width: 900px; margin: 0 auto; border-collapse: separate; border-spacing: 0; background: var(--bg-card); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.ajyal-compare-table th, .ajyal-compare-table td { padding: 22px 25px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.04); }
.ajyal-compare-table th:first-child, .ajyal-compare-table td:first-child { text-align: right; font-weight: 800; color: var(--text-dark); width: 40%; }
.ajyal-compare-table th { background: rgba(0,0,0,0.02); font-size: 19px; color: var(--text-mid); }
.ajyal-compare-table th.ajyal-highlight { background: var(--gradient-primary); color: #fff; font-size: 22px; position: relative; }
.ajyal-compare-table th.ajyal-highlight::after { content: '★'; position: absolute; top: -15px; right: -15px; background: #FFD700; color: #000; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transform: rotate(15deg); }
.ajyal-compare-table td.ajyal-check { color: #25d366; font-size: 22px; background: rgba(37,211,102,0.04); }
.ajyal-compare-table td.ajyal-cross { color: #ff3b30; font-size: 20px; opacity: 0.7; }
.ajyal-compare-table tr:last-child td { border-bottom: none; }
.ajyal-compare-table tr:hover td { background: rgba(0,0,0,0.01); }
.ajyal-compare-table tr:hover td.ajyal-check { background: rgba(37,211,102,0.08); }
@media (max-width: 768px) { .ajyal-compare-table th, .ajyal-compare-table td { padding: 15px 12px; font-size: 14px; } .ajyal-compare-table th { font-size: 16px; } .ajyal-compare-table th.ajyal-highlight { font-size: 18px; } .ajyal-compare-table th.ajyal-highlight::after { display: none; } }

/* ============================================
   9. TESTIMONIALS SWIPER SLIDER
   ============================================ */
/* Swiper Fallback */
.ajyal-testimonials-swiper { overflow: hidden; }
.ajyal-testimonials-swiper .swiper-wrapper { display: flex; flex-wrap: nowrap; align-items: stretch; }
.ajyal-testimonials-swiper .swiper-slide { flex-shrink: 0; width: 100%; height: auto; transition-property: transform; }

.ajyal-testimonials-swiper { padding-bottom: 50px !important; }
.ajyal-testimonial-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px 30px; box-shadow: var(--shadow-md); transition: all 0.4s var(--transition-bounce); display: flex; flex-direction: column; position: relative; border: 1px solid rgba(0,0,0,0.03); height: 100%; box-sizing: border-box; }
.ajyal-testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.ajyal-testimonial-card::before { content: '""'; font-family: serif; position: absolute; top: 10px; right: 20px; font-size: 80px; color: var(--primary); opacity: 0.1; line-height: 1; }
.ajyal-stars { margin-bottom: 20px; font-size: 18px; letter-spacing: 2px; }
.ajyal-testimonial-text { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 30px; flex-grow: 1; position: relative; z-index: 1; }
.ajyal-customer { font-size: 18px; font-weight: 800; color: var(--text-dark); margin: 0; display: flex; align-items: center; gap: 12px; }
.ajyal-customer::before { content: ''; display: block; width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-primary); }
.ajyal-testimonials-swiper .swiper-pagination-bullet { background: var(--primary); opacity: 0.3; transition: all 0.3s; }
.ajyal-testimonials-swiper .swiper-pagination-bullet-active { opacity: 1; transform: scale(1.3); }

/* ============================================
   10. LEAD MAGNET FORM
   ============================================ */
.ajyal-lead-form-section { background: var(--bg-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 50px; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.04); }
.ajyal-lead-form-wrapper { display: flex; align-items: center; gap: 60px; position: relative; z-index: 2; }
.ajyal-lead-text { flex: 1.2; }
.ajyal-lead-text h2 { font-size: 32px; font-weight: 900; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0 0 20px 0; line-height: 1.4; }
.ajyal-lead-text p { font-size: 17px; color: var(--text-mid); line-height: 1.8; margin: 0; }
.ajyal-lead-form { flex: 1; background: var(--bg-page); padding: 40px; border-radius: var(--radius-lg); width: 100%; box-sizing: border-box; }
.ajyal-input { width: 100%; padding: 18px 20px; margin-bottom: 20px; background: var(--bg-card); border: 2px solid transparent; border-radius: var(--radius-sm); font-size: 16px; font-family: 'Tajawal', sans-serif; box-sizing: border-box; outline: none; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.ajyal-input:focus { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.ajyal-submit-btn { width: 100%; padding: 18px; background: var(--gradient-primary); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 18px; font-weight: 800; cursor: pointer; transition: all 0.4s var(--transition-bounce); box-shadow: var(--shadow-glow); }
.ajyal-submit-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-lg); }
.ajyal-spam-note { font-size: 13px; color: var(--text-light); text-align: center; margin: 20px 0 0 0; display: flex; align-items: center; justify-content: center; gap: 5px; }
@media (max-width: 768px) { .ajyal-lead-form-section { padding: 30px 20px; } .ajyal-lead-form-wrapper { flex-direction: column; gap: 30px; text-align: center; } .ajyal-lead-form { padding: 30px 20px; } .ajyal-lead-text h2 { font-size: 26px; } }

/* ============================================
   11. CALL TO ACTION (CTA)
   ============================================ */
.ajyal-cta-section { background: var(--gradient-primary); border-radius: var(--radius-xl); padding: 60px 40px; text-align: center; color: #fff; box-shadow: var(--shadow-xl); position: relative; overflow: hidden; }
.ajyal-cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); pointer-events: none; }
.ajyal-cta-title { font-size: 32px; font-weight: 900; margin: 0 0 20px 0; line-height: 1.4; position: relative; z-index: 1; }
.ajyal-cta-desc { font-size: 18px; margin: 0 0 35px 0; opacity: 0.9; position: relative; z-index: 1; }
.ajyal-cta-btn { display: inline-block; background: #fff; color: var(--primary-dark); padding: 18px 45px; border-radius: var(--radius-full); text-decoration: none; font-weight: 900; font-size: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: all 0.4s var(--transition-bounce); position: relative; z-index: 1; }
.ajyal-cta-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
@media (max-width: 768px) { .ajyal-cta-section { padding: 40px 20px; } .ajyal-cta-title { font-size: 26px; } }

/* ============================================
   12. BEFORE & AFTER SLIDER
   ============================================ */
.ajyal-ba-section { padding: 30px 0; }
.ajyal-ba-container { --pos: 50%; position: relative; width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); background: var(--bg-card); }
.ajyal-img-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ajyal-img-wrapper img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ajyal-before { clip-path: polygon(var(--pos) 0, 100% 0, 100% 100%, var(--pos) 100%); z-index: 2; }
.ajyal-after { z-index: 1; }
.ajyal-ba-label { position: absolute; top: 25px; padding: 8px 20px; background: rgba(26,26,46,0.7); color: #fff; border-radius: var(--radius-full); font-weight: 700; font-size: 14px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); }
.ajyal-label-before { right: 25px; }
.ajyal-label-after { left: 25px; }
.ajyal-ba-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; z-index: 10; cursor: ew-resize; margin: 0; }
.ajyal-ba-slider-line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; background: #fff; z-index: 5; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 15px rgba(0,0,0,0.5); }
.ajyal-ba-slider-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.ajyal-ba-slider-button svg:first-child { margin-right: -10px; }
@media (max-width: 768px) { .ajyal-ba-container { aspect-ratio: 4/3; } .ajyal-ba-label { font-size: 12px; padding: 5px 15px; top: 15px; } .ajyal-label-before { right: 15px; } .ajyal-label-after { left: 15px; } }

/* ============================================
   13. TRUST MARQUEE
   ============================================ */
.ajyal-trust-marquee { background: var(--text-dark); color: #fff; padding: 18px 0; overflow: hidden; white-space: nowrap; position: relative; display: flex; box-shadow: inset 0 2px 10px rgba(0,0,0,0.2); }
.ajyal-marquee-content { display: flex; animation: ajyal-marquee 25s linear infinite; }
.ajyal-marquee-content span { font-size: 16px; font-weight: 600; margin: 0 45px; display: flex; align-items: center; gap: 10px; letter-spacing: 0.5px; }
@keyframes ajyal-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

/* ============================================
   14. TOP ANNOUNCEMENT BAR
   ============================================ */
.ajyal-top-bar { background: var(--gradient-warm); color: #fff; padding: 12px 25px; display: flex; justify-content: center; align-items: center; gap: 20px; position: relative; z-index: 9999; }
.ajyal-top-bar-text { font-weight: 700; font-size: 15px; letter-spacing: 0.5px; }
.ajyal-top-bar-btn { background: #fff; color: var(--primary-dark); padding: 6px 20px; border-radius: var(--radius-full); text-decoration: none; font-size: 13px; font-weight: 900; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.ajyal-top-bar-btn:hover { background: var(--text-dark); color: #fff; transform: translateY(-2px); }
.ajyal-top-bar-close { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.1); border: none; color: #fff; font-size: 20px; cursor: pointer; padding: 0; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.ajyal-top-bar-close:hover { background: rgba(0,0,0,0.3); transform: translateY(-50%) rotate(90deg); }
@media (max-width: 768px) { .ajyal-top-bar { flex-direction: column; text-align: center; gap: 12px; padding: 15px 40px; } .ajyal-top-bar-close { top: 15px; transform: none; left: 10px; } .ajyal-top-bar-close:hover { transform: rotate(90deg); } }

/* ============================================
   15. FLOATING WHATSAPP
   ============================================ */
.ajyal-float-wa { position: fixed; bottom: 35px; left: 35px; width: 65px; height: 65px; background-color: #25d366; color: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 9999; transition: all 0.4s var(--transition-bounce); text-decoration: none; border: 3px solid #fff; }
.ajyal-float-wa:hover { transform: scale(1.15) rotate(-10deg); box-shadow: 0 15px 40px rgba(37,211,102,0.6); }
.ajyal-float-wa svg { width: 38px; height: 38px; fill: currentColor; }
.ajyal-float-wa::before { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; border-radius: 50%; border: 2px solid #25d366; opacity: 0; animation: wa-pulse 2s infinite; pointer-events: none; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }
@media (max-width: 768px) { .ajyal-float-wa { bottom: 20px; left: 20px; width: 55px; height: 55px; } .ajyal-float-wa svg { width: 32px; height: 32px; } }

