/*

TemplateMo 595 3d coverflow

https://templatemo.com/tm-595-3d-coverflow

*/

@charset "utf-8";

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #8b9ff5;
    --bg-dark: #000000;
    --bg-body: radial-gradient(ellipse at center, #1a1a2e 0%, #000000 100%);
    --bg-card: rgba(15, 15, 30, 0.95);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-bg: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f0f 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    --shadow-main: 0 10px 20px rgba(102, 126, 234, 0.4);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.8);
    --border-main: 1px solid rgba(255, 255, 255, 0.1);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Background Particles */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
    pointer-events: none;
    /* Don't interfere with clicks */
    background: var(--bg-body) !important;
    transform: translateZ(0);
    /* Force hardware acceleration to prevent flickering */
    backface-visibility: hidden;
}

/* Global Background Effects */
.dot-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    /* Removed the dots, keeping a smooth ambient blue mood to merge with our lights */
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 80%);
}

.glow-overlay {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
    border-top: 3px solid var(--accent-color);
    border-right: 1px solid rgba(139, 159, 245, 0.3);
    box-shadow: 0 -15px 40px rgba(102, 126, 234, 0.4), inset 0 10px 20px rgba(102, 126, 234, 0.1);
    opacity: 0.8;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 10001;
    /* Above header and cookie banner */
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 5px;
    border: 2px solid #0f0f1a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Reveal on Scroll */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[dir="rtl"] .reveal-left {
    transform: translateX(40px);
}

[dir="rtl"] .reveal-right {
    transform: translateX(-40px);
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0);
}

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right,
    [dir="rtl"] .reveal-left,
    [dir="rtl"] .reveal-right {
        transform: translateY(30px) !important;
    }

    .reveal-active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 15px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: var(--border-main);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: transform var(--transition-slow), opacity 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(255, 200, 50, 0.4));
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.cookie-content p strong {
    color: #fff;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.cookie-link:hover {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cookie-btn.accept {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-main);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   Shared Sub-Page Styles (Privacy, Terms, etc.)
   ========================================== */
.sub-page-section {
    padding: 120px 20px 60px;
    min-height: 100vh;
    color: var(--text-main);
    display: flex;
    justify-content: center;
}

.sub-page-container {
    max-width: 900px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--border-main);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.sub-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-page-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sub-page-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.sub-page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

[dir="rtl"] .sub-page-content ul {
    padding-left: 0;
    padding-right: 20px;
}

.sub-page-content li {
    margin-bottom: 10px;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.back-home:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-main);
    color: white;
}

@media (max-width: 768px) {
    .sub-page-container {
        padding: 20px;
    }

    .sub-page-content h1 {
        font-size: 2rem;
    }
}

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    background-color: #1a1a2e !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background: var(--bg-body);
    background-attachment: fixed;
    background-color: #1a1a2e !important;
}

[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}

body.loaded {
    overflow-y: auto;
    overflow-x: hidden;
}

html.menu-open,
body.menu-open {
    overflow: hidden !important;
    height: 100vh !important;
    max-height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
    touch-action: none;
    -ms-touch-action: none;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: auto;
}

/* ... existing code ... */
/* Decorative corner elements */
.corner-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    pointer-events: none;
    /* Prevent interference */
}

.corner-decoration.top-left {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.corner-decoration.bottom-right {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

/* Mobile constraint for showcase */
@media (max-width: 768px) {
    .showcase-display {
        overflow: hidden;
        /* Contain decorations */
        padding: 20px;
    }

    .corner-decoration.top-left {
        top: 0;
        left: 0;
    }

    .corner-decoration.bottom-right {
        bottom: 0;
        right: 0;
    }
}

/* Preloader */


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-logo svg {
    width: 100%;
    height: 100%;
}

.preloader-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(102, 126, 234, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
    z-index: 900;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[dir="rtl"] .whatsapp-float {
    left: auto;
    right: 30px;
}

[dir="ltr"] .whatsapp-float {
    right: auto;
    left: 30px;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
    opacity: 0.6;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5),
        inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-tooltip {
    position: absolute;
    left: 65px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(-10px);
}

[dir="rtl"] .whatsapp-tooltip {
    left: auto;
    right: 65px;
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-in"] {
    opacity: 0;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Sections */
.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

#home {
    background: transparent;
}

#about {
    background: transparent;
}

#services {
    background: transparent;
}

#how-it-works {
    background: transparent;
}

