:root {
    --bg-main: #040406;
    --bg-surface: #0a0a0e;
    --bg-glass: rgba(16, 16, 24, 0.7);
    --primary: #ff4500;
    --primary-glow: rgba(255, 69, 0, 0.4);
    --primary-gradient: linear-gradient(135deg, #ff4500 0%, #e62e00 100%);
    --text-primary: #ffffff;
    --text-secondary: #909096;
    --text-muted: #505056;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-main: 'Cairo', sans-serif;
    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, button, input, select, textarea {
    outline: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100%;
}

body.lang-en {
    direction: ltr;
}

body.lang-ar {
    direction: rtl;
}

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-text {
    font-size: clamp(32px, 8vw, 54px);
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: introPulse 2s infinite alternate ease-in-out;
}

@keyframes introPulse {
    0% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1.05);
    }
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1000;
    background-color: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--border-color);
}

.nav-container {
    max-width: 1100px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
}

.brand-logo span {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    color: #ffffff;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.link-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.link-item.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.link-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 26px;
    position: relative;
    z-index: 1002;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mobile-toggle.open .bar:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
    background-color: var(--primary);
}

.mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.open .bar:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
    background-color: var(--primary);
}

.img-hover-effect {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
}

.img-hover-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.img-hover-effect:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 69, 0, 0.25);
    border-color: rgba(255, 69, 0, 0.5);
}

.img-hover-effect:hover img {
    transform: scale(1.05);
}

.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 14px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1600&q=80');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(4,4,6,0.75) 0%, rgba(4,4,6,0.98) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 70px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 69, 0, 0.1);
    border-width: 1px;
    border-style: solid;
    border-color: var(--primary);
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.hero-heading {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px var(--primary-glow);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
    padding: 20px;
    background-color: var(--bg-glass);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
}

.stat-item p {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 700;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-color);
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1100px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    margin-top: 6px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: var(--bg-glass);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.15);
}

.service-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.carousel-container {
    position: relative;
    max-width: 700px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 10px;
}

.trans-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: auto;
    min-height: 380px;
    aspect-ratio: 4 / 3;
    padding: 6px;
    background-color: var(--bg-glass);
}

.split-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.split-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.chat-img-card{
    height: auto;
    max-height: 520px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-glass);
}

.chat-img-card img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.after-badge {
    background: var(--primary-gradient);
}

.slide-info {
    text-align: center;
    margin-top: 14px;
}

.chat-img-card {
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    border-width: 1px;
    border-style: solid;
    border-color: var(--primary);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

body.lang-ar .prev-btn {
    right: -20px;
    left: auto;
}

body.lang-ar .next-btn {
    left: -20px;
    right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.about-image-box {
    max-width: 360px;
    height: 480px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.2);
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255, 69, 0, 0.3);
}

.coach-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slogan {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 12px;
    margin-bottom: 12px;
}

.about-bio {
    color: var(--text-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.price-card {
    background-color: var(--bg-glass);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.featured-plan {
    border-color: var(--primary);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
}

.plan-type {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-amount {
    margin-bottom: 20px;
}

.price-amount .number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
}

.plan-features {
    list-style: none;
    margin-bottom: 10px;
    text-align: left;
}

body.lang-ar .plan-features {
    text-align: right;
}

.plan-features li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li i {
    color: var(--primary);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.payment-card {
    background-color: var(--bg-glass);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    transition: var(--transition);
}

.payment-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.payment-card i {
    font-size: 28px;
    color: var(--primary);
}

.pay-num {
    font-size: 18px;
    color: var(--primary);
    letter-spacing: 1px;
}

.payment-btn-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.pay-btn-badge {
    font-size: 13px;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 4px;
    transition: var(--transition);
}

.payment-btn-link:hover .pay-btn-badge {
    background-color: var(--primary);
    color: #ffffff;
}

.coming-soon-badge {
    font-size: 13px;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--border-color);
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 4px;
}

.next-step-card {
    background-color: var(--bg-glass);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    border-radius: 20px;
    padding: 30px;
    max-width: 750px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.next-step-card:hover {
    border-color: var(--primary);
}

.step-intro {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.step-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.step-details-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.step-details-list li i {
    color: var(--primary);
}

.step-details-list strong {
    color: var(--primary);
}

.whatsapp-btn {
    background-color: #25D366;
    background-image: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
}

body.lang-ar .floating-wa {
    right: auto;
    left: 20px;
}

.faq-accordion {
    max-width: 700px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--bg-glass);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-question i {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 14px;
    padding-top: 0;
    transition: padding-top 0.35s ease;
}

.faq-item.active .faq-answer {
    padding-top: 12px;
}

.site-footer {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: var(--border-color);
    background-color: var(--bg-surface);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-container {
    max-width: 1100px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-glass);
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 12px;
}

.dev-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        z-index: 1001;
    }

    body.lang-ar .nav-links {
        right: auto;
        left: -100%;
    }

    .nav-links.active {
        right: 0;
    }

    body.lang-ar .nav-links.active {
        left: 0;
    }

    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    body.lang-ar .prev-btn {
        right: 5px;
        left: auto;
    }

    body.lang-ar .next-btn {
        left: 5px;
        right: auto;
    }

    .trans-split-card {
        min-height: 280px;
        aspect-ratio: 1 / 1;
    }

    .chat-img-card {
        max-height: 380px;
    }

    .chat-img-card img {
        max-height: 380px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats {
        gap: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .stat-item h3 {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 10px;
    }
}