:root {
    --bg-color: #f5f2eb;

    --text-main: #111111;
    --text-muted: #666666;
    --primary-blue: #0066ff;
    --primary-hover: #0052cc;
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;

    --grad-1: linear-gradient(135deg, #4ade80, #16a34a);
    --grad-2: linear-gradient(135deg, #60a5fa, #2563eb);
    --grad-3: linear-gradient(135deg, #f87171, #dc2626);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;

    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 14px 14px, 14px 14px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.eyebrow.badge-pill {
    background-color: #e0f2fe;

    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.section-divider {
    height: 1px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.02);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.02);
}

.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}

.navbar {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--primary-hover);
}

.custom-lang-select {
    position: relative;
    user-select: none;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.2s;
}

.lang-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.2);
}

.lang-trigger .arrow {
    transition: transform 0.3s ease;
}

.custom-lang-select.open .lang-trigger {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.custom-lang-select.open .arrow {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    overflow: hidden;
}

.custom-lang-select.open .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.1s;
    text-align: left;
}

.lang-option:hover {
    background: rgba(0, 102, 255, 0.06);
    color: var(--primary-blue);
}

[dir="rtl"] .lang-options {
    right: auto;
    left: 0;
}

[dir="rtl"] .lang-option {
    text-align: right;
}

.hero {
    padding: 180px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    margin-top: -80px;

}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    margin-bottom: 40px;

}

.scarcity-badge svg {
    width: 12px;
    height: 12px;
    stroke: #f59e0b;

}

.scarcity-badge span {
    color: var(--text-muted);
    letter-spacing: 0;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    transform: scale(1.15);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 50%;
    height: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    transform: translateX(-50%);
    animation: shadowPulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-image img {
    width: 95%;

    max-width: none;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scale(0.85);
        opacity: 0.4;
    }
}

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

.pricing-table {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-row {
    display: flex;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    gap: 32px;
}

.pricing-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pack-1 {
    background: var(--grad-1);
}

.pack-2 {
    background: var(--grad-2);
}

.pack-3 {
    background: var(--grad-3);
}

.pricing-details {
    flex-grow: 1;
}

.pricing-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.best-for {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    max-width: 500px;
}

.feature-list {
    list-style-type: none;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
}

.includes-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 102, 255, 0.02));
    color: var(--primary-blue);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 102, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.05);
}

.includes-badge .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    font-size: 10px;
}

.includes-badge .plus-icon {
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 2px;
}

.pricing-cost {
    text-align: right;
    min-width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.fees-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-end;
}

.fee-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fee-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.setup .setup-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-cost .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-cost .price span {
    font-size: 1rem;
}

.ad-budget-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 4px;
    margin-bottom: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: right;
}

.cta-btn {
    width: 100%;
    margin-top: 4px;
}

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

.booking-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.booking-box .eyebrow {
    text-align: center;
}

.booking-box .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.vogel-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    transition: all 0.2s;
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-row input::placeholder {
    color: #999;
}

.form-row input:focus,
.form-row select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    user-select: none;
}

.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    font-family: inherit;
    font-size: 15px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.select-trigger.selected {
    color: var(--text-main);
    font-weight: 500;
}

.select-trigger:hover {
    border-color: #d1d5db;
}

.custom-select.open .select-trigger {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: transform 0.3s ease;
}

.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    overflow: hidden;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: background 0.1s;
}

.custom-option:hover {
    background: rgba(0, 102, 255, 0.06);
    color: var(--primary-blue);
}

.custom-option.selected-option {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary-blue);
    font-weight: 600;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.form-actions .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}


.cta-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
    margin-top: 4px;
}

.details-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.2s;
}

.details-link:hover {
    color: var(--primary-blue);
}

.details-link span {
    display: inline-block;
    transition: transform 0.2s;
}

.details-link:hover span {
    transform: translateX(4px);
}

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

