* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kufam', sans-serif;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #1e40af;
    --accent-color: #3730a3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Kufam', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #030712;
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

body[dir="rtl"] {
    font-family: 'Kufam', sans-serif;
}

/* Animated Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
    animation: float 8s infinite ease-in-out;
    mix-blend-mode: screen;
}

.gradient-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at 30% 30%, #000000, #1e40af, #02021b);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
    animation-duration: 6s;
    opacity: 0.6;
}

.gradient-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 70% 70%, #707689, #e8e7ee, #6d6776);
    bottom: -250px;
    right: -250px;
    animation-delay: 1s;
    animation-duration: 8s;
    opacity: 0.5;
}

.gradient-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 50% 50%, #949499, #d6d5e3, #98999e);
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
    animation-duration: 10s;
    opacity: 0.4;
}

/* Additional gradient spheres for more movement */
.background::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 60% 40%, #6a6b6d, #a9a8bd);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.4;
    top: 20%;
    right: 10%;
    animation: pulse 4s infinite ease-in-out;
}

.background::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 40% 60%, #30289edc, #1d5595);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    bottom: 20%;
    left: 15%;
    animation: float 5s infinite ease-in-out reverse;
}

.gradient-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 20% 80%, #1e40af, #3047a3);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 7s;
    filter: blur(50px);
    opacity: 0.3;
}

.gradient-5 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at 80% 20%, #2e4a81, #1e3a8a);
    bottom: 40%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 9s;
    filter: blur(70px);
    opacity: 0.4;
}

/* Floating Line Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particles span {
    position: absolute;
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(30, 58, 138, 0.8) 20%,
        rgba(30, 64, 175, 1) 50%,
        rgba(55, 48, 163, 0.8) 80%,
        transparent 100%
    );
    border-radius: 2px;
    box-shadow: 
        0 0 20px rgba(30, 64, 175, 0.6),
        0 0 40px rgba(30, 64, 175, 0.3);
    animation: line-particle-float 15s infinite linear;
}

.particles span:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 18s; height: 60px; }
.particles span:nth-child(2) { left: 15%; animation-delay: 2s; animation-duration: 22s; height: 35px; }
.particles span:nth-child(3) { left: 25%; animation-delay: 1s; animation-duration: 20s; height: 50px; }
.particles span:nth-child(4) { left: 35%; animation-delay: 3s; animation-duration: 16s; height: 45px; }
.particles span:nth-child(5) { left: 45%; animation-delay: 0.5s; animation-duration: 24s; height: 40px; }
.particles span:nth-child(6) { left: 55%; animation-delay: 4s; animation-duration: 19s; height: 55px; }
.particles span:nth-child(7) { left: 65%; animation-delay: 1.5s; animation-duration: 21s; height: 30px; }
.particles span:nth-child(8) { left: 75%; animation-delay: 2.5s; animation-duration: 17s; height: 65px; }
.particles span:nth-child(9) { left: 85%; animation-delay: 3.5s; animation-duration: 23s; height: 38px; }
.particles span:nth-child(10) { left: 95%; animation-delay: 1.2s; animation-duration: 25s; height: 48px; }

@keyframes line-particle-float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(20px) rotate(180deg);
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(-10px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-50px) translateX(30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(30px) translateX(-20px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translateY(-20px) translateX(-40px) rotate(270deg) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

/* Enhanced Glassmorphism Effect */
.glass {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.1) 0%, 
        rgba(0, 0, 0, 0.2) 30%,
        rgba(30, 64, 175, 0.05) 70%,
        rgba(55, 48, 163, 0.08) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(30, 64, 175, 0.3);
    box-shadow: 
        0 12px 40px 0 rgba(0, 0, 0, 0.6),
        0 0 80px rgba(30, 64, 175, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 0 rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

/* Enhanced light reflection with blue tint */
.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        75deg,
        transparent 0%,
        rgba(30, 64, 175, 0.1) 20%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(30, 64, 175, 0.2) 60%,
        transparent 100%
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.glass:hover::before {
    left: 150%;
}

/* Additional glow effect on hover */
.glass:hover {
    box-shadow: 
        0 15px 50px 0 rgba(0, 0, 0, 0.7),
        0 0 120px rgba(30, 64, 175, 0.2),
        0 0 60px rgba(30, 58, 138, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(30, 64, 175, 0.4);
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 5px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition);
    font-family: 'Kufam', sans-serif;
}

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

/* Container */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    z-index: -1;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.service-guide-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.4;
}

.tagline {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.3;
}

.companion-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Actions Grid */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    font-family: 'Kufam', sans-serif;
}