#pricing {
    background: transparent;
}

#testimonials {
    background: transparent;
}

#faq {
    background: transparent;
}

#contact {
    background: transparent;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #000000;
    /* Solid Black as requested */
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    /* Themed gold border */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: all 0.3s ease;
}


.header.scrolled {
    background: #000000;
    height: 70px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    /* Stronger gold on scroll */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
}

/* Cleaned up duplicate header definition */

.header p {
    color: white;
    font-size: x-large;
}

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    width: 100%;
    height: 100%;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.mobile-only {
    display: none;
}

.menu-item:hover {
    color: white;
    transform: translateY(-2px);
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-fast);
}

.menu-item:hover::after {
    width: 100%;
}

.menu-item.active {
    color: white;
}

.menu-item.active::after {
    width: 100%;
}

.menu-item.external::before {
    content: '↗';
    margin-right: 5px;
    font-size: 12px;
    opacity: 0.7;
}

/* Header Actions & Lang Switcher */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.lang-dropdown:hover .lang-current {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 160px;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateX(-5px);
}

[dir="rtl"] .lang-item:hover {
    transform: translateX(5px);
}

/* Ensure Logo Icon is on the right of the text in Arabic */
[dir="rtl"] .logo-container {
    flex-direction: row;
}

.lang-item .flag-icon {
    width: 18px;
    height: 12px;
    border-radius: 1px;
    object-fit: cover;
}

