/* Global Vars */
:root {
    --bg-color: #0b0f19;
    --bg-secondary: #151b2b;
    --text-primary: #ffffff;
    --text-secondary: #cfd8dc;
    --accent-blue: #00d2ff;
    --accent-purple: #9d50bb;
    --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #9d50bb 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Cairo', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9d50bb 0%, #00d2ff 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: #fff;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 30px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 1px solid var(--glass-border);
    list-style: none;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    width: 100%;
    text-align: center;
    padding: 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-links li a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 20px;
    display: block;
    width: 100%;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--accent-blue);
}

.nav-cta {
    background: var(--accent-gradient);
    padding: 8px 20px !important;
    border-radius: 25px;
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .nav-links {
        width: 280px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    padding-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 15, 25, 0.7) 0%, rgba(11, 15, 25, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    color: var(--accent-blue);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent-blue);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--accent-gradient);
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Printing Section */
.printing-section {
    background: var(--bg-color);
}

.printing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.printing-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.printing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.printing-card:hover::before {
    opacity: 1;
}

.printing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.3);
}

.printing-card .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(157, 80, 187, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-purple);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.printing-card:hover .icon-box {
    background: var(--accent-gradient);
    color: white;
    transform: rotateY(360deg);
    box-shadow: 0 8px 20px rgba(157, 80, 187, 0.4);
}

.printing-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.printing-card p {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Wide Printing Card */
.printing-card-wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .printing-card-wide {
        grid-column: span 1;
    }
}

/* Printing Types List */
.printing-types-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: right;
}

.printing-types-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.printing-types-list li:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateX(-5px);
}

.printing-types-list li i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-left: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.printing-types-list li span {
    color: var(--text-secondary);
    line-height: 1.6;
}

.printing-types-list li strong {
    color: var(--text-primary);
}

/* Instagram Section */
.instagram-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.features-list {
    margin: 30px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list li i {
    color: var(--accent-purple);
    margin-left: 15px;
    font-size: 1.2rem;
}

.image-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
}

.floating-image {
    max-width: 100%;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CTA Final */
.cta-final {
    background: linear-gradient(0deg, var(--bg-color) 0%, rgba(157, 80, 187, 0.1) 100%);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-5px);
}

/* Animations */
.fade-in-up,
.fade-in-right,
.fade-in-left {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .grid-2-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-list {
        display: inline-block;
        text-align: right;
    }

    .fade-in-right,
    .fade-in-left {
        transform: translateY(30px);
        /* Reset to vertical for mobile */
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 120px;
    }
}

/* Video Section */
.video-section {
    background: var(--bg-secondary);
}

.video-container {
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.2);
    border: 1px solid var(--glass-border);
    aspect-ratio: 16 / 9;
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Arabic RTL */
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999;
    text-decoration: none;
    font-size: 1rem;
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #20bd5a;
}

/* Service Card Button */
.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.service-btn:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.service-card:hover .service-btn {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.service-card:hover .service-btn:hover {
    background: var(--accent-purple);
    color: white;
}

/* Why Momento Grid */
.why-momento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-blue);
}

.why-card img {
    width: 100%;
    height: 140px;
    /* Reduced Size */
    object-fit: cover;
    transition: var(--transition);
}

.why-card:hover img {
    transform: scale(1.1);
}

.why-content {
    padding: 30px;
}

.why-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.why-content p {
    font-size: 1rem;
    color: var(--text-secondary);
}