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

html, body {
    height: auto;
    min-height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    --primary-color: #0077B6;
    --secondary-color: #7fbada;
    --light-blue: #92B7D3;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-border: #e1e8ed;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    padding-top: 0;
    overflow-x: hidden;
    margin: 0;
    padding-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--gray-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-self: start;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    justify-self: center;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    justify-self: end;
    grid-column: 3;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Top Header Bar - Keep for language switcher */
.top-header {
    display: none; /* Hidden, using main-nav instead */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.header-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.95;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 30px;
    background: #000;
    border-radius: 15px;
    z-index: 10;
}

.phone-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px 80px 30px;
    gap: 40px;
}

.phone-app-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.phone-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.phone-app-store-btn,
.phone-google-play-btn {
    display: block;
    width: 165px !important;
    height: 46px !important;
    min-width: 165px !important;
    min-height: 46px !important;
    max-width: 165px !important;
    max-height: 46px !important;
    overflow: hidden !important;
    flex-shrink: 0;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
    background: transparent;
}

.phone-badge-img {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    height: 46px !important;
    width: 165px !important;
    min-width: 165px !important;
    min-height: 46px !important;
    max-width: 165px !important;
    max-height: 46px !important;
    display: block;
    object-fit: cover !important;
    object-position: center;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Scale both buttons to match each other */
.phone-app-store-btn .phone-badge-img {
    transform: translate(-50%, -50%) scale(0.88) !important;
    width: 165px !important;
    height: 46px !important;
}

.phone-google-play-btn .phone-badge-img {
    transform: translate(-50%, -50%) scale(0.88) !important;
    width: 165px !important;
    height: 46px !important;
}

.phone-navigation-line {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: #000;
    border-radius: 3px;
    z-index: 10;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arrow span {
    width: 2px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 119, 182, 0.08);
    border: 1px solid var(--gray-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 119, 182, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(127, 186, 218, 0.1));
    border-radius: 50%;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon-wrapper svg {
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

.feature-card:hover .feature-icon-wrapper svg {
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 119, 182, 0.2);
}

.service-item:hover::after {
    opacity: 1;
}

.service-image {
    margin-bottom: 30px;
}

.service-icon {
    font-size: 4rem;
    filter: grayscale(0.3);
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
}

/* In RTL, Step 1 should be on the right - use direction: rtl to flow right-to-left */
[dir="rtl"] .steps-container {
    direction: rtl;
    flex-direction: row; /* Keep row direction, just change text direction */
}

.step-item {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

[dir="rtl"] .step-item {
    text-align: center !important;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
    transition: all 0.4s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.4);
}

.step-content {
    text-align: center !important;
    width: 100%;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

[dir="rtl"] .step-content,
[dir="rtl"] .step-content h3,
[dir="rtl"] .step-content p {
    text-align: center !important;
}

.step-connector {
    width: 120px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector::after {
    display: none;
}

.arrow-svg {
    width: 120px;
    height: 24px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 119, 182, 0.2));
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.5) translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[dir="rtl"] .arrow-svg {
    transform: scale(0.5) translateX(20px) scaleX(-1);
}

.step-connector.animate .arrow-svg {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.step-connector:hover .arrow-svg {
    transform: scale(1) translateX(3px);
    filter: drop-shadow(0 4px 12px rgba(0, 119, 182, 0.3));
}

/* RTL Support - Arrow points left in Arabic */
[dir="rtl"] .step-connector.animate .arrow-svg {
    transform: scale(1) translateX(0) scaleX(-1);
}

[dir="rtl"] .step-connector:hover .arrow-svg {
    transform: scale(1) scaleX(-1) translateX(3px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Download Section */
.download-section {
    position: relative;
    padding: 100px 0 60px 0;
    overflow: hidden;
    margin-bottom: 0;
}

.download-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.download-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Download Section */
.download-section {
    margin-top: 40px;
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.download-card h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.download-card p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.app-store-btn,
.google-play-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 200px !important;
    height: 60px !important;
    min-width: 200px !important;
    min-height: 60px !important;
    max-width: 200px !important;
    max-height: 60px !important;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.badge-img {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    height: 60px !important;
    width: 200px !important;
    min-width: 200px !important;
    min-height: 60px !important;
    max-width: 200px !important;
    max-height: 60px !important;
    display: block;
    object-fit: cover !important;
    object-position: center;
    box-sizing: border-box !important;
}

/* Scale both buttons to match each other */
.app-store-btn .badge-img {
    transform: translate(-50%, -50%) scale(0.88) !important;
}

.google-play-btn .badge-img {
    transform: translate(-50%, -50%) scale(0.88) !important;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}

body::after {
    display: none;
    content: '';
    height: 0;
    margin: 0;
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Ensure phone numbers and emails always display LTR */
.footer-section ul li a[href^="tel:"],
.footer-section ul li a[href^="mailto:"] {
    direction: ltr !important;
    unicode-bidi: bidi-override !important;
    display: inline-block;
    text-align: left !important;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

[dir="rtl"] .footer-section p {
    direction: rtl;
    unicode-bidi: embed;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #005a8b;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 119, 182, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.footer p {
    font-size: 0.95rem;
    direction: ltr !important;
    text-align: center !important;
    unicode-bidi: bidi-override !important;
    writing-mode: horizontal-tb !important;
    color: var(--text-light);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        padding: 0 15px;
        height: 70px;
    }

    .nav-logo-img {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 15px;
        justify-self: center;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        display: block;
        width: 100%;
        text-align: center;
        min-height: 44px; /* Better touch target */
    }

    .nav-toggle {
        display: flex;
        grid-column: 2;
        justify-self: end;
        width: 44px; /* Better touch target */
        height: 44px;
    }

    .nav-container .language-switcher-container {
        display: none;
    }

    .main-nav {
        height: 70px;
    }

    .hero-section {
        padding: 100px 0 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px; /* Better touch target */
    }

    .hero-phone-mockup {
        width: 220px;
        height: 440px;
        border-radius: 35px;
        padding: 5px;
        margin: 0 auto;
    }
    
    .phone-screen {
        border-radius: 30px;
    }
    
    .dynamic-island {
        width: 90px;
        height: 27px;
        top: 8px;
        border-radius: 14px;
    }
    
    .phone-navigation-line {
        width: 95px;
        height: 3px;
        bottom: 5px;
        border-radius: 2px;
    }
    
    .phone-content {
        padding: 40px 15px 60px 15px;
        gap: 25px;
    }
    
    .phone-app-logo {
        max-width: 120px;
    }
    
    .phone-app-store-btn,
    .phone-google-play-btn {
        width: 130px !important;
        height: 35px !important;
        min-width: 130px !important;
        min-height: 35px !important;
        max-width: 130px !important;
        max-height: 35px !important;
    }
    
    .phone-badge-img {
        position: absolute;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        height: 35px !important;
        width: 130px !important;
        min-width: 130px !important;
        min-height: 35px !important;
        max-width: 130px !important;
        max-height: 35px !important;
        object-fit: cover !important;
        object-position: center;
    }
    
    /* Scale both buttons to match each other on mobile */
    .phone-app-store-btn .phone-badge-img {
        transform: translate(-50%, -50%) scale(0.88) !important;
        width: 130px !important;
        height: 35px !important;
    }
    
    .phone-google-play-btn .phone-badge-img {
        transform: translate(-50%, -50%) scale(0.88) !important;
        width: 130px !important;
        height: 35px !important;
    }

    .features-section,
    .how-it-works-section {
        padding: 60px 0;
    }

    .section-header {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px 15px 30px 15px;
        align-items: center;
    }
    
    .step-item {
        width: 100%;
        max-width: 100%;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .arrow-svg {
        width: 24px;
        height: 60px;
        transform: rotate(90deg) scale(0.5) translateY(-20px);
        opacity: 0;
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .step-connector.animate .arrow-svg {
        transform: rotate(90deg) scale(1) translateY(0);
        opacity: 1;
    }

    [dir="rtl"] .arrow-svg {
        transform: rotate(90deg) scale(0.5) translateY(-20px);
    }

    [dir="rtl"] .step-connector.animate .arrow-svg {
        transform: rotate(90deg) scale(1) translateY(0);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .download-card {
        padding: 50px 30px;
    }

    .download-card h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 15px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
        padding: 8px 0;
        display: block;
        min-height: 44px; /* Better touch target */
    }

    .footer-logo {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 20px 15px 0;
        text-align: center;
    }

    .download-section {
        padding: 60px 0 40px;
    }

    .download-card {
        margin: 0 15px;
        padding: 40px 25px;
    }

    .download-card h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .download-card p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        min-width: 44px; /* Better touch target */
        min-height: 44px;
    }

    .scroll-indicator {
        display: none; /* Hide on mobile */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        padding: 15px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .language-switcher-container {
        right: 15px !important;
        left: auto !important;
    }

    .lang-switch-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 50px;
    }

    .header-logo {
        max-width: 220px;
        max-height: 55px;
    }

    .container {
        padding: 0 15px 30px;
    }

    .header {
        margin-bottom: 40px;
        padding-top: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .download-card {
        padding: 40px 25px;
    }

    .download-card h2 {
        font-size: 1.8rem;
    }

    .download-card p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .app-store-btn,
    .google-play-btn {
        width: 170px !important;
        height: 50px !important;
        min-width: 170px !important;
        min-height: 50px !important;
        max-width: 170px !important;
        max-height: 50px !important;
    }
    
    .badge-img {
        height: 50px !important;
        width: 170px !important;
        min-width: 170px !important;
        min-height: 50px !important;
        max-width: 170px !important;
        max-height: 50px !important;
    }
    
    .app-store-btn .badge-img,
    .google-play-btn .badge-img {
        transform: translate(-50%, -50%) scale(0.88) !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        height: 65px;
    }

    .nav-logo-img {
        height: 35px;
    }

    .main-nav {
        height: 65px;
    }

    .nav-menu {
        top: 65px;
    }

    .hero-section {
        padding: 85px 0 50px 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-phone-mockup {
        width: 180px;
        height: 360px;
        border-radius: 30px;
        padding: 4px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .dynamic-island {
        width: 75px;
        height: 22px;
        top: 6px;
        border-radius: 11px;
    }

    .phone-navigation-line {
        width: 80px;
        height: 3px;
        bottom: 4px;
    }

    .phone-content {
        padding: 35px 12px 50px 12px;
        gap: 20px;
    }

    .phone-app-logo {
        max-width: 100px;
    }

    .phone-app-store-btn,
    .phone-google-play-btn {
        width: 110px !important;
        height: 30px !important;
        min-width: 110px !important;
        min-height: 30px !important;
        max-width: 110px !important;
        max-height: 30px !important;
    }

    .phone-badge-img {
        height: 30px !important;
        width: 110px !important;
        min-width: 110px !important;
        min-height: 30px !important;
        max-width: 110px !important;
        max-height: 30px !important;
    }

    .phone-app-store-btn .phone-badge-img,
    .phone-google-play-btn .phone-badge-img {
        transform: translate(-50%, -50%) scale(0.88) !important;
        width: 110px !important;
        height: 30px !important;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .features-section,
    .how-it-works-section {
        padding: 50px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .steps-container {
        gap: 35px;
        padding: 15px 12px 25px 12px;
    }

    .step-item {
        width: 100%;
        max-width: 100%;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .download-section {
        padding: 50px 0 35px;
    }

    .download-card {
        margin: 0 12px;
        padding: 35px 20px;
    }

    .download-card h2 {
        font-size: 1.6rem;
    }

    .download-card p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .app-store-btn,
    .google-play-btn {
        width: 150px !important;
        height: 45px !important;
        min-width: 150px !important;
        min-height: 45px !important;
        max-width: 150px !important;
        max-height: 45px !important;
    }
    
    .badge-img {
        height: 45px !important;
        width: 150px !important;
        min-width: 150px !important;
        min-height: 45px !important;
        max-width: 150px !important;
        max-height: 45px !important;
    }
    
    .app-store-btn .badge-img,
    .google-play-btn .badge-img {
        transform: translate(-50%, -50%) scale(0.88) !important;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        padding: 0 12px;
    }

    .footer-logo {
        max-width: 130px;
    }

    .btn {
        max-width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Existing styles for booking form and other pages */
.booking-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.phone-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    background: white;
    transition: border-color 0.3s ease;
    direction: ltr !important;
    flex-direction: row !important;
}

.phone-input-container:focus-within {
    border-color: var(--primary-color);
}

.phone-prefix {
    padding: 12px 15px;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    border-right: 1px solid #e1e8ed;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    order: 1 !important;
    flex-shrink: 0;
}

.phone-input-container input {
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 15px;
    flex: 1;
    font-size: 1rem;
    background: transparent;
    order: 2 !important;
}

.phone-input-container input:focus {
    outline: none;
    border: none;
}

.readonly-info {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.readonly-info .info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.readonly-info .info-row:last-child {
    margin-bottom: 0;
}

.readonly-info .label {
    font-weight: 500;
    color: #6c757d;
}

.readonly-info .value {
    color: #2c3e50;
    font-weight: 600;
}

.price-display {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin: 20px 0;
}

.price-display .total-label {
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.price-summary-section {
    background: #ffffff !important;
    border-radius: 8px !important;
    margin: 20px 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e0e0e0 !important;
    padding: 20px !important;
}

.price-summary-section h4 {
    color: #2c3e50 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin: 0 0 16px 0 !important;
    text-align: left !important;
}

.price-breakdown {
    margin-bottom: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    flex-direction: row !important;
}

.price-item-label {
    order: 1 !important;
    text-align: left !important;
}

.price-item-value {
    order: 2 !important;
    text-align: right !important;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item-label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.price-item-value {
    font-weight: 600;
    color: #27ae60;
    font-size: 1rem;
}

.currency-symbol {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    flex-shrink: 0;
    order: 1;
}

.price-item-value {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    direction: ltr !important;
    unicode-bidi: bidi-override !important;
}

.total-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    border: 1px solid #e0e0e0;
}

.total-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.total-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.total-amount {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    direction: ltr !important;
    unicode-bidi: bidi-override !important;
}

[dir="rtl"] .total-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .total-label {
    text-align: right;
    order: 2;
}

[dir="rtl"] .total-amount {
    text-align: left;
    order: 1;
}

.price-item-value > *:not(.currency-symbol) {
    order: 2;
}

[dir="rtl"] .price-summary-section {
    text-align: right;
}

[dir="rtl"] .price-summary-section h4 {
    text-align: right !important;
}

[dir="rtl"] .price-item {
    flex-direction: row-reverse !important;
    text-align: right;
}

[dir="rtl"] .price-item-label {
    text-align: right !important;
    order: 2 !important;
}

[dir="rtl"] .price-item-value {
    text-align: left !important;
    order: 1 !important;
    flex-direction: row !important;
    direction: ltr !important;
    unicode-bidi: bidi-override !important;
}

.btn,
.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #005a8b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    margin-top: 20px;
}

.btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.3);
}

.btn:disabled,
.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading {
    text-align: center;
    color: var(--text-dark);
    padding: 40px;
}

.success,
.error {
    text-align: center;
    color: var(--text-dark);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.success h2,
.error h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.success p,
.error p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 119, 182, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 20px;
}

.time-slots-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #6c757d;
}

.time-slots-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.time-slots-loading-text {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}

.packages-section,
.addons-section,
.price-summary-section,
.customer-form-section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.packages-section.visible,
.addons-section.visible,
.price-summary-section.visible,
.customer-form-section.visible {
    display: block;
    opacity: 1;
}

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

.error-message,
.success-message,
.expired-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.error-message { background: #e74c3c; }
.success-message { background: #27ae60; }
.expired-message { background: #f39c12; }

.service-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.service-details h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-item:last-child {
    border-bottom: none;
}

.section-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.date-selector {
    margin-bottom: 20px;
}

.date-scroll-container {
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
    touch-action: pan-x;
}

.date-scroll-container:active {
    cursor: grabbing;
}

.date-list {
    display: flex;
    gap: 8px;
    min-width: max-content;
    padding: 0 5px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.date-item {
    min-width: 80px;
    padding: 12px 16px;
    background: #e9ecef;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    user-select: none;
}

.date-item:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

.date-item.selected {
    background: var(--primary-color);
    color: white;
    border-color: #005a8b;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.date-day {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.date-number {
    font-size: 1rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-weight: 500;
}

.time-slots-container {
    margin-bottom: 20px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    padding: 12px 16px;
    background: #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    user-select: none;
}

.time-slot:hover {
    background: #dee2e6;
    transform: translateY(-1px);
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: #005a8b;
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.3);
}

.time-slot.disabled {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.no-slots-message {
    text-align: center;
    color: #6c757d;
    padding: 20px;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
}

.package-option,
.addon-option {
    display: block;
    margin-bottom: 15px;
    border: none;
    background: transparent;
}

.package-option input[type="radio"],
.addon-option input[type="checkbox"] {
    display: none;
}

.package-card,
.addon-card {
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover,
.addon-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 119, 182, 0.1);
}

.package-option.selected .package-card,
.addon-option.selected .addon-card {
    border-color: var(--primary-color);
    background: #f0f8ff;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.15);
}

.package-title,
.addon-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.package-features {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.package-features ul {
    margin: 0;
    padding-left: 18px;
}

.package-price,
.addon-price {
    font-size: 1rem;
    font-weight: 600;
    color: #27ae60;
    display: flex;
    align-items: center;
    direction: ltr !important;
    unicode-bidi: bidi-override !important;
}

.package-card,
.addon-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row !important;
}

.package-title,
.addon-title {
    order: 1 !important;
    text-align: left !important;
    flex: 1;
    margin-right: 12px;
}

.package-price,
.addon-price {
    order: 2 !important;
    text-align: right !important;
    flex-shrink: 0;
}

[dir="rtl"] .package-card,
[dir="rtl"] .addon-card {
    flex-direction: row-reverse !important;
}

[dir="rtl"] .package-title,
[dir="rtl"] .addon-title {
    order: 2 !important;
    text-align: right !important;
    margin-right: 0;
    margin-left: 12px;
}

[dir="rtl"] .package-price,
[dir="rtl"] .addon-price {
    order: 1 !important;
    text-align: left !important;
}

/* Force phone prefix to always be on the left */
[dir="rtl"] .phone-input-container {
    direction: ltr !important;
    flex-direction: row !important;
}

[dir="rtl"] .phone-prefix {
    order: 1 !important;
}

[dir="rtl"] .phone-input-container input {
    order: 2 !important;
}

.vehicle-type-option input[type="radio"] {
    display: none;
}

.language-selection-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.language-selection-content {
    text-align: center;
    width: 100%;
    height: 100vh;
    animation: slideInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.language-logo {
    margin-bottom: 80px;
}

.language-logo img {
    width: 80px;
    height: 80px;
}

.language-options {
    display: flex;
    gap: 120px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.language-option.huge {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    flex: 0 0 auto;
}

.language-option.huge:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-20px) scale(1.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.language-option.huge:active {
    transform: translateY(-10px) scale(1.05);
}

.language-flag {
    font-size: 6rem;
    margin-bottom: 30px;
    display: block;
}

.language-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Language Switcher - Professional Style */
.language-switcher-container {
    display: inline-flex;
    gap: 0;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-border);
}

/* In nav container */
.nav-container .language-switcher-container {
    justify-self: end;
    margin-left: 0;
}

/* In header container (fallback) */
.header-container .language-switcher-container {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Force position to stay on right even in RTL */
[dir="rtl"] .language-switcher-container {
    right: 20px !important;
    left: auto !important;
}

.floating-language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    direction: ltr !important;
}

/* Ensure language switcher always stays LTR */
.language-switcher-container {
    direction: ltr !important;
    unicode-bidi: isolate;
}

[dir="rtl"] .language-switcher-container {
    direction: ltr !important;
    unicode-bidi: isolate;
}

.lang-switch-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 48px;
    text-align: center;
    position: relative;
    outline: none;
}

.lang-switch-btn:hover {
    background: var(--gray-light);
    color: var(--text-dark);
}

.lang-switch-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 119, 182, 0.2);
}

.lang-switch-btn.active:hover {
    background: #005a8b;
    color: var(--white);
}

.lang-switch-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


.language-switcher {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

[dir="rtl"] .date-list {
    direction: rtl;
}

[dir="rtl"] .date-scroll-container {
    direction: rtl;
}

[dir="rtl"] .form-group {
    text-align: right;
}

[dir="rtl"] .section-label {
    text-align: right;
}

[dir="rtl"] .language-switcher {
    direction: rtl;
}

@media (max-width: 768px) {
    .language-options {
        gap: 80px;
        flex-direction: column;
        align-items: center;
    }
    
    .language-option.huge {
        padding: 20px 25px;
        min-width: 180px;
        width: 100%;
        max-width: 220px;
    }
    
    .language-flag {
        font-size: 5rem;
    }
    
    .language-name {
        font-size: 1rem;
    }
    
    .booking-form {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .service-selection {
        padding: 20px 15px;
    }
    
    .readonly-info .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
