:root {
    /* Theme Variables - Default Light Mode */
    --primary: #6d6d6d;
    --primary-dark: #000000;
    --primary-light: #ffffff;
    --accent: #ffffff;
    --bg-dark: #ffffff;
    --bg-darker: #f5f5f5;
    --bg-section-alt: #fafafa;
    --text-white: #000000;
    --text-dim: rgba(2, 2, 2, 0.7);
    --glass: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-hover: rgba(0, 0, 0, 0.05);
    --header-bg: rgba(255, 255, 255, 0.9);
    --footer-bg: #f5f5f5;
    --card-bg: #ffffff;
    
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* Dark Mode Overrides */
body.dark-mode {
    --primary:#5e5e5e;
    /* Lighter grey for better contrast */
    --primary-dark: #ffffff;
    --primary-light: #121212;
    --accent: #121212;
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    --bg-section-alt: #151515;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --header-bg: rgba(15, 15, 15, 0.9);
    --footer-bg: #0a0a0a;
    --card-bg: #1a1a1a;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

/* Fonts based on Language */
[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
}

[lang="en"] body {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Preloader */
.loader-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

header.scrolled {
    background: var(--header-bg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

body.dark-mode header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-white);
}

.logo-text span {
    color: var(--primary);
}

/* Image logo styles */
.logo-link {
    display: inline-block;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 100%;
    max-height: 90px;
    /* match header height */
    width: auto;
    display: block;
    object-fit: contain;
    padding: 6px 0;
    /* small vertical breathing space */
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .logo-img {
        max-height: 72px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-height: 56px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

[dir="rtl"] .nav-links {
    flex-direction: row;
}

[dir="ltr"] .nav-links {
    flex-direction: row;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-btn, .theme-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lang-btn:hover, .theme-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.theme-btn i {
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary-dark);
    color: var(--bg-dark) !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    border: 2px solid var(--primary-dark);
    transition: var(--transition-fast);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--primary-dark) !important;
}

.btn-outline {
    border: 2px solid var(--primary-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    color: var(--text-white);
    transition: var(--transition-fast);
    cursor: pointer;
    background: transparent;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--bg-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.02), transparent);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding-top: 150px;
    }
    
    .hero-img-wrapper {
        margin-top: 50px;
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

/* Sections Common */
section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

.sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* Grid-2 Utility */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Grid-3 Utility */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Grid-4 Utility */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-us {
    background: var(--bg-section);
    padding: 100px 0;
}

.why-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-card .icon-box {
    width: 80px;
    height: 80px;
    background: var(--glass);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.why-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.why-card p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats Section */
.stats {
    background: var(--bg-section-alt);
    padding: 80px 0;
}

.stat-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--text-white);
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

/* About Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.about-card {
    background: var(--glass);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: background-color 0.3s, border-color 0.3s, translate 0.3s;
    text-align: center;
}

.about-card:hover {
    border-color: var(--primary-light);
    translate: 0 -5px;
    background: var(--glass-hover);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.stats-box {
    display: flex;
    gap: 30px;
    background: var(--glass);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}


/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-glass {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-card:hover .card-glass {
    opacity: 1;
    transform: translate(10%, 10%);
}

.service-card i,
.service-card img,
.service-card video {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    display: block;
    transition: var(--transition-smooth);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--primary);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border-radius: 20px;
}

.service-card:hover i {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.service-card img,
.service-card video {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background: var(--bg-darker);
}

.service-card:hover img,
.service-card:hover video {
    transform: scale(1.04);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: auto;
}

/* Web Links inside Service Cards */
.web-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 5;
}

.web-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white) !important;
    transition: var(--transition-fast);
}

.web-link-item i:first-child {
    font-size: 1.1rem;
    color: var(--primary);
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-link-item:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    transform: translateX(-5px);
}

.web-link-item:hover i {
    color: #fff;
}

.web-link-arrow {
    margin-right: auto;
    font-size: 0.85rem;
    opacity: 0.6;
}

[dir="ltr"] .web-link-arrow {
    margin-right: 0;
    margin-left: auto;
}


/* Addons */
.addons-section {
    margin-top: 80px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.addon-card {
    background: var(--glass);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px dashed var(--primary);
    text-align: center;
    transition: background-color 0.3s, border-color 0.3s, scale 0.3s;
}

.addon-card:hover {
    background: var(--glass-hover);
    scale: 1.05;
}

.addon-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--glass);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: background-color 0.3s, border-color 0.3s, translate 0.3s;
}