.action-card {
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Wide card spanning two columns */
.wide-card {
    grid-column: span 2;
}

/* Animated gradient overlay */
.action-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Light streak effect */
.action-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.action-card:hover::before {
    opacity: 1;
}

.action-card:hover::after {
    transform: translateX(100%);
}

.action-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(99, 102, 241, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 100%);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

/* Inner glow effect */
.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.action-card:hover .icon-wrapper {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.action-card:hover .icon-wrapper::after {
    animation: shine 0.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.icon-wrapper.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.icon-wrapper.rating {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.icon-wrapper.social {
    background: linear-gradient(135deg, #E4405F, #833AB4);
}

.action-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Kufam', sans-serif;
}

.action-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    font-family: 'Kufam', sans-serif;
}

/* Info Section */
.info-section {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

/* Working Hours List */
.working-hours-list {
    margin-top: 10px;
}

.working-hours-list p {
    display: flex;
    gap: 8px;
    align-items: baseline;
    margin-bottom: 8px;
}

.working-hours-list strong {
    min-width: 140px;
    color: var(--text-primary);
    font-weight: 500;
}

.working-hours-list p > span {
    color: var(--text-secondary);
}

/* RTL support for working hours */
body[dir="rtl"] .working-hours-list p {
    flex-direction: row-reverse;
}

body[dir="rtl"] .working-hours-list strong {
    text-align: left;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 0;
}

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

.modal-content {
    position: relative;
    margin: 40px auto;
    padding: 20px;
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    animation: slideUp 0.3s ease;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Custom scrollbar for webkit browsers */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

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

.modal-content h2 {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
}

/* Modal text styling for smaller, more compact text */
.modal-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.modal-content h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 15px;
}

.modal-content li {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.modal-content ul {
    margin-bottom: 12px;
    padding-left: 18px;
}

.modal-content strong {
    font-size: 13px;
    line-height: 1.3;
}

.modal-content small {
    font-size: 11px;
    line-height: 1.3;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Phone List */
.phone-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid transparent;
}

.phone-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    transform: translateX(5px);
}

.phone-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}

/* Location List */
.location-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    transform: translateX(5px);
}

.location-item i:first-child {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.location-item i:last-child {
    margin-left: auto;
    color: var(--text-secondary);
}

.location-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}

/* Location Phone */
.location-phone {
    margin-top: 8px;
}

.location-phone a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.location-phone a:hover {
    color: var(--accent-color);
}

.location-phone i {
    font-size: 12px;
    color: var(--accent-color);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.offer-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid transparent;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    transform: scale(1.05);
}

.offer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.offer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.5;
}

.offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: brightness(1.1) contrast(1.1);
}