.lang-btn .flag-icon,
.lang-current .flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-dropdown .arrow-icon {
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.lang-dropdown:hover .arrow-icon {
    transform: rotate(180deg);
}

/* Mobile menu open button */
.menu-open-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1200;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.menu-open-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Mobile menu close button */
.menu-close-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 18px;
    cursor: pointer;
    z-index: 9999;
    transition: background 0.3s ease, border 0.3s ease, transform 0.3s ease;

    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

body.menu-open .menu-close-btn {
    display: flex !important;
}

.menu-close-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Specific X shape for the close button */
.menu-close-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-close-btn span:nth-child(2) {
    opacity: 0;
}

.menu-close-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px !important;
        height: 70px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .logo-container {
        gap: 8px !important;
    }

    .logo {
        width: 35px !important;
        height: 35px !important;
    }

    .logo-text {
        font-size: 18px !important;
    }

    .menu-open-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 25, 0.92) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        opacity: 0;
        z-index: 1100;
        gap: 30px;
        overflow: hidden !important;
        -webkit-overflow-scrolling: auto;
    }

    /* slide-fade-in animation */
    @keyframes slide-fade-in {
        from {
            transform: translateX(100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slide-fade-in-rtl {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .main-menu.active {
        animation: slide-fade-in 0.3s forwards;
    }

    [dir="rtl"] .main-menu {
        left: 0 !important;
        right: auto !important;
        transform: translateX(-100%);
        opacity: 0;
    }

    [dir="rtl"] .main-menu.active {
        transform: translateX(0);
        opacity: 1;
        animation: slide-fade-in-rtl 0.3s forwards;
    }

    [dir="rtl"] .main-menu .menu-item {
        text-align: right !important;
        opacity: 0;
        transform: translateY(20px);
    }

    [dir="rtl"] .main-menu.active .menu-item {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .menu-item {
        font-size: 24px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .main-menu.active .menu-item {
        opacity: 1;
        transform: translateY(0);
        z-index: 1101;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Coverflow Resizing */
    .coverflow-item {
        width: 220px;
        height: 220px;
    }

    .coverflow {
        height: 300px;
    }

    /* Strict overflow handling */
    .coverflow-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 900;
}

[dir="rtl"] .scroll-to-top {
    right: auto;
    left: 20px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* Home Section with Coverflow */
.coverflow-wrapper {
    width: 100%;

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.coverflow-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    position: relative;
    opacity: 0;
    /* Hidden initially */
    transition: opacity 1s ease;
    outline: none;
    /* Remove yellow focus box */
}

.coverflow-container.loaded {
    opacity: 1;
    /* Revealed when ready */
}

.coverflow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 400px;
}

.coverflow-item {
    position: absolute;
    width: 300px;
    height: 300px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    user-select: none;
}

.coverflow-item .cover {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    background: #333;
}

.coverflow-item .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Reflection */
.coverflow-item .reflection {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transform: scaleY(-1);
    opacity: 0.2;
    filter: blur(2px);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 1) 100%);
    overflow: hidden;
}

/* Active item (center) */
.coverflow-item.active {
    z-index: 100;
    transform: translateX(0) translateZ(0) rotateY(0deg);
}

.coverflow-item.active .cover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

/* Navigation */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 200;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav-button.prev {
    left: 50px;
}

[dir="rtl"] .nav-button.prev {
    left: auto;
    right: 50px;
}

.nav-button.next {
    right: 50px;
}

[dir="rtl"] .nav-button.next {
    right: auto;
    left: 50px;
}

/* Dots indicator */
.dots-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 200;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

/* Info display */
.info {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 200;
}

.info h2 {
    font-size: 32px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

.info p {
    font-size: 16px;
    opacity: 0.7;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Play/Pause Button */
.play-pause-button {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 200;
}

.play-pause-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) scale(1.1);
}

.play-pause-button .pause-icon {
    font-size: 16px;
    letter-spacing: 2px;
}

/* About Section */
.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 48px;
    margin-top: 60px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-display {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    /* Enable 3D effects */
}

.showcase-main {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.showcase-main:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.showcase-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.showcase-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.showcase-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.showcase-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.badge:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.badge:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Decorative corner elements */
.corner-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.corner-decoration.top-left {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

[dir="rtl"] .corner-decoration.top-left {
    left: auto;
    right: -20px;
    border-left: none;
    border-right: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 0 20px 0 0;
}

.corner-decoration.bottom-right {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

[dir="rtl"] .corner-decoration.bottom-right {
    right: auto;
    left: -20px;
    border-right: none;
    border-left: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 0 0 0 20px;
}

.about-info {
    padding-right: 40px;
}

[dir="rtl"] .about-info {
    padding-right: 0;
    padding-left: 40px;
}

.about-info h3 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

[dir="rtl"] .feature-list li {
    text-align: right;
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: buttonPulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    animation: none;
    /* Pause pulse on hover */
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

[dir="rtl"] .cta-button:hover svg {
    transform: translateX(-5px) rotate(180deg);
}

[dir="rtl"] .cta-button svg {
    transform: rotate(180deg);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-number::after {
    content: attr(data-suffix);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

.contact-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section {
    padding-left: 40px;
}

[dir="rtl"] .contact-info-section {
    padding-left: 0;
    padding-right: 40px;
}

.contact-info-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.contact-info-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-form-section {
    padding-right: 40px;
}

[dir="rtl"] .contact-form-section {
    padding-right: 0;
    padding-left: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.5;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Smooth image loading */
.image-loading {
    background: linear-gradient(45deg, #333, #555);
    position: relative;
}

.image-loading::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.5;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-copyright a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #764ba2;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

[dir="rtl"] .scroll-to-top {
    right: auto;
    left: 30px;
}

[dir="ltr"] .scroll-to-top {
    left: auto;
    right: 30px;
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {

    /* Prevent text selection on mobile for better UX */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

    /* Better touch targets */
    button,
    a,
    .menu-item {
        min-height: 44px;
        min-width: 44px;
    }

    /* Smooth scrolling on mobile */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Better form inputs on mobile */
    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        height: 400px;
    }

    .about-info {
        padding-right: 0;
        text-align: center;
    }

    .feature-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px;
    }

    /* Contact section responsive */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-section {
        padding-left: 0;
    }

    .contact-form-section {
        padding-right: 0;
    }
}

@media (max-width: 768px) {





    /* Reduce section gaps on mobile */
    .section {
        min-height: auto !important;
    }

    /* Home Section Mobile */
    .coverflow-wrapper {
        padding-top: 65px;
        height: calc(100vh - 65px);
    }

    .coverflow-item {
        width: 220px;
        height: 220px;
    }

    .coverflow {
        height: 300px;
    }

    .nav-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .nav-button.prev {
        left: 10px;
    }

    .nav-button.next {
        right: 10px;
    }

    .info {
        top: 80px;
        padding: 0 20px;
        text-align: center;
    }

    .info h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .info p {
        font-size: 14px;
    }

    .dots-container {
        bottom: 50px;
    }

    .play-pause-button {
        bottom: 90px;
        width: 45px;
        height: 45px;
    }

    /* About Section Mobile */
    .about-content {
        padding: 30px 20px;
    }

    .about-header {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .about-header h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .about-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-main {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 40px !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .about-visual {
        height: auto !important;
        min-height: 300px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .showcase-display {
        max-width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

    .showcase-main {
        width: 90% !important;
        max-width: 320px !important;
        height: auto !important;
        min-height: 280px !important;
        padding: 25px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .showcase-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }

    .showcase-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .showcase-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .showcase-badges {
        gap: 10px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .about-info {
        padding-right: 0;
        text-align: center;
    }

    .about-info h3 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .about-info p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .feature-list {
        text-align: center;
        list-style: none;
        padding: 0;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .feature-list li {
        font-size: 15px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 20px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Services Section Mobile */
    .services-content {
        padding: 30px 20px;
    }

    .services-header {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .services-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* How It Works Mobile */
    .how-it-works-content {
        padding: 30px 20px;
    }

    .how-it-works-header {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .how-it-works-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .how-it-works-header p {
        font-size: 16px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-item {
        text-align: center;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .step-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Pricing Mobile */
    .pricing-content {
        padding: 30px 20px;
    }

    .pricing-header {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .pricing-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .pricing-header p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-price .amount {
        font-size: 48px;
    }

    .pricing-features {
        min-height: auto;
        margin: 25px 0;
    }

    .pricing-features li {
        font-size: 14px;
        padding: 10px 0;
    }

    /* Testimonials Mobile */
    .testimonials-content {
        padding: 30px 20px;
    }

    .testimonials-header {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .testimonials-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* FAQ Mobile */
    .faq-content {
        padding: 30px 20px;
    }

    .faq-header {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .faq-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 20px 20px;
    }

    /* Contact Mobile */
    .contact-content {
        padding: 30px 20px;
    }

    .contact-header {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }

    .contact-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .contact-info-section,
    .contact-form-section {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .contact-details {
        align-items: center !important;
        width: 100% !important;
    }

    .contact-item {
        justify-content: center !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }

    .social-links {
        text-align: center !important;
        width: 100% !important;
    }

    .social-buttons {
        justify-content: center !important;
    }

    .contact-info-section {
        padding-right: 0;
        text-align: center;
    }

    .contact-info-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .contact-info-section>p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .contact-item {
        padding: 18px;
        gap: 15px;
        justify-content: center;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-text h4 {
        font-size: 15px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 16px 30px;
        font-size: 16px;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Scroll to top button mobile */
    .scroll-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        font-size: 18px !important;
        z-index: 900 !important;
        display: flex !important;
    }

    [dir="rtl"] .scroll-to-top {
        right: auto !important;
        left: 20px !important;
    }

    .scroll-to-top.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        right: auto;
        width: 45px;
        height: 45px;
    }

    [dir="rtl"] .whatsapp-float {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
        padding: 0 15px;
    }

    .header.scrolled {
        height: 60px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 18px;
    }

    .menu-toggle {
        display: flex !important;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 70px;
        right: 15px;
        font-size: 16px;
        z-index: 900;
    }

    .coverflow-item {
        width: 180px;
        height: 180px;
    }

    .about-content,
    .contact-content {
        padding: 20px;
    }

    /* Additional contact section mobile optimization for small screens */
    .contact-container {
        gap: 30px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-header p {
        font-size: 16px;
        padding: 0 10px;
    }

    .contact-info-section {
        margin-bottom: 20px !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .contact-info-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .contact-info-section>p {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
        gap: 12px;
        justify-content: center;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-text h4 {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 12px;
        word-break: break-word;
    }

    .social-links {
        margin-top: 30px;
        text-align: center;
    }

    .social-links h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .social-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .contact-form {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 25px;
    }
}

/* Services Section */
.services-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 60px;
}

.services-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 60px;
}

.how-it-works-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0.3;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
}

.step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive for Services and How It Works */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container::before {
        display: none;
    }
}

@media (max-width: 768px) {

    .services-header h2,
    .how-it-works-header h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-card {
        padding: 30px;
    }
}

/* Pricing Section */
.pricing-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 60px;
}

.pricing-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border-color: rgba(102, 126, 234, 0.8);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pricing-price {
    margin: 40px 0 30px;
}

.pricing-price .currency {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    min-height: 250px;
}

[dir="rtl"] .pricing-features {
    text-align: right;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.pricing-guarantee {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.pricing-guarantee:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.guarantee-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.guarantee-text {
    text-align: left;
}

[dir="rtl"] .guarantee-text {
    text-align: right;
}

.guarantee-text h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.guarantee-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-top: 40px;
        padding: 25px;
    }

    .guarantee-text {
        text-align: center !important;
    }

    .guarantee-text h3 {
        font-size: 20px;
    }

    .guarantee-text p {
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 60px;
}

.testimonials-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info h4 {
    margin: 0;
    color: white;
    font-size: 16px;
}

.author-info p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* FAQ Section */
.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.faq-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(102, 126, 234, 0.5);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: white;
    flex: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

/* Horizontal line (always visible = the minus) */
.faq-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #667eea;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
    border-radius: 2px;
}

/* Vertical line (rotates away to form minus) */
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 16px;
    background: #667eea;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    border-radius: 2px;
}

.faq-item.active .faq-toggle::before {
    background: #764ba2;
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
    background: #764ba2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Mobile Optimizations */
@media (max-width: 768px) {

    /* Prevent text selection on mobile for better UX */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

    /* Better touch targets */
    button,
    a,
    .menu-item {
        min-height: 44px;
        min-width: 44px;
    }

    /* Smooth scrolling on mobile */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Better form inputs on mobile */
    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Better mobile spacing */
    .section {
        padding: 20px 0;
    }

    /* Improved mobile typography */
    h1,
    h2,
    h3 {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Better button sizes on mobile */
    .cta-button,
    .pricing-button,
    .submit-btn {
        padding: 18px 30px;
        font-size: 16px;
    }

    /* Optimized images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* PWA Styles */
@media (display-mode: standalone) {
    .header {
        padding-top: env(safe-area-inset-top);
    }

    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .coverflow-item {
        width: 150px;
        height: 150px;
    }

    .section {
        min-height: auto;
        padding: 40px 0;
    }
}

/* Responsive for new sections */
@media (max-width: 1024px) {

    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-header h2,
    .testimonials-header h2,
    .faq-header h2 {
        font-size: 36px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Optimized images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    .service-card,
    .pricing-card,
    .testimonial-card {
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-main,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        height: auto;
    }

    .about-info,
    .contact-info-section,
    .contact-form-section {
        padding: 0;
        text-align: center;
    }

    /* Fix showcase on mobile */
    .showcase-display {
        height: auto;
        padding: 20px;
    }

    .showcase-main {
        height: auto;
        min-height: 350px;
    }

    .corner-decoration {
        width: 40px;
        height: 40px;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: auto !important;
    }

    .corner-decoration.bottom-right {
        top: auto !important;
        left: auto !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    /* RTL specific reset for decorations on mobile */
    [dir="rtl"] .corner-decoration.top-left {
        right: 0 !important;
        left: auto !important;
    }

    [dir="rtl"] .corner-decoration.bottom-right {
        left: 0 !important;
        right: auto !important;
    }

    .nav-button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .nav-button.prev {
        left: 10px;
    }

    .nav-button.next {
        right: 10px;
    }

    /* RTL Slider Nav Mobile */
    [dir="rtl"] .nav-button.prev {
        left: auto;
        right: 10px;
    }

    [dir="rtl"] .nav-button.next {
        right: auto;
        left: 10px;
    }

    /* RTL Mobile Specifics */
    [dir="rtl"] .about-info {
        padding-left: 0;
        text-align: center;
    }

    [dir="rtl"] .feature-list li {
        justify-content: center;
    }

    [dir="rtl"] .whatsapp-float {
        left: auto;
        right: 15px;
    }

    [dir="rtl"] .scroll-to-top {
        right: auto;
        left: 15px;
    }
}

/* Custom Modal Popup Styles */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(30, 30, 45, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.custom-modal.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.custom-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    position: relative;
}

.modal-icon.success {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    box-shadow: 0 10px 20px rgba(150, 201, 61, 0.3);
}

.modal-icon.error {
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    box-shadow: 0 10px 20px rgba(255, 95, 109, 0.3);
}

.modal-title {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-close-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

.modal-close-btn:active {
    transform: translateY(0);
}

/* ==========================================
   Page Transitions
   ========================================== */
body {
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: opacity;
}

body.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Ensure content is ready for fade-in after preloader */

/* ==========================================
   Pricing Section V2 — Advanced Layout
   ========================================== */

.pricing-content-v2 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    color: white;
}

/* Section Header */
.pricing-header-v2 {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}

.pricing-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.pricing-header-v2 h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.billing-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 4px;
    gap: 2px;
}

.billing-btn {
    padding: 10px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.billing-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.4);
}

.billing-save {
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
}

.billing-btn:not(.active) .billing-save {
    color: #22c55e;
}

/* Plan Cards */
.plan-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.plan-card {
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.plan-starter,
.plan-enterprise {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.plan-featured {
    background: #0f172a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.25);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.plan-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.plan-en-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dim);
    text-align: center;
}

.plan-ar-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-main);
    text-align: center;
}

.plan-featured .plan-en-name {
    color: rgba(255, 255, 255, 0.4);
}

.plan-featured .plan-ar-name {
    color: rgba(255, 255, 255, 0.9);
}

.plan-price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.plan-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
}

.plan-featured .plan-amount {
    color: #fff;
}

.plan-currency {
    font-size: 12px;
    color: var(--text-dim);
}

.plan-featured .plan-currency {
    color: rgba(255, 255, 255, 0.3);
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 14px 0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-cta-light {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.plan-cta-light:hover {
    background: rgba(102, 126, 234, 0.2);
    color: var(--primary-color);
    border-color: rgba(102, 126, 234, 0.4);
}

.plan-cta-featured {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.45);
}

.plan-cta-featured:hover {
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.6);
    color: #fff;
}

/* Plan Card Internal Layout */
.plan-card {
    display: flex;
    flex-direction: column;
}

.plan-card-top {
    margin-bottom: 18px;
}

.plan-feat-list {
    list-style: none;
    margin: 0 0 22px 0;
    padding: 0;
    flex: 1;
    /* push CTA to bottom equally */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

.plan-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.5;
}

.plan-feat-list li:last-child {
    border-bottom: none;
}

.plan-feat-list li strong {
    color: var(--text-main);
    font-weight: 700;
}

.plan-featured .plan-feat-list li {
    color: rgba(255, 255, 255, 0.65);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.plan-featured .plan-feat-list li strong {
    color: #fff;
}

.pf-check {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-featured .pf-check {
    color: #8b9ff5;
}

.pf-dash {
    color: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pf-support {
    margin-top: 4px;
    padding-top: 10px !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Equal height cards on desktop */
@media (min-width: 769px) {
    .plan-cards-grid {
        align-items: stretch;
    }
}


/* FOMO Banner */
.fomo-banner {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    margin-bottom: 24px;
    overflow: hidden;
}

.fomo-glow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: radial-gradient(ellipse at top right, rgba(102, 126, 234, 0.12), transparent);
    border-radius: 16px;
    pointer-events: none;
}

[dir="rtl"] .fomo-glow {
    right: auto;
    left: 0;
    background: radial-gradient(ellipse at top left, rgba(102, 126, 234, 0.12), transparent);
}

.fomo-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fomo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fomo-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 3px 0;
}

.fomo-sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    margin: 0;
}

.fomo-cta {
    background: var(--gradient-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.fomo-cta:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: #fff;
}

/* Comparison Table */
.comparison-table-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-col-label {
    padding: 18px 24px;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.comp-col-plan {
    padding: 18px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
}

.comp-featured-col {
    background: rgba(102, 126, 234, 0.06);
}

/* Category rows */
.comp-cat-label {
    padding: 8px 24px;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 255, 255, 0.02);
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.comp-row:hover {
    background: rgba(102, 126, 234, 0.04);
}

.comp-feat {
    padding: 12px 24px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.comp-val {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-val-check {
    color: var(--plan-accent, var(--primary-color));
    font-size: 15px;
    font-weight: 700;
}

.comp-val-dash {
    color: rgba(255, 255, 255, 0.12);
    font-size: 15px;
}

.comp-val-text {
    color: var(--plan-accent, var(--primary-color));
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

/* Devices note */
.pricing-devices-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 11px;
    margin-top: 12px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .plan-cards-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-featured {
        order: -1;
    }

    .comparison-header,
    .comp-row {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }

    .comp-feat,
    .comp-col-label,
    .comp-cat-label {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 11px;
    }

    .fomo-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px;
    }

    .fomo-left {
        flex-direction: column;
    }

    .pricing-header-v2 h2 {
        font-size: 32px;
    }

    .pricing-subtext {
        font-size: 16px;
    }

    .pricing-content-v2 {
        padding: 30px 20px;
    }

    .pricing-header-v2 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .billing-toggle {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .comparison-header,
    .comp-row {
        grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
    }

    .comp-feat {
        font-size: 10px;
    }

    .comp-val-text,
    .comp-val-check,
    .comp-val-dash {
        font-size: 10px;
    }
}