/* Color Palette & Custom Variable Tokens */
:root {
    --bg-dark: #07070a;
    --bg-card: #121217;
    --primary: #10b981;
    --primary-glow: rgba(16, 185, 129, 0.15);
    --primary-hover: #059669;
    --accent: #d4af37;
    --accent-glow: rgba(212, 175, 55, 0.15);
    --accent-hover: #b59410;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --text-gray-light: #e5e7eb;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(212, 175, 55, 0.25);
    --border-emerald: rgba(16, 185, 129, 0.25);
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-arabic: 'Cairo', var(--font-sans);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1280px;
}

/* Base Document Formatting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* RTL Specific Directives */
html[dir="rtl"] body {
    font-family: var(--font-arabic);
}

/* Container & Grids */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Scroll Progress Tracker */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Sticky Header CSS */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 500;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header-main.sticky {
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 70px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Wordmark Styling */
.logo-wordmark {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-wordmark span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Language & CTA Switches */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.btn-lang-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.btn-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Action Buttons styling */
.btn-primary, .btn-primary-outline, .btn-secondary, .btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-primary-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

/* Mobile Side Navigation Drawer */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 600;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 900;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-content {
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

html[dir="rtl"] .mobile-menu-overlay {
    left: auto;
    right: -100%;
}

html[dir="rtl"] .mobile-menu-overlay.active {
    right: 0;
    left: auto;
}

html[dir="rtl"] .mobile-menu-content {
    border-right: none;
    border-left: 1px solid var(--border-color);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-menu-btn {
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.mobile-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--primary);
    padding-inline-start: 8px;
}

/* Hero Section Layout */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--border-emerald);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* 3D Visualizer Canvas & Fallback Elements */
.hero-3d-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.css-3d-fallback {
    display: none;
    position: absolute;
    width: 250px;
    height: 250px;
    z-index: 5;
}

.rotating-core {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCSSCore 12s linear infinite;
}

.core-layer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.core-layer.solid {
    background: radial-gradient(circle, #111115 20%, transparent 80%);
    border: 3px solid var(--accent);
    transform: rotateX(45deg) rotateY(45deg);
}

.core-layer.wire {
    border: 1px dashed var(--primary);
    transform: rotateX(75deg) rotateY(-45deg);
    animation: counterRotate 8s linear infinite;
}

.core-layer.glow {
    box-shadow: 0 0 60px 15px var(--primary-glow);
    background: transparent;
    transform: scale(0.8);
}

@keyframes rotateCSSCore {
    0% { transform: rotate(0deg) rotateX(0deg) rotateY(0deg); }
    100% { transform: rotate(360deg) rotateX(360deg) rotateY(360deg); }
}

@keyframes counterRotate {
    0% { transform: rotateX(75deg) rotateY(-45deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateY(-45deg) rotateZ(-360deg); }
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(18, 18, 23, 0.4);
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item h4 {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Global Section Layout Elements */
.scroll-section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-card {
    background: linear-gradient(135deg, #16161c, #0d0d12);
    border: 1px solid var(--border-accent);
    padding: 3rem;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.founder-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-card .card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.founder-card .card-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.badge-uae {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--accent);
}

.about-bio-text {
    font-size: 1.1rem;
    color: var(--text-gray-light);
    margin-bottom: 1.5rem;
}

/* Services Dynamic Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-emerald);
    box-shadow: 0 15px 35px var(--primary-glow);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-help, .service-get {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-help strong, .service-get strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.service-help p, .service-get p {
    color: var(--text-muted);
}

.service-card .btn-primary-outline {
    margin-top: 1.5rem;
    width: 100%;
}

/* Industries Section Elements */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-accent);
}

.industry-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Packages Dynamic Design */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: 0 15px 35px var(--primary-glow);
}

.package-card.featured::before {
    content: 'LAUNCH SPECIAL - 25% OFF';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

html[dir="rtl"] .package-card.featured::before {
    content: 'عرض الإطلاق الحصري - خصم 25%';
}

.package-best-label {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.package-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price-box {
    margin-bottom: 1.5rem;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
}

.current-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-features li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.package-card .btn-primary {
    width: 100%;
}

/* Interactive Budget Builder Form Styling */
.budget-panel {
    background: linear-gradient(135deg, #121217, #0b0b0e);
    border: 1px solid var(--border-color);
    padding: 4rem 3rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.budget-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--border-emerald), transparent, var(--border-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.budget-form {
    margin-top: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-select, .form-input, .form-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-select:focus, .form-input:focus, .form-textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px var(--primary-glow);
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-white);
}

/* Process Timelines Setup */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: var(--border-color);
}

html[dir="rtl"] .process-timeline::before {
    left: auto;
    right: 40px;
}

.process-step {
    position: relative;
    padding-inline-start: 100px;
    margin-bottom: 4rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    top: 0;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent);
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--accent-glow);
    z-index: 10;
}

html[dir="rtl"] .step-num {
    left: auto;
    right: 15px;
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.step-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.step-box h4 {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.step-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Why Us Section Details */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--border-emerald);
}

.why-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Accordion FAQ Components */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: start;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon-symbol {
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-symbol {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Module & Form Details */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-panel .contact-desc {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-card .icon {
    font-size: 2rem;
}

.channel-card h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.channel-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.main-contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-button-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media(min-width: 600px) {
    .contact-button-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

.btn-whatsapp-action {
    background: #25d366;
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-whatsapp-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-secondary-action {
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary-action:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-tertiary-action {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-tertiary-action:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
    background: #040406;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col-main .footer-desc {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-inline-start: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Floating Integrations */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 450;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

html[dir="rtl"] .floating-whatsapp {
    right: auto;
    left: 30px;
}

.whatsapp-icon-svg {
    width: 32px;
    height: 32px;
}

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    z-index: 400;
}

.btn-mobile-sticky {
    display: flex;
    width: 100%;
    background: #25d366;
    color: #000;
    text-decoration: none;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
}

/* Reveal Animation States */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Media Viewport Layout Configurations */
@media(max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-3d-wrapper {
        height: 320px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .nav-desktop, .nav-whatsapp-btn {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        bottom: 80px;
    }

    .mobile-sticky-bar {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }

    .main-contact-form {
        padding: 2rem 1.5rem;
    }

    .budget-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .step-actions {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding-inline-start: 70px;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    html[dir="rtl"] .process-timeline::before {
        right: 25px;
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 5px;
    }
    
    html[dir="rtl"] .step-num {
        right: 5px;
    }
}

@media(max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}