/* 
  Marketation Premium Selling Landing Page Styling
  Font: IBM Plex Sans Arabic
  Theme: Islamic Green (#004d40) and Pure Gold (#d4af37)
*/
:root {
    --primary: #004d40;
    --primary-dark: #002b23;
    --accent: #d4af37;
    --accent-dark: #bfa054;
    --white-soft: #fbfbfb;
    --grey-border: #f1f5f9;
    --text-dark: #121212;
    --text-muted: #626262;
    --transition-smooth: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white-soft);
    color: var(--text-dark);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--grey-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    transition: 0.3s;
}

.navbar.scrolled .logo {
    color: var(--primary);
}

.logo svg {
    flex-shrink: 0;
}

.logo.inverted {
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.navbar.scrolled .nav-links li a {
    color: var(--primary-dark);
    opacity: 1;
}

.nav-links li a:hover {
    color: var(--accent) !important;
    opacity: 1;
}

.btn-cta-small {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}

.btn-cta-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: 0.3s;
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-menu-header .logo {
    color: var(--primary);
}

.close-menu {
    font-size: 3rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
}

.mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    transition: 0.3s;
}

.mobile-links li a:hover {
    color: var(--accent);
}

.btn-cta-mobile {
    background: var(--primary);
    color: white !important;
    padding: 15px 40px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 20px;
}

/* Hero Header */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

.islamic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0l20 30 30 20-30 20-20 30-20-30-30-20 30-20 20-30z' fill='%23d4af37' fill-rule='evenodd'/%3E%3C/svg%3E");
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-grid > * {
    min-width: 0;
    overflow: hidden;
}

.hero-splash-full-mock {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent);
    border-radius: 100px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.gold-text {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 580px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    white-space: nowrap;
}

.btn-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    background: #f9e29f;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

/* Hero Trust Section */
.hero-trust {
    margin-top: 3.5rem;
}

.trust-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.trust-stars span {
    color: white;
    opacity: 0.6;
    margin-right: 8px;
    font-size: 0.85rem;
    font-weight: 300;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.avatar,
.avatar-plus {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-right: -14px;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
}

.avatar-1 {
    background-image: url('../img/logo1.png');
}

.avatar-2 {
    background-image: url('../img/logo2.png');
}

.avatar-3 {
    background-image: url('../img/logo3.png');
}

.avatar-4 {
    background-image: url('../img/logo4.png');
}

.avatar-plus {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--primary);
    font-size: 0.75rem;
    z-index: 5;
}

.hero-trust p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 400;
    max-width: none;
    line-height: 1.4;
}

.hero-trust p strong {
    color: var(--accent);
}

/* Splash Full Simulation in Hero */
.hero-splash-full-mock {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
}

.splash-app-frame {
    width: 650px;
    height: 500px;
    background: linear-gradient(135deg, #004d40 0%, #001a15 100%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: rotateX(5deg) rotateY(-10deg);
    transition: 0.5s;
}

.splash-app-frame:hover {
    transform: rotateX(0deg) rotateY(0deg);
}

.islamic-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l5 10 10 5-10 5-5 10-5-10-10-5 10-5 5-10zm0 60l5-10 10-5-10-5-5-10-5 10-10 5 10 5 5 10zM0 30l10 5 5 10 5-10 10-5-10-5-5-10-5 10-10 5zm60 0-10 5-5 10-5-10-10-5 10-5 5-10 5 10 10 5z' fill='%23d4af37' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.splash-layout {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 2;
    direction: rtl;
}

/* Right Side (Logo) */
.splash-main-side {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.s-logo-box {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent);
    transform: rotate(45deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
}

.s-logo-box svg {
    transform: rotate(-45deg);
    display: block;
}

.s-system-name {
    font-size: 2.4rem;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 4px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.s-system-tag {
    color: white;
    opacity: 0.6;
    font-size: 0.85rem;
    font-weight: 300;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 8px;
}

/* Left Side (Features) */
.splash-features-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.1);
    text-align: right;
    direction: rtl;
}

.s-feature {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 12px;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    width: 100%;
    justify-content: flex-start;
}

.s-feature:nth-child(2) {
    animation-delay: 0.1s;
}

.s-feature:nth-child(3) {
    animation-delay: 0.2s;
}

.s-feature:nth-child(4) {
    animation-delay: 0.3s;
}

.s-feature:nth-child(5) {
    animation-delay: 0.4s;
}

.s-feature:nth-child(6) {
    animation-delay: 0.5s;
}

