:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: #E5E7EB;
    --muted-color: #6B7280;
    --circle-track: #f1ebec;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --lang-hover: rgb(234 172 66 / 20%);
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: rgba(30, 30, 30, 0.9);
    --border-color: #374151;
    --muted-color: #a5a5a5;
    --circle-track: #374151;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --lang-hover: rgb(234 171 67 / 11%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Alexandria', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

body.rtl {
    direction: rtl;
}

/* Font preferences based on language */
body.rtl,
body.rtl .main-title,
body.rtl .description,
body.rtl .countdown-label,
body.rtl .signup-text,
body.rtl .email-input,
body.rtl .signup-btn {
    font-family: 'Alexandria', 'Inter', sans-serif;
}

body:not(.rtl) {
    font-family: 'Inter', 'Alexandria', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body:not(.rtl) .main-title,
body:not(.rtl) .description,
body:not(.rtl) .countdown-label,
body:not(.rtl) .signup-text,
body:not(.rtl) .email-input,
body:not(.rtl) .signup-btn {
    font-family: 'Inter', 'Alexandria', sans-serif;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 2rem;
    left: 2rem; /* Default to left for Arabic RTL */
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    border-radius: 20px;
}

.theme-switch {
    position: relative;
    display: inline-block;
}

.theme-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}

.theme-slider {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, #655c9c 0%, #4ca69a 100%);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.theme-checkbox:checked + .theme-slider {
    background: #434343;
}

.slider-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.theme-checkbox:checked + .theme-slider .slider-knob {
    transform: translateX(30px);
    background: #f0f0f0;
}

.slider-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    transition: all 0.3s ease;
    z-index: 1;
    opacity: 0.7;
}

.sun-icon {
    left: 6px;
    opacity: 1;
}

.moon-icon {
    right: 6px;
    opacity: 0.4;
}

.theme-checkbox:checked + .theme-slider .sun-icon {
    opacity: 0.4;
}

.theme-checkbox:checked + .theme-slider .moon-icon {
    opacity: 1;
}

.theme-slider:active {
    transform: scale(0.95);
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--muted-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Alexandria', sans-serif;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--lang-hover);
    color: var(--text-color);
}

.lang-btn.active {
    background: var(--lang-hover);
    font-weight: 600;
    color: var(--text-color);
}

/* Language text styling */
.lang-text {
    font-weight: inherit;
    font-size: inherit;
    line-height: 1.2;
}

/* Arabic language text styling */
.lang-btn[data-lang="ar"] .lang-text {
    font-family: 'Alexandria', 'Inter', sans-serif;
    font-weight: 500;
}

/* English language text styling */
.lang-btn[data-lang="en"] .lang-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Flag image loading optimization */
.flag-img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    background-color: #f3f4f6;
}

.lang-btn:hover .flag-img {
    transform: scale(1.05);
}