.offer-card:hover .offer-logo {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.offer-card.chevrolet .offer-logo,
.offer-card.chevrolet-ar .offer-logo {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.offer-card.gmc .offer-logo,
.offer-card.gmc-ar .offer-logo {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.offer-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

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

/* Rating Modal Styles */
.rating-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.rating-faces {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.rating-face {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    font-size: 14px;
}

.rating-face:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    transform: scale(1.1);
}

.rating-face i {
    font-size: 48px;
    transition: var(--transition);
}

.rating-face:nth-child(1) i {
    color: #ef4444;
}

.rating-face:nth-child(2) i {
    color: #f59e0b;
}

.rating-face:nth-child(3) i {
    color: #10b981;
}

.rating-face:hover i {
    transform: scale(1.2);
}

/* Social Media Modal Styles */
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    transform: translateX(5px);
}

.social-link i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E4405F, #833AB4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.social-link.linkedin i {
    background: linear-gradient(135deg, #0077B5, #0A66C2);
}

.social-link.twitter i {
    background: linear-gradient(135deg, #1DA1F2, #000000);
}

/* RTL Support */
body[dir="rtl"] .container {
    direction: rtl;
}

body[dir="rtl"] .language-toggle {
    left: 20px;
    right: auto;
}

body[dir="rtl"] .close {
    left: 20px;
    right: auto;
}

body[dir="rtl"] .phone-item:hover,
body[dir="rtl"] .location-item:hover {
    transform: translateX(-5px);
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .header {
        margin-top: 50px;
        padding: 25px 15px;
    }
    
    .company-name {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .service-guide-title {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .tagline {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .companion-text {
        font-size: 12px;
    }
    
    .actions-grid {
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }
    
    .action-card {
        padding: 18px;
    }
    
    /* On mobile, wide cards still span two columns */
    .wide-card {
        grid-column: span 2;
    }
    
    .modal-content {
        width: 95%;
        padding: 18px 15px;
        margin: 20px auto;
        max-height: calc(100vh - 40px);
    }
    
    .modal {
        padding: 10px 0;
    }
    
    .modal-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .modal-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
        margin-top: 12px;
    }
    
    .modal-content p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .modal-content li {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    /* Mobile gradient optimizations */
    .gradient-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
        opacity: 0.18;
        animation-duration: 12s;
    }
    
    .gradient-2 {
        width: 160px;
        height: 160px;
        bottom: -80px;
        right: -80px;
        opacity: 0.12;
        animation-duration: 15s;
    }
    
    .gradient-3 {
        width: 140px;
        height: 140px;
        opacity: 0.1;
        animation-duration: 18s;
    }
    
    .gradient-4 {
        width: 110px;
        height: 110px;
        opacity: 0.08;
        filter: blur(25px);
    }
    
    .gradient-5 {
        width: 120px;
        height: 120px;
        opacity: 0.1;
        filter: blur(30px);
    }
    
    .background::before {
        width: 120px;
        height: 120px;
        opacity: 0.08;
        filter: blur(30px);
    }
    
    .background::after {
        width: 110px;
        height: 110px;
        opacity: 0.12;
        filter: blur(25px);
    }
    
    /* Reduce particle count on mobile */
    .particles span:nth-child(n+6) {
        display: none;
    }
    
    /* Simplify glass effects on mobile */
    .glass {
        backdrop-filter: blur(15px) saturate(150%);
        -webkit-backdrop-filter: blur(15px) saturate(150%);
    }
    
    .glass:hover {
        box-shadow: 
            0 10px 35px 0 rgba(0, 0, 0, 0.6),
            0 0 80px rgba(30, 64, 175, 0.15),
            inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }
    
    /* Mobile button adjustments */
    .mobile-service-btn,
    .pickup-service-btn,
    .onstar-btn,
    .accessories-btn,
    .benefits-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .calc-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .calc-btn {
        width: 100%;
    }
    
    .emergency-number-btn {
        padding: 10px 12px;
    }
    
    .maintenance-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(0, 0, 0, 0.8);
        --glass-border: rgba(255, 255, 255, 0.5);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Emergency Button Styling */
.action-card.emergency {
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
}

.action-card.emergency:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.08));
}

.icon-wrapper.emergency {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

/* Roadside Assistance Modal Styles */
.emergency-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.emergency-number-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.emergency-number-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.emergency-number-btn i {
    font-size: 1.5rem;
    color: #ef4444;
}

.emergency-number-btn strong {
    display: block;
    font-size: 1.1rem;
}

.emergency-number-btn small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Benefits Form Section */
.benefits-form-section h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.roadside-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Service Booking Modal */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.booking-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Booking card logos removed */

.booking-card h3 {
    margin-bottom: 0.5rem;
}

.booking-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.booking-card .fa-external-link-alt {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.maintenance-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.maintenance-links h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.maintenance-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.maintenance-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.maintenance-link i {
    color: var(--accent-color);
}

/* Modal Button Styles - Consistent button design for all modal links */
.mobile-service-btn,
.pickup-service-btn,
.onstar-btn,
.accessories-btn,
.benefits-btn,
.calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.mobile-service-btn:hover,
.pickup-service-btn:hover,
.onstar-btn:hover,
.accessories-btn:hover,
.benefits-btn:hover,
.calc-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

/* Specific button variants */
.calc-btn {
    width: auto;
    flex: 1;
    margin: 0;
}

.calc-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.calc-btn.chevrolet {
    background: #d4a017;
}

.calc-btn.chevrolet:hover {
    background: #b8901a;
}

.calc-btn.gmc {
    background: #c41e3a;
}

.calc-btn.gmc:hover {
    background: #a01729;
}

/* Update maintenance links to button style */
.maintenance-link {
    background: var(--primary-color);
    color: white;
    justify-content: center;
    text-align: center;
    padding: 10px 16px;
    margin-bottom: 10px;
}

.maintenance-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

.maintenance-link i {
    color: white;
}

/* Update emergency buttons */
.emergency-number-btn {
    background: #dc2626;
    color: white;
    justify-content: center;
    margin-bottom: 10px;
}

.emergency-number-btn:hover {
    background: #b91c1c;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.emergency-number-btn i {
    color: white;
}

/* RTL Support for new elements */
body[dir="rtl"] .maintenance-link:hover {
    transform: translateX(-5px);
}

body[dir="rtl"] .booking-card .fa-external-link-alt {
    right: auto;
    left: 1rem;
}

/* Language visibility - JavaScript handles everything with inline styles */

/* Download Button Styles for App Store Links */
.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn.ios {
    background: linear-gradient(135deg, #000000, #333333);
}

.download-btn.android {
    background: linear-gradient(135deg, #01875f, #4285f4);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-btn.ios:hover {
    background: linear-gradient(135deg, #333333, #555555);
}

.download-btn.android:hover {
    background: linear-gradient(135deg, #019267, #4f94ff);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.btn-content i {
    font-size: 24px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.download-text {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
}

.store-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 1px;
}

/* RTL Support for Download Buttons */
body[dir="rtl"] .btn-text {
    text-align: right;
}

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

/* Keep in Mind Modal Styles */
.keep-in-mind-info {
    padding: 20px 0;
}

.keep-in-mind-info .intro-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.program-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-section h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-section h3 i {
    color: var(--accent-color);
    font-size: 18px;
}

.program-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-section li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.program-section li i {
    color: #10b981;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-section .info-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.info-contact-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.info-contact-btn i {
    font-size: 16px;
}

.closing-text {
    text-align: center;
    margin-top: 20px;
    color: var(--accent-color);
    font-size: 16px;
}

/* Universal Modal Content Styling */
.mobile-van-info,
.pickup-info,
.onstar-info,
.accessories-info,
.ev-charging-info,
.cost-info,
.issues-guide {
    padding: 20px 0;
}

.mobile-van-info .intro-text,
.pickup-info .intro-text,
.onstar-info .intro-text,
.accessories-info .intro-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-features,
.service-details,
.onstar-features,
.accessories-categories,
.availability-section,
.availability-info,
.onstar-contact,
.accessories-contact,
.benefits-section,
.calculator-links,
.network-overview,
.app-instructions,
.app-download {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features h3,
.service-details h3,
.onstar-features h3,
.availability-section h3,
.availability-info h3,
.onstar-contact h3,
.accessories-contact h3,
.benefits-section h3,
.calculator-links h3,
.network-overview h3,
.app-instructions h3,
.app-download h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features h3 i,
.service-details h3 i,
.onstar-features h3 i,
.availability-section h3 i,
.availability-info h3 i,
.onstar-contact h3 i,
.accessories-contact h3 i,
.benefits-section h3 i,
.calculator-links h3 i,
.network-overview h3 i,
.app-instructions h3 i,
.app-download h3 i {
    color: var(--accent-color);
    font-size: 18px;
}

.service-features ul,
.service-details ul,
.onstar-features ul,
.benefits-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li,
.service-details li,
.onstar-features li,
.benefits-section li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.service-features li i,
.service-details li i,
.onstar-features li i,
.benefits-section li i {
    color: #10b981;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.location-text,
.area-text,
.network-stats {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.schedule,
.booking-notice {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-item {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    padding: 8px 0;
}

.schedule-item.unavailable {
    color: #ef4444;
    opacity: 0.8;
}

.booking-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
}

/* RTL Support for Keep in Mind Modal */
body[dir="rtl"] .program-section li {
    text-align: right;
}

body[dir="rtl"] .contact-info-section .info-text {
    text-align: center;
}

body[dir="rtl"] .service-features li,
body[dir="rtl"] .service-details li,
body[dir="rtl"] .onstar-features li,
body[dir="rtl"] .benefits-section li {
    text-align: right;
}

/* Vehicle Maintenance Modal Styling */
.maintenance-info {
    padding: 20px 0;
}

.maintenance-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.maintenance-section h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.maintenance-section h3 i {
    color: var(--accent-color);
    font-size: 18px;
}

.maintenance-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.maintenance-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maintenance-section li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.maintenance-section li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Category Grid for Accessories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.category-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.category-item span {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

/* Roadside Issues Styling */
.issue-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.issue-item h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.issue-item h3 i {
    color: var(--accent-color);
    font-size: 18px;
}

.issue-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.issue-item li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.issue-item li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Emergency Support Section */
.emergency-support {
    margin-top: 30px;
    padding: 20px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.support-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Step Instructions */
.instruction-steps {
    margin-top: 15px;
}

.step {
    margin-bottom: 15px;
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-content i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.step-content span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design for Download Buttons */
@media (max-width: 480px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Emergency Contact Buttons */
.emergency-contacts {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.emergency-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.emergency-btn i {
    font-size: 20px;
    margin-right: 12px;
    color: white;
}

.emergency-btn div {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.3;
}

.emergency-btn strong {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.emergency-btn span {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.9;
}

/* Accessories Contact Buttons */
.contact-numbers {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.accessories-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 160px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.accessories-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.accessories-btn i {
    font-size: 16px;
    margin-right: 8px;
    color: white;
}

.accessories-btn span {
    font-size: 14px;
    font-weight: 600;
}

/* Support Text Styling */
.support-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* RTL Support for Emergency Buttons */
body[dir="rtl"] .emergency-btn i {
    margin-right: 0;
    margin-left: 12px;
}

body[dir="rtl"] .emergency-btn div {
    text-align: right;
}

body[dir="rtl"] .accessories-btn i {
    margin-right: 0;
    margin-left: 8px;
}

/* Responsive Design for Emergency Buttons */
@media (max-width: 480px) {
    .emergency-contacts,
    .contact-numbers {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-btn,
    .accessories-btn {
        width: 100%;
        max-width: 250px;
    }
}