.timeline-wrapper {
    max-width: 600px;
    margin: 48px auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.timeline-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.timeline-header .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.grad-1 {
    background: var(--grad-1);
}

.grad-2 {
    background: var(--grad-2);
}

.grad-3 {
    background: var(--grad-3);
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-step {
    position: relative;
    margin-bottom: 32px;
}

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

.timeline-step::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 3px solid white;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.timeline-step.ongoing::before {
    background: var(--whatsapp);
}

.step-day {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.timeline-step.ongoing .step-day {
    color: var(--whatsapp);
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
}

.site-footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.expertise-section {
    padding: 80px 0 0 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-top: 40px;
}

.marquee {
    display: flex;
    width: max-content;
    gap: 32px;
    padding: 0;
    cursor: grab;
    will-change: transform;
}

.marquee.dragging {
    cursor: grabbing;
}

.marquee-item {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 16px 32px;
    background: #ffffff;
    border-radius: 100px;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.marquee-item svg {
    color: var(--primary-blue);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        align-items: center;
    }

    .pricing-table {
        gap: 0;
    }

    .pricing-row {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .pricing-cost {
        text-align: left;
        margin-left: 80px;
        align-items: flex-start;
        width: calc(100% - 80px);
    }

    .ad-budget-note {
        text-align: left;
    }

    .fee-item {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .navbar {
        gap: 12px;
        padding: 6px 6px 6px 12px;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }
    .logo img {
        height: 24px;
    }

    h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        gap: 40px;
    }
    .hero-content {
        margin-top: 0;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-image {
        transform: scale(1);
    }

    .services-section,
    .booking-section,
    .process-section {
        padding: 60px 0;
    }

    .pricing-row {
        gap: 12px;
    }
    .pricing-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .pricing-details h3 {
        font-size: 1.3rem;
    }
    .pricing-cost {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .fees-wrapper {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .fee-item {
        align-items: center;
    }
    .ad-budget-note {
        text-align: center;
    }
    .setup .setup-price, .pricing-cost .price {
        font-size: 1.5rem;
    }
    .cta-group {
        align-items: center;
    }
    .cta-btn {
        width: 100%;
        max-width: 320px;
    }

    .booking-box {
        padding: 24px 16px;
    }
    .form-row input, .select-trigger {
        padding: 14px;
        font-size: 14px;
    }

    .timeline-wrapper {
        padding: 24px 16px;
        margin: 32px auto;
    }
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .timeline-header h3 {
        font-size: 1.25rem;
    }
    .step-content h4 {
        font-size: 1rem;
    }

    .marquee-item {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* RTL Styles for Arabic */
[dir="rtl"] {
    text-align: right;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

[dir="rtl"] .nav-links {
    margin-right: auto;
    margin-left: 0;
}

[dir="rtl"] .hero-subtitle,
[dir="rtl"] .best-for,
[dir="rtl"] .pricing-details h3,
[dir="rtl"] .timeline-wrapper,
[dir="rtl"] .booking-box {
    text-align: right;
}

[dir="rtl"] .booking-box .eyebrow {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

[dir="rtl"] .booking-box .section-title {
    text-align: center;
}

[dir="rtl"] input[type="tel"] {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .scarcity-badge svg {
    margin-left: 4px;
    margin-right: 0;
}

[dir="rtl"] .feature-list li {
    align-items: flex-start;
}

[dir="rtl"] .includes-badge .plus-icon {
    margin-right: 2px;
    margin-left: 0;
}

[dir="rtl"] .pricing-cost {
    text-align: left;
}

[dir="rtl"] .ad-budget-note {
    text-align: left;
}

[dir="rtl"] .timeline {
    padding-left: 0;
    padding-right: 32px;
}

[dir="rtl"] .timeline::before {
    left: auto;
    right: 7px;
}

[dir="rtl"] .timeline-step::before {
    left: auto;
    right: -32px;
}

[dir="rtl"] .timeline-header {
    text-align: right;
}

[dir="rtl"] .custom-option {
    text-align: right;
}

.arrow-icon::after {
    content: '→';
}

[dir="rtl"] .arrow-icon::after {
    content: '←';
}

@media (max-width: 900px) {
    [dir="rtl"] .hero-actions {
        align-items: center;
    }
    [dir="rtl"] .pricing-cost {
        margin-left: 0;
        margin-right: 80px;
        text-align: right;
        align-items: flex-start;
    }
    [dir="rtl"] .hero {
        text-align: center;
    }
    [dir="rtl"] .hero-subtitle {
        text-align: center;
    }
}

@media (max-width: 600px) {
    [dir="rtl"] .timeline-header {
        align-items: flex-start;
    }
}