/* Loading state for flag images */
.flag-img:not([src]) {
    background: linear-gradient(45deg, #f3f4f6 25%, transparent 25%), 
                linear-gradient(-45deg, #f3f4f6 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f3f4f6 75%), 
                linear-gradient(-45deg, transparent 75%, #f3f4f6 75%);
    background-size: 4px 4px;
    background-position: 0 0, 0 2px, 2px -2px, -2px 0px;
    animation: loading 1s linear infinite;
}

/* Flag image error fallback */
.flag-emoji-fallback {
    display: inline-block;
    font-size: 1.1em;
    line-height: 1;
    width: 20px;
    text-align: center;
}

/* High DPI display support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .flag-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@keyframes loading {
    0% { background-position: 0 0, 0 2px, 2px -2px, -2px 0px; }
    100% { background-position: 4px 4px, 4px 6px, 6px 2px, 2px 4px; }
}

.lang-text {
    font-weight: inherit;
    font-size: inherit;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.logo {
    margin-bottom: 12px;
}

.logo img {
    max-width: 210px;
    height: auto;
    transition: opacity 0.3s ease;
}

.logo-light {
    opacity: 1;
}

.logo-dark {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

[data-theme="dark"] .logo-light {
    opacity: 0;
}

[data-theme="dark"] .logo-dark {
    opacity: 1;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #8B5CF6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6.2rem;
    letter-spacing: -1px;
    font-family: 'Alexandria', 'Inter', sans-serif;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    opacity: 0.9;
    color: var(--muted-color);
    font-weight: 300;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.countdown-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    transform: scale(1) !important;
}

.countdown-circle svg defs {
    display: none;
}

.countdown-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.countdown-track {
    fill: none;
    stroke: var(--circle-track);
    stroke-width: 6;
}

.countdown-progress {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.countdown-number {
    position: relative;
    z-index: 1;
}

.countdown-label {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--muted-color);
    font-weight: 500;
    font-family: 'Inter', 'Alexandria', sans-serif;
}

.separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D1D5DB;
    align-self: center;
    margin-top: -2rem;
}

.email-signup {
    background: transparent;
    padding: 2rem;
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    min-width: 300px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', 'Alexandria', sans-serif;
}

.email-input:focus {
    border-color: #d94e6c;
    box-shadow: 0 0 0 3px rgb(217 78 108 / 15%);
}

.email-input::placeholder {
    color: var(--muted-color);
}

.signup-btn {
    padding: 1rem 25px;
    background: linear-gradient(45deg, #d94e6c 50%, #e9af3e);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 110px;
    font-family: 'Inter', 'Alexandria', sans-serif;
    position: relative;
    overflow: hidden;
}

.signup-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-text,
.btn-loading {
    transition: opacity 0.3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* iOS-inspired Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.7) translateY(30px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.show .popup-container {
    transform: scale(1) translateY(0);
}

.popup-header {
    text-align: center;
    padding: 30px 30px 20px;
}

.popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-icon.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.popup-icon.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.popup-icon svg {
    width: 32px;
    height: 32px;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    font-family: inherit;
}

.popup-content {
    padding: 0 30px 20px;
    text-align: center;
}

.popup-message {
    color: var(--muted-color);
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.popup-actions {
    padding: 20px 30px 30px;
}

.popup-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.popup-btn.primary {
    background: linear-gradient(45deg, #d94e6c 50%, #e9af3e);
    color: white;
}

.popup-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(217, 78, 108, 0.4);
}

.popup-btn.primary:active {
    transform: translateY(0);
}

/* Responsive popup styles */
@media (max-width: 480px) {
    .email-signup {
    padding: 0;
}
    .container {
    padding-top: 90px;
}
    .popup-container {
        margin: 20px;
        border-radius: 16px;
    }
    
    .popup-header {
        padding: 25px 25px 15px;
    }
    
    .popup-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 15px;
    }
    
    .popup-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-content {
        padding: 0 25px 15px;
    }
    
    .popup-actions {
        padding: 15px 25px 25px;
    }
}

/* RTL Support */
body.rtl .language-selector {
    right: auto !important;
    left: 2rem !important;
}

body.rtl .email-form {
    direction: rtl;
}

body.rtl .countdown {
    direction: ltr; /* Keep countdown numbers LTR */
}

body.rtl .countdown-label {
    direction: rtl;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .language-selector {
        top: 1rem !important;
        right: 1rem !important;
    }
    
    .theme-toggle {
        top: 1rem !important;
        left: 1rem !important;
        padding: 0.25rem !important;
    }
    
    .theme-slider {
        width: 50px;
        height: 25px;
        border-radius: 12.5px;
    }
    
    .slider-knob {
        width: 21px;
        height: 21px;
        top: 2px;
        left: 2px;
    }
    
    .theme-checkbox:checked + .theme-slider .slider-knob {
        transform: translateX(25px);
    }
    
    .slider-icon {
        font-size: 0.7em;
    }
    
    .sun-icon {
        left: 4px;
    }
    
    .moon-icon {
        right: 4px;
    }
    
    body.rtl .language-selector {
        right: auto !important;
        left: 1rem !important;
    }
    
    body.rtl .theme-toggle {
        left: auto !important;
        right: 1rem !important;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-circle {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .separator {
        font-size: 2rem;
        margin-top: -1rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: 100%;
    }

    .signup-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .language-selector {
        top: 0.5rem !important;
        right: 0.5rem !important;
        padding: 0.25rem;
    }
    
    .theme-toggle {
        top: 0.5rem !important;
        left: 0.5rem !important;
        padding: 0.2rem !important;
    }
    
    .theme-slider {
        width: 45px;
        height: 23px;
        border-radius: 11.5px;
    }
    
    .slider-knob {
        width: 19px;
        height: 19px;
        top: 2px;
        left: 2px;
    }
    
    .theme-checkbox:checked + .theme-slider .slider-knob {
        transform: translateX(22px);
    }
    
    .slider-icon {
        font-size: 0.6em;
    }
    
    .sun-icon {
        left: 3px;
    }
    
    .moon-icon {
        right: 3px;
    }
    
    body.rtl .language-selector {
        right: auto !important;
        left: 0.5rem !important;
    }
    
    body.rtl .theme-toggle {
        left: auto !important;
        right: 0.5rem !important;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 85px;
        gap: 0.4rem;
    }
    
    .flag-img {
        width: 16px;
        height: 12px;
    }
    
    .flag-emoji-fallback {
        font-size: 1em;
        width: 16px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .countdown-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
}

/* WhatsApp Button - iOS Style */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem; /* Default position, will be adjusted by JS */
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappFloat 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.whatsapp-button:hover {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: none;
}

.whatsapp-button:active {
    transform: scale(0.98) translateY(0);
    transition: all 0.1s ease;
}

.whatsapp-icon {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.whatsapp-button:hover .whatsapp-icon {
    transform: scale(1.1);
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

/* iOS-style Pulse animation */
.whatsapp-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    opacity: 0;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

/* iOS-style Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    left: 0;
    transform: translateX(0) translateY(-15px);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 18px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2px;
    max-width: 250px;
    min-width: 200px;
    margin-inline-start: -10px;
}

.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(-20px);
}

[data-theme="dark"] .whatsapp-tooltip {
    background: rgba(44, 44, 46, 0.95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-content {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
}

.tooltip-text {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.tooltip-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.tooltip-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

[data-theme="dark"] .tooltip-close {
    color: #999;
}

[data-theme="dark"] .tooltip-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tooltip-close svg {
    width: 12px;
    height: 12px;
}

.tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 30px;
    transform: translateX(0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .tooltip-arrow {
    border-top-color: rgba(44, 44, 46, 0.95);
}

.whatsapp-tooltip.dismissed {
    display: none;
}

/* Enhanced Animations */
@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(1deg);
    }
    50% {
        transform: translateY(-3px) rotate(0deg);
    }
    75% {
        transform: translateY(-9px) rotate(-1deg);
    }
}

@keyframes whatsappPulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    40% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-tooltip {
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .tooltip-content {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        font-size: 0.8rem;
        max-width: 200px;
    }
    
    .tooltip-content {
        padding: 8px 12px;
    }
    
    .tooltip-text {
        font-size: 0.8rem;
    }
}

/* RTL positioning adjustments */
body.rtl .whatsapp-tooltip {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-15px);
}

body.rtl .whatsapp-tooltip.show {
    transform: translateX(0) translateY(-20px);
}

body.rtl .tooltip-arrow {
    left: auto;
    right: 30px;
}

body.rtl .tooltip-content {
    flex-direction: row-reverse;
}

body.rtl .tooltip-close {
    margin-left: 0;
    margin-right: 8px;
}
.logo > a {
    display: inline-block;
    position: relative;
}

p.signup-text {
    padding-top: 20px;
    font-size: 14px;
    color: var(--muted-color);
}