.portfolio-item:hover {
    translate: 0 -10px;
    border-color: var(--primary);
}

.portfolio-img {
    height: 250px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}

.portfolio-img i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.portfolio-info {
    padding: 25px;
}

.service-card.featured-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 50px;
}

.service-card.featured-card img,
.service-card.featured-card video {
    height: 450px;
    margin-bottom: 0;
}

.service-card.featured-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .service-card.featured-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .service-card.featured-card img,
    .service-card.featured-card video {
        height: 300px;
    }
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Reels Link Card */
a.reels-link-card {
    color: inherit;
    text-decoration: none !important;
    border: 2px solid var(--primary) !important;
    position: relative;
}

a.reels-link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

a.reels-link-card:hover::before {
    opacity: 0.05;
}

a.reels-link-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.reels-see-more {
    display: inline-block;
    margin-top: 16px;
    padding: 7px 18px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    animation: pulse-badge 2s ease-in-out infinite;
    align-self: flex-start;
    position: relative;
    z-index: 2;
}

a.reels-link-card:hover .reels-see-more {
    transform: translateX(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.04); }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.05;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info h5 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-section-alt) 100%);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.8;
}


/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.process-card {
    background: var(--glass);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: background-color 0.3s, border-color 0.3s, translate 0.3s;
    position: relative;
}

.process-card:hover {
    border-color: var(--primary);
    translate: 0 -10px;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.06);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

body.dark-mode .step-num {
    color: rgba(255, 255, 255, 0.06);
}

.process-card h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.process-card p {
    color: var(--text-dim);
}


/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: background-color 0.3s, border-color 0.3s, translate 0.3s, scale 0.3s;
}

.price-card:hover {
    translate: 0 -5px;
    border-color: var(--primary);
}

.price-card.featured {
    border-color: var(--primary);
    scale: 1.05;
    z-index: 10;
}

.price-card.featured:hover {
    scale: 1.07;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 900;
    margin: 20px 0;
}

.price-card .price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.features {
    margin-bottom: 30px;
}

.features li {
    padding: 10px 0;
    color: var(--text-dim);
    border-bottom: 1px solid var(--glass-border);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* FAQ Section Styles */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--glass);
    transition: var(--transition-fast);
}

.faq-question h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    border-color: var(--primary);
    background: var(--bg-section-alt);
}

.faq-item.active .faq-question {
    background: transparent;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 300px; /* Adjust as needed */
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Dark mode specific tweaks for FAQ */
body.dark-mode .faq-item {
    background: #1a1a1a;
}
body.dark-mode .faq-item.active {
    background: #202020;
}


/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    display: grid;
    gap: 20px;
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    color: var(--text-white);
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(109, 109, 109, 0.1);
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: var(--footer-bg);
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand p {
    margin: 20px 0;
    color: var(--text-dim);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-dim);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-right: 10px;
}

.footer-newsletter p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
}

.newsletter-form button {
    width: 60px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: var(--bg-darker);
    font-size: 1.2rem;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .contact-wrapper {
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    header {
        height: 80px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 1000;
    }

    .menu-toggle span {
        width: 30px;
        height: 2px;
        background: var(--text-white);
        transition: var(--transition-fast);
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px;
    }
}

/* LTR Specific Adjustments */
[dir="ltr"] .hero {
    background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.02), transparent);
}

/* Mobile Adaptations */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    header {
        height: 70px;
    }
}

/* Floating Socials */
.floating-social-side {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.f-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.f-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}

.f-link.fb:hover { background: #1877F2; border-color: #1877F2; }
.f-link.in:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; }
.f-link.wa:hover { background: #25D366; border-color: #25D366; }
.f-link.tk:hover { background: #000000; border-color: #333; }

@media (max-width: 768px) {
    .floating-social-side {
        left: 20px;
        bottom: 20px;
        gap: 10px;
    }
    
    .f-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Lightbox - Media Preview */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-media {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.service-card img, .service-card video {
    cursor: zoom-in;
}