.s-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
}

.s-text {
    flex: 1;
    text-align: right;
    min-width: 0;
}

.s-text h4 {
    color: var(--accent);
    font-size: 0.82rem;
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.s-text p {
    color: white;
    opacity: 0.6;
    font-size: 0.7rem;
    margin: 1px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Progress Area */
.s-progress-area {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    text-align: center;
}

.s-loading-txt {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.s-bar-track {
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.s-bar-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--accent), #fff);
    box-shadow: 0 0 15px var(--accent);
    animation: s-loading 3s infinite ease-in-out;
}

@keyframes s-loading {
    0% {
        width: 0%;
        transform: translateX(-100%);
    }

    50% {
        width: 60%;
    }

    100% {
        width: 100%;
        transform: translateX(100%);
    }
}

/* Trust Bar */
.trust-bar {
    padding: 2.5rem 0;
    background: #fcfcfd;
    border-bottom: 1px solid var(--grey-border);
    text-align: center;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features */
.features-section {
    padding: 120px 0;
    background: #fff;
}

.section-head {
    text-align: center;
    margin: 0 auto 100px auto;
    max-width: 750px;
}

.section-head h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.line {
    width: 60px;
    height: 6px;
    background: var(--accent);
    margin: 0 auto 30px auto;
    border-radius: 10px;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.f-card {
    padding: 50px 35px;
    background: var(--primary-dark);
    border-radius: 45px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.f-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.f-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent);
    pointer-events: none;
}

.f-card.active {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #00362f 100%);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: 0.5s;
}

.f-card:hover .icon-box {
    background: var(--accent);
    color: var(--primary-dark);
    transform: rotate(10deg);
}

.f-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
}

.f-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.8;
}

/* Roadmap Section - Strategic & Premium */
.how-it-works {
    padding: 120px 0;
    background: #fdfaf3;
    position: relative;
    overflow: hidden;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.roadmap-card {
    background: var(--primary-dark);
    border-radius: 45px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

.roadmap-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.step-num-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    border: 1px solid var(--accent);
}

.roadmap-icon {
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent);
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px auto;
    transition: 0.5s;
}

.roadmap-card:hover .roadmap-icon {
    background: var(--accent);
    color: var(--primary-dark);
    transform: rotate(10deg);
}

.roadmap-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.roadmap-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 1150px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 60px auto 0 auto;
        gap: 50px;
    }
}

