/* ==========================================
   SGMNT AI - Unified Styles
   ========================================== */

:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --purple-700: #6d28d9;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-accent: var(--purple-50);
    --text-primary: #171717;
    --text-secondary: #525252;
    --text-muted: #737373;
    --accent: #7c3aed;
    --accent-light: #8b5cf6;
    --border: #e5e5e5;
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

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

html {
    scroll-behavior: smooth;
}

/* Base body styles - will be overridden by language-specific */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* English-specific typography */
html:not([lang="ar"]) body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

html:not([lang="ar"]) h1, 
html:not([lang="ar"]) h2, 
html:not([lang="ar"]) h3, 
html:not([lang="ar"]) h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
}

/* Arabic-specific typography */
html[lang="ar"] body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
}

html[lang="ar"] h1, 
html[lang="ar"] h2, 
html[lang="ar"] h3, 
html[lang="ar"] h4 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

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

.section {
    padding: 80px 0;
    position: relative;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    background: var(--purple-100);
    padding: 8px 16px;
    border-radius: 100px;
}

html:not([lang="ar"]) .section-label {
    letter-spacing: 1.5px;
}

html[lang="ar"] .section-label {
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
}

html:not([lang="ar"]) .section-title {
    letter-spacing: -1px;
}

.section-intro {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 600px;
}

html:not([lang="ar"]) .section-intro {
    line-height: 1.7;
}

html[lang="ar"] .section-intro {
    line-height: 1.8;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 36px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.lang-switch {
    font-weight: 600 !important;
    color: var(--accent) !important;
}

.nav-cta {
    background: var(--text-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(180deg, var(--purple-50) 0%, var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 700;
    margin-bottom: 24px;
}

html:not([lang="ar"]) .hero h1 {
    letter-spacing: -3px;
    line-height: 1.05;
}

html[lang="ar"] .hero h1 {
    line-height: 1.2;
}

/* English: gradient text effect */
html:not([lang="ar"]) .hero h1 .highlight {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Arabic: solid color (better for Arabic script) */
html[lang="ar"] .hero h1 .highlight {
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 520px;
}

html:not([lang="ar"]) .hero-sub {
    line-height: 1.6;
}

html[lang="ar"] .hero-sub {
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 56px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
}

html:not([lang="ar"]) .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -2px;
}

html[lang="ar"] .stat-value {
    font-family: 'Tajawal', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-primary);
    color: white;
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

/* English: arrow moves right */
html:not([lang="ar"]) .hero-cta:hover svg {
    transform: translateX(4px);
}

/* Arabic: arrow moves left (RTL) */
html[lang="ar"] .hero-cta:hover svg {
    transform: translateX(-4px);
}

/* What We Build */
#build {
    background: var(--bg-primary);
}

.build-header {
    text-align: center;
    margin-bottom: 80px;
}

.build-header .section-intro {
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.capability-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.capability-card:hover::before {
    opacity: 0.03;
}

.capability-card > * {
    position: relative;
    z-index: 1;
}

.capability-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--purple-100);
    line-height: 1;
    margin-bottom: 16px;
}

html:not([lang="ar"]) .capability-number {
    font-family: 'Space Grotesk', sans-serif;
}

html[lang="ar"] .capability-number {
    font-family: 'Tajawal', sans-serif;
}

.capability-card:hover .capability-number {
    color: var(--purple-200);
}

.capability-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.capability-card p {
    font-size: 16px;
    color: var(--text-secondary);
}

html:not([lang="ar"]) .capability-card p {
    line-height: 1.7;
}

html[lang="ar"] .capability-card p {
    line-height: 1.8;
}

/* Industries */
#industries {
    background: var(--bg-secondary);
}

.industries-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.industries-left h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.industry-tag {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.industries-right {
    padding-top: 48px;
}

.industries-right h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.industries-right p {
    font-size: 17px;
    color: var(--text-muted);
}

html:not([lang="ar"]) .industries-right p {
    line-height: 1.7;
}

html[lang="ar"] .industries-right p {
    line-height: 1.8;
}

/* Delivered */
#delivered {
    background: var(--bg-primary);
}

.delivered-header {
    text-align: center;
    margin-bottom: 80px;
}

.delivered-header .section-intro {
    margin: 0 auto;
}

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

.delivered-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.delivered-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.delivered-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.delivered-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

html:not([lang="ar"]) .delivered-card p {
    line-height: 1.6;
}

html[lang="ar"] .delivered-card p {
    line-height: 1.7;
}

