﻿:root {
    --primary: #FFB800;
    --primary-light: #FFD566;
    --primary-dark: #D99B00;
    --secondary: #0A0A0A;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --bg-light: #FAFAFB;
    --bg-white: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --accent-red: #FF4D6D;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-colored: 0 12px 30px rgba(255, 184, 0, 0.25);
    --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.10);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 184, 0, 0.35);
}

.btn-dark {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background-color: var(--bg-white);
}

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1150px;
    z-index: 1000;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
}

.hero {
    padding: 160px 0 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

.hero::before {
    top: -100px;
    right: -200px;
    background: var(--primary-light);
}

.hero::after {
    bottom: -100px;
    left: -200px;
    background: rgba(0, 0, 0, 0.05);
    animation-delay: 2s;
}

@keyframes floatBlob {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(50px, 50px); }
}

.hero-tag,
.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary-dark);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--secondary);
}

.hero-title span {
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    right: 0;
    left: auto;
    bottom: 10px;
    width: 100%;
    height: 18px;
    background: rgba(255, 184, 0, 0.28);
    border-radius: 999px;
    z-index: -1;
}

.hero-desc {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1.9;
}
.hero-mockup {
    max-width: 960px;
    margin: 0 auto;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-lg) - 8px);
    object-fit: cover;
}

.trusted-section {
    padding: 0 0 60px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 42px;
    color: #9A9A9A;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.services-grid,
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.help-card,
.content-card,
.contact-info-card,
.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.service-card {
    padding: 32px 28px;
    transition: var(--transition);
}

.service-card:hover,
.help-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon,
.help-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 20px;
}

.help-icon {
    margin-inline: auto;
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 16px;
}

.process-section {
    padding: 100px 0;
}

.timeline {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 184, 0, 0.4), rgba(255, 184, 0, 0.1));
}

.timeline-item {
    position: relative;
    padding-inline-start: 0;
    padding-inline-end: 90px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
}

.timeline-content {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.timeline-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-muted);
}

.cta-banner {
    margin-bottom: 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary), #262626);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 70px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
}

.inner-page-header {
    padding: 150px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 184, 0, 0.18), transparent 50%);
    z-index: -1;
}

.inner-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.partner-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: rgba(255, 184, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.12);
}

.contact-info-card {
    padding: 36px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.14);
    color: var(--primary-dark);
    font-size: 20px;
    flex-shrink: 0;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 28px;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--text-muted);
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 280px;
    padding-bottom: 24px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.help-card {
    padding: 34px 26px;
    text-align: center;
}

.help-card h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.content-card {
    padding: 42px;
}

.content-card h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 14px;
    margin-top: 30px;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p,
.content-card li {
    color: var(--text-muted);
    line-height: 1.9;
}

.content-card ul {
    padding-inline-start: 20px;
    list-style: disc;
}

.footer {
    padding: 0 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 32px;
    padding-top: 10px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--primary-dark);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

table {
    width: 100%;
}

th,
td {
    font-size: 15px;
}

.lang-en body {
    font-family: 'Inter', sans-serif;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 52px;
    }

    .services-grid,
    .help-grid,
    .footer-grid,
    .partner-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .header {
        width: calc(100% - 24px);
        top: 12px;
    }

    .header .container {
        height: 72px;
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: inline-flex !important;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--secondary);
    }

    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .section,
    .process-section {
        padding: 80px 0;
    }

    .services-grid,
    .help-grid,
    .partner-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .inner-page-title,
    .section-title,
    .cta-title {
        font-size: 36px;
    }

    .timeline-item {
        padding-inline-end: 72px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    .btn {
        width: 100%;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-mockup,
    .cta-box,
    .content-card,
    .contact-info-card {
        padding: 24px;
    }

    .contact-grid > div[style*="grid-template-columns: 1fr 1fr"],
    .partner-grid > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}