/* Pricing */
/* Pricing Section */
/* Pricing / Final CTA Section */
.pricing {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #002822 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/islamic-art.png');
    opacity: 0.05;
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.cta-offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-price-box {
    text-align: right;
}

.cta-price-box .p-header {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.cta-price-box .p-amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.cta-price-box .p-amount .big {
    font-size: 7rem;
    line-height: 1;
    color: white;
}

.cta-price-box .p-amount small {
    font-size: 1.8rem;
    opacity: 0.6;
    font-weight: 300;
    color: white;
}

.btn-cta-final {
    display: inline-block;
    padding: 25px 60px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 20px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.4s;
    font-size: 1.6rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-final:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
}

.cta-features-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
}

.cta-features-box h3 {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.cta-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    opacity: 0.9;
}

.cta-list li i {
    color: var(--accent);
    font-size: 1.3rem;
}

.cta-note {
    margin-top: 30px;
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 300;
}

@media (max-width: 1000px) {
    .cta-offer-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .cta-price-box {
        text-align: center;
    }

    .cta-price-box .p-amount {
        justify-content: center;
    }

    .cta-price-box .p-amount .big {
        font-size: 5rem;
    }

    .cta-features-box {
        padding: 30px 20px;
    }

    .cta-list {
        text-align: right;
    }
}

/* Footer */
.footer {
    background: #001a15;
    color: white;
    padding: 120px 0 50px 0;
    margin-top: 0;
    position: relative;
    border-top: 3px solid var(--accent);
}

.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .f-brand {
    max-width: 600px;
    margin-bottom: 40px;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 800;
}

.footer .logo svg {
    width: 50px;
    height: 50px;
}

.footer .f-brand p {
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.f-social-centered {
    margin-bottom: 50px;
}

.footer .social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.footer .social-icons a {
    font-size: 1.8rem;
    color: white;
    opacity: 0.5;
    transition: 0.4s;
}

.footer .social-icons a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-8px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
}

.animate-fade {
    animation: fadeIn 2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 1150px) {
    .hero {
        padding: 120px 0 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        margin: 15px auto 30px auto;
    }

    .hero-splash-full-mock {
        justify-content: center;
        margin-top: 40px;
    }

    /* --- System Showcase Section Updated --- */
    .showcase-section {
        padding: 80px 0;
        background-color: #f8fcfb;
        overflow: hidden;
    }

    .showcase-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

    .showcase-slider {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .shot-card {
        min-width: 100%;
        /* تظهر صورة واحدة فقط في المرة */
        background: #fff;
        overflow: hidden;
        border: none;
    }

    .window-top {
        height: 35px;
        background: #eef2f1;
        display: flex;
        align-items: center;
        padding: 0 20px;
        gap: 8px;
    }

    .window-top span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ff5f56;
    }

    .window-top span:nth-child(2) {
        background: #ffbd2e;
    }

    .window-top span:nth-child(3) {
        background: #27c93f;
    }

    .shot-card img {
        width: 100%;
        height: auto;
        /* يحافظ على النسبة */
        max-height: 600px;
        object-fit: contain;
        display: block;
        background: #fbfbfb;
    }

    .shot-caption {
        padding: 20px;
        text-align: center;
        font-weight: 600;
        color: #004d40;
        background: #fff;
        font-size: 1.1rem;
        border-top: 1px solid #eee;
    }

    /* Slider Navigation Dots */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: var(--gold-primary);
        transform: scale(1.3);
    }

    .splash-app-frame {
        width: 100%;
        max-width: 650px;
        transform: none;
        min-height: 480px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .splash-app-frame {
        width: 100%;
        height: auto;
        min-height: 260px;
        border-radius: 20px;
        transform: none;
    }

    .splash-layout {
        display: flex;
        flex-direction: row;
        direction: rtl;
    }

    .splash-main-side {
        flex: 0 0 40%;
        padding: 10px;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .splash-features-side {
        flex: 1;
        padding: 10px 15px;
    }

    .s-logo-box {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        border-width: 1.5px;
        margin-bottom: 0.8rem;
    }

    .s-logo-box svg {
        transform: rotate(-45deg);
        width: 22px;
        height: 22px;
    }

    .s-system-name {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .s-system-tag {
        font-size: 0.5rem;
        padding-bottom: 2px;
    }

    .s-feature {
        gap: 6px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .s-icon {
        flex: 0 0 18px;
        width: 18px;
        height: 18px;
        border-radius: 4px;
        font-size: 0.5rem;
    }

    .s-text {
        text-align: right;
        flex: 1;
        min-width: 0;
    }

    .s-text h4 {
        font-size: 0.58rem;
        line-height: 1;
        margin: 0;
    }

    .s-text p {
        font-size: 0.45rem;
        line-height: 1;
        margin: 0;
    }

    .s-progress-area {
        bottom: 15px;
        width: 120px;
    }

    .s-loading-txt {
        font-size: 0.4rem;
        margin-bottom: 4px;
    }

    .s-bar-track {
        height: 2px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .split-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vertical-steps {
        padding-right: 0;
        border-right: none;
    }

    .v-dot {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Hero Real Splash Image */
.hero-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
    perspective: 1000px;
}

.hero-splash-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.15);
    display: block;
    object-fit: contain;
    cursor: pointer;
    transform: rotateX(5deg) rotateY(-10deg);
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-splash-img:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.03);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.55), 0 0 0 2px rgba(212, 175, 55, 0.35);
}

/* Video Showcase Styles */
.video-preview-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden !important;
    width: 100%;
}

.video-container-centered {
    max-width: 850px !important; /* Controlled size */
    width: 94% !important;
    margin: 0 auto !important;
}

.video-box-premium {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.05);
    background: #000;
    width: 100% !important;
    height: 0;
    padding-bottom: 81.81%; /* 1080 / 1320 = 0.8181 (Maintains 1320x1080 Aspect Ratio) */
}

.main-system-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block;
    border-radius: 20px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .hero-splash-img { 
        max-width: 420px; 
    }
}

@media (max-width: 900px) {
    /* --- Final Global Video Fixes --- */
#system-video {
    padding: 80px 0;
    background: #fff;
    width: 100% !important;
    overflow: hidden !important;
}

.video-container-centered {
    max-width: 800px !important;
    width: 90% !important;
    margin: 40px auto !important;
}

.video-box-premium {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    background: #000;
}

.main-system-video {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    object-fit: contain !important;
}

body {
    overflow-x: hidden !important;
}