.delivered-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.delivered-stat {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: var(--purple-100);
    padding: 6px 12px;
    border-radius: 100px;
}

.delivered-footer {
    text-align: center;
    margin-top: 64px;
}

.delivered-footer p {
    font-size: 20px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Process */
#process {
    background: var(--purple-50);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-step {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-purple);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
}

html:not([lang="ar"]) .process-number {
    font-family: 'Space Grotesk', sans-serif;
}

html[lang="ar"] .process-number {
    font-family: 'Tajawal', sans-serif;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-secondary);
}

html:not([lang="ar"]) .process-step p {
    line-height: 1.7;
}

html[lang="ar"] .process-step p {
    line-height: 1.8;
}

.process-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--purple-300);
    z-index: 10;
}

/* English: arrow on right */
html:not([lang="ar"]) .process-arrow {
    right: -32px;
}

/* Arabic: arrow on left, flipped for RTL */
html[lang="ar"] .process-arrow {
    left: -32px;
    transform: translateY(-50%) scaleX(-1);
    font-size: 32px;
}

.process-step:last-child .process-arrow {
    display: none;
}

/* Reach */
#reach {
    background: var(--bg-primary);
    text-align: center;
}

.markets-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
    flex-wrap: wrap;
}

html[lang="ar"] .markets-grid {
    gap: 16px;
    margin-top: 32px;
}

.market-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 48px;
    transition: all 0.3s ease;
}

html[lang="ar"] .market-card {
    padding: 16px 48px;
}

.market-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--accent);
}

.market-card span {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
}

html:not([lang="ar"]) .market-card span {
    font-family: 'Space Grotesk', sans-serif;
}

html[lang="ar"] .market-card span {
    font-family: 'Tajawal', sans-serif;
}

.reach-tagline {
    margin-top: 48px;
    font-size: 18px;
    color: var(--text-muted);
}

/* Contact */
#contact {
    background: var(--text-primary);
    color: white;
}

#contact .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--purple-400);
}

#contact .section-title {
    color: white;
}

#contact .section-intro {
    color: rgba(255, 255, 255, 0.7);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    display: none;
    font-size: 13px;
    color: #ef4444;
    margin-top: 6px;
    font-weight: 500;
}

.form-error.active {
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-submit {
    background: white;
    color: var(--text-primary);
    border: none;
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.contact-email {
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-email a {
    color: var(--purple-400);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Form Loader */
.form-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 23, 23, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 100;
}

.form-loader.active {
    display: flex;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 48px 64px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 10001;
    display: none;
    max-width: 500px;
    width: 90%;
}

.success-message.active {
    display: block;
    animation: fadeInScale 0.4s ease;
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
}

.success-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.success-message p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

html:not([lang="ar"]) .success-message p {
    line-height: 1.6;
}

html[lang="ar"] .success-message p {
    line-height: 1.7;
}

.success-button {
    background: var(--text-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Footer */
footer {
    background: var(--text-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 28px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 32px;
    transition: 0.3s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* English: menu slides from right */
html:not([lang="ar"]) .mobile-menu {
    right: -100%;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

html:not([lang="ar"]) .mobile-menu.active {
    right: 0;
}

/* Arabic: menu slides from left (RTL) */
html[lang="ar"] .mobile-menu {
    left: -100%;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
}

html[lang="ar"] .mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.mobile-menu-cta {
    margin-top: 32px;
    display: block;
    text-align: center;
    background: var(--text-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .delivered-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: clamp(42px, 8vw, 72px);
    }

    .build-header {
        margin-bottom: 48px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .industries-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    html[lang="ar"] .industries-right {
        padding-top: 0;
    }

    .delivered-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-arrow {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    html:not([lang="ar"]) .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    html:not([lang="ar"]) .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .stat-value {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    html:not([lang="ar"]) .section-intro {
        font-size: 16px;
    }

    .capability-card,
    .delivered-card {
        padding: 28px;
    }

    .capability-number {
        font-size: 56px;
    }

    .delivered-grid {
        grid-template-columns: 1fr;
    }

    html:not([lang="ar"]) .delivered-header {
        margin-bottom: 48px;
    }

    html:not([lang="ar"]) .markets-grid {
        flex-direction: column;
        gap: 16px;
    }

    html:not([lang="ar"]) .market-card {
        padding: 20px 32px;
    }

    .process-step {
        padding: 36px 24px;
    }

    html:not([lang="ar"]) .process-step {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .success-message {
        padding: 32px 24px;
        width: 90%;
    }

    html:not([lang="ar"]) .success-message h3 {
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
