.building-form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 10px;
    text-align: right;
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.building-form-group label span:first-child {
    flex: 1;
}

.building-form-group label[data-required]::after {
    content: " *";
    color: #dc2626;
    font-weight: bold;
}

.building-form-group input,
.building-form-group select {
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background-color: var(--primary-white);
    transition: all var(--transition-normal);
    direction: rtl;
    text-align: right;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.building-form-group input:focus,
.building-form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.building-form-group input:hover,
.building-form-group select:hover {
    border-color: #c1c9d0;
}

.building-form-group input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.building-form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: left 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-left: 40px;
}

.building-form-group select option {
    padding: 8px;
    direction: rtl;
}

/* Building Checkbox Styling */
.building-checkbox-group {
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 50px;
    width: 100%;
}

.building-checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 12px;
    padding: 12px 16px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    width: auto;
    direction: rtl;
}

.building-checkbox-wrapper:hover {
    background-color: #f0f8ff;
    border-color: var(--primary-blue);
}

.building-checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--primary-white);
    cursor: pointer;
    position: relative;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    transition: all var(--transition-normal);
}

.building-checkbox-wrapper input[type="checkbox"]:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.building-checkbox-wrapper input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-white);
    font-size: 14px;
    font-weight: bold;
}

.building-checkbox-wrapper label {
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0;
    font-size: 1rem;
}

.building-checkbox-wrapper input[type="checkbox"]:checked + label {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Disabled state for building checkbox wrapper */

/* Error States for Building Forms */
.building-form-group input.error,
.building-form-group select.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Disabled States for Building Forms */
.building-form-group input:disabled,
.building-form-group select:disabled {
    background-color: #f5f5f5;
    color: #9ca3af;
    border-color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.7;
}

.building-form-group input:disabled::placeholder {
    color: #d1d5db;
}

.building-form-group select:disabled {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d1d5db' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.building-form-group select:disabled option {
    color: #9ca3af;
}

/* Responsive Design for Building Forms */
@media (max-width: 768px) {
    .building-form-grid {
        gap: 14px;
    }
    
    .building-form-group input,
    .building-form-group select {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .building-checkbox-wrapper {
        padding: 10px 14px;
    }
    
    /* Building Sections Responsive */
    .building-sections-container {
        padding: 15px;
    }
    
    .building-main-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .building-section {
        margin-bottom: 25px;
        padding: 20px 18px;
    }
    
    .building-section-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .building-form-grid {
        gap: 12px;
    }
    
    .building-form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .building-form-group input,
    .building-form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .building-checkbox-wrapper {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .building-checkbox-wrapper label {
        font-size: 0.9rem;
    }
    
    /* Building Sections Responsive */
    .building-sections-container {
        padding: 10px;
    }
    
    .building-main-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .building-section {
        margin-bottom: 15px;
        padding: 12px;
    }
    
    .building-section-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
} 

/* Form Icons */
.form-icon {
    font-size: 1.1rem;
    margin-left: 8px;
    opacity: 0.8;
    display: inline-block;
}

/* Helper text styling */
.form-helper-text {
    font-size: 0.825rem;
    color: #6b7280;
    margin-top: 6px;
    font-style: italic;
    display: block;
    direction: rtl;
    text-align: right;
}

/* Enhanced form groups with better spacing */

/* Progress indicator */

/* Section indicators */
.building-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.building-section {
    position: relative;
    overflow: hidden;
}

.building-section:nth-child(2)::before {
    background-color: var(--primary-green);
}

.building-section:nth-child(3)::before {
    background-color: var(--secondary-orange);
}

.building-section:nth-child(4)::before {
    background-color: var(--primary-blue);
}

/* Improved input focus states */
.building-form-group input:focus,
.building-form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

/* Animated placeholders */
.building-form-group input::placeholder,
.building-form-group select::placeholder {
    color: #9ca3af;
    font-style: italic;
    transition: opacity 0.2s ease;
}

.building-form-group input:focus::placeholder,
.building-form-group select:focus::placeholder {
    opacity: 0.5;
}

/* Success state for filled fields */
.building-form-group input:valid:not([type="checkbox"]):not(:placeholder-shown):not(:focus),
.building-form-group select:valid:not([value=""]):not(:focus) {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3e%3cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 20px;
    padding-left: 44px;
    padding-right: 16px;
}

/* Info tooltips */

/* Smooth transitions for all interactive elements */
.building-form-group input,
.building-form-group select,
.building-checkbox-wrapper {
    transition: all 0.2s ease;
}

/* Visual separation between form sections */

/* Enhanced checkbox styling */
.building-checkbox-wrapper:hover {
    background-color: #eff6ff;
    border-color: var(--primary-blue);
    transform: translateX(-2px);
}

/* Subtle attention animation for required empty fields */
@keyframes subtle-attention {
    0%, 100% {
        border-color: #e5e7eb;
    }
    50% {
        border-color: #3b82f6;
    }
}

.building-form-group input:required:placeholder-shown:not(:focus) {
    animation: subtle-attention 3s ease-in-out infinite;
}

/* Better mobile experience */
@media (max-width: 768px) {
    
    .form-helper-text {
        font-size: 0.8rem;
    }
    
    .building-section {
        padding: 20px 16px;
    }
} 

/* Why Choose Us Section */
.why-us-section {
    padding: 100px 0;
    background: var(--primary-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    direction: rtl;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f2ff, #f0f7ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    direction: rtl;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    direction: rtl;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d99 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--primary-white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Coverage Types Section */
.coverage-section {
    padding: 100px 0;
    background: var(--primary-white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.coverage-card {
    background: var(--primary-white);
    border: 2px solid #e8f2ff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
}

.coverage-card.featured {
    border-color: var(--secondary-orange);
    background: linear-gradient(to bottom, #fff5e6, #fff);
}

.coverage-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--secondary-orange);
    color: var(--primary-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coverage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    direction: rtl;
    text-align: right;
}

.coverage-icon {
    width: 50px;
    height: 50px;
    background: #e8f2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-card.featured .coverage-icon {
    background: #fff0d9;
}

.coverage-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.coverage-card.featured .coverage-icon svg {
    color: var(--secondary-orange);
}

.coverage-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
}

.coverage-features {
    list-style: none;
    padding: 0;
    margin: 0;
    direction: rtl;
    text-align: right;
}

.coverage-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 1rem;
    direction: rtl;
    text-align: right;
}

.coverage-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* CTA Section */

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-shape-1 {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -150px;
    }
    
    .hero-shape-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .coverage-card {
        padding: 30px 20px;
    }
}

/* Navigation Enhancements */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section Enhancements */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-shape-4 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-blue) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
    top: 20%;
    left: 10%;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.secondary-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-cta-button:hover {
    background: var(--text-primary);
    color: var(--primary-white);
}

.hero-image {
    display: none;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-fade-in-delay-4 {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Section Tags */
.section-tag {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-purple), var(--accent-blue));
    z-index: 1;
}

/* Statistics Section Enhancements */
.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    color: var(--primary-purple);
}

/* Coverage Section Enhancements */
.coverage-button {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    direction: rtl;
    text-align: center;
}

.coverage-button:hover {
    background: var(--primary-purple);
    color: var(--primary-white);
}

.featured-button {
    background: var(--primary-purple);
    color: var(--primary-white);
}

.featured-button:hover {
    background: var(--primary-purple-dark);
    border-color: var(--primary-purple-dark);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-white);
    border: none;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    direction: rtl;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-light);
    direction: rtl;
    text-align: right;
}

.contact-wrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    direction: rtl;
}

.contact-info {
    direction: rtl;
    text-align: right;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
}

.contact-info p {
    direction: rtl;
    text-align: right;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    direction: rtl;
}

.contact-method {
    display: flex;
    gap: 1rem;
    direction: rtl;
    text-align: right;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-purple);
}

.contact-details {
    direction: rtl;
    text-align: right;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
}

.contact-details p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    direction: rtl;
    text-align: right;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Footer Redesign */
.footer {
    background: var(--text-primary);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
    direction: rtl;
    text-align: right;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    direction: rtl;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    direction: rtl;
    text-align: right;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-blue);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    direction: rtl;
    text-align: right;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
    direction: rtl;
    text-align: right;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    direction: rtl;
}

.footer-links a:hover {
    color: var(--primary-white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    text-align: right;
}

.footer-bottom p {
    direction: rtl;
    text-align: right;
}

.footer-bottom a {
    direction: rtl;
    text-align: right;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    direction: rtl;
}

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

.footer-bottom-links a:hover {
    color: var(--primary-white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-image {
        display: none;
    }
    
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-purple);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 998;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Process Timeline */
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-connector {
        display: none;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        display: none;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Hero */
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button,
    .secondary-cta-button {
        width: 100%;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Coverage */
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Methods */
    .contact-methods {
        grid-template-columns: 1fr;
        direction: rtl;
        text-align: right;
    }
    
    .contact-method {
        direction: rtl;
        text-align: right;
    }
    
    .contact-details {
        direction: rtl;
        text-align: right;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        direction: rtl;
    }
    
    .footer-bottom p {
        direction: rtl;
        text-align: center;
    }
    .footer-content,
    .footer-bottom,
    .footer-links,
    .footer-contact {
        direction: rtl !important;
        text-align: right !important;
    }
    .footer-column h3,
    .footer-column h4,
    .footer-column p,
    .footer-links li,
    .footer-contact li {
        direction: rtl !important;
        text-align: right !important;
    }
}

@media (max-width: 480px) {
    /* General */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    /* Process */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question span {
        font-size: 1rem;
        direction: rtl;
    }
    
    /* CTA Section */
}

/* Modal Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem auto;
        padding: 1rem;
    }
    
    .modal-body-grid {
        padding: 1rem;
    }
    
    .building-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Coverage Section Styles */
.coverage-explanation {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

.coverage-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px 0 0 2px;
}

.coverage-explanation p {
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.coverage-explanation p:last-child {
    margin-bottom: 0;
}

.coverage-explanation strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.coverage-list {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
    direction: rtl;
    text-align: right;
}

.coverage-list li {
    position: relative;
    padding: 0.5rem 2rem 0.5rem 0;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.coverage-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), #22c55e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.coverage-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Building Window Styles for Additional Coverage */

/* Enhanced Building Section Titles for Additional Coverage */
.building-section .building-section-title {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    direction: rtl;
    text-align: right;
}

/* Success and Error States for Additional Coverage */

/* Removed automatic success checkmark for additional coverage fields */

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive Design for Additional Coverage */
@media (max-width: 768px) {
    
    .coverage-explanation {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .coverage-list li {
        padding-right: 1.75rem;
        padding-left: 0;
        font-size: 0.85rem;
    }
    
    .coverage-list li::before {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.7rem;
    }
    
    .building-section .building-section-title {
        font-size: 1.2rem;
        gap: 0.5rem;
        flex-direction: row-reverse;
        direction: rtl;
        text-align: right;
    }
}

@media (max-width: 480px) {
    
    .coverage-explanation {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .coverage-explanation p {
        font-size: 0.85rem;
    }
    
    .coverage-list li {
        padding: 0.4rem 1.5rem 0.4rem 0;
        font-size: 0.8rem;
    }
    
    .coverage-list li::before {
        width: 1rem;
        height: 1rem;
        font-size: 0.6rem;
        top: 0.4rem;
    }
    
    .building-section .building-section-title {
        font-size: 1.1rem;
        gap: 0.4rem;
        flex-direction: row-reverse;
        direction: rtl;
        text-align: right;
    }
    
    .building-section {
        margin-bottom: 1.5rem;
    }
}

/* Enhanced Additional Coverage Window Styles - Fully Responsive */
#step-cover-additional .building-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: clamp(12px, 2.5vw, 20px);
    padding: clamp(20px, 4vw, 32px) clamp(16px, 3.5vw, 28px);
    margin-bottom: clamp(16px, 3vw, 24px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

#step-cover-additional .building-section:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #94a3b8;
}

@media (pointer: coarse) {
    #step-cover-additional .building-section:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
    }
}

/* Colored accent bars for each section */
#step-cover-additional .building-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    transition: width 0.3s ease;
}

#step-cover-additional .building-section:nth-child(2)::before {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
}

#step-cover-additional .building-section:nth-child(3)::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

#step-cover-additional .building-section:nth-child(4)::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

#step-cover-additional .building-section:nth-child(5)::before {
    background: linear-gradient(180deg, #8b5cf6, #7c3aed);
}

#step-cover-additional .building-section:nth-child(6)::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

#step-cover-additional .building-section:hover::before {
    width: 8px;
}

/* Enhanced section titles - Responsive */
#step-cover-additional .building-section-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: clamp(16px, 3vw, 24px);
    padding-bottom: clamp(12px, 2.5vw, 16px);
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
    flex-wrap: wrap;
}

#step-cover-additional .building-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue));
    border-radius: 1px;
}

/* Enhanced coverage explanation boxes - Fully Responsive */
#step-cover-additional .coverage-explanation {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: clamp(8px, 2vw, 14px);
    padding: clamp(16px, 3.5vw, 24px) clamp(18px, 4vw, 28px);
    margin-bottom: clamp(16px, 3vw, 20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    direction: rtl;
    text-align: right;
    transition: all 0.3s ease;
}

#step-cover-additional .coverage-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0ea5e9, #0284c7);
    border-radius: 0 12px 12px 0;
}

#step-cover-additional .coverage-explanation p {
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    line-height: 1.7;
    color: #334155;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    text-align: right;
    direction: rtl;
}

#step-cover-additional .coverage-explanation strong {
    color: #0369a1;
    font-weight: 700;
    font-size: clamp(0.9rem, 2.3vw, 1.1rem);
}

/* Enhanced coverage list */
#step-cover-additional .coverage-list {
    background-color: #fafbfc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
}

#step-cover-additional .coverage-list li {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 40px 12px 16px;
    margin-bottom: 8px;
    position: relative;
    transition: all 0.2s ease;
}

#step-cover-additional .coverage-list li:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateX(-2px);
}

#step-cover-additional .coverage-list li::before {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced checkbox styling - Fully Responsive */
#step-cover-additional .building-checkbox-wrapper {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 2px solid #e5e7eb;
    border-radius: clamp(8px, 2vw, 14px);
    padding: clamp(14px, 3vw, 18px) clamp(16px, 3.5vw, 22px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: clamp(10px, 2.5vw, 14px);
    min-height: clamp(56px, 10vw, 70px);
    cursor: pointer;
}

#step-cover-additional .building-checkbox-wrapper:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #60a5fa;
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.06);
}

@media (pointer: coarse) {
    #step-cover-additional .building-checkbox-wrapper:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

#step-cover-additional .building-checkbox-wrapper input[type="checkbox"] {
    width: clamp(20px, 4vw, 26px);
    height: clamp(20px, 4vw, 26px);
    border: 2px solid #cbd5e1;
    border-radius: clamp(4px, 1vw, 7px);
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

#step-cover-additional .building-checkbox-wrapper input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#step-cover-additional .building-checkbox-wrapper label {
    font-size: clamp(0.9rem, 2.3vw, 1.1rem);
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
    text-align: right;
    direction: rtl;
}

/* Enhanced form helper text */
#step-cover-additional .form-helper-text {
    background-color: #f1f5f9;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 0.875rem;
    color: #475569;
    border-right: 3px solid #cbd5e1;
}

/* Input field enhancements */
#step-cover-additional .building-form-group input[type="number"] {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#step-cover-additional .building-form-group input[type="number"]:focus {
    background-color: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

#step-cover-additional .building-form-group input[type="number"]:hover {
    border-color: #cbd5e1;
}

/* Section-specific color themes */
#step-cover-additional .building-section:nth-child(2) .building-checkbox-wrapper:hover {
    border-color: #3b82f6;
}

#step-cover-additional .building-section:nth-child(3) .building-checkbox-wrapper:hover {
    border-color: #10b981;
}

#step-cover-additional .building-section:nth-child(4) .building-checkbox-wrapper:hover {
    border-color: #f59e0b;
}

#step-cover-additional .building-section:nth-child(5) .building-checkbox-wrapper:hover {
    border-color: #8b5cf6;
}

#step-cover-additional .building-section:nth-child(6) .building-checkbox-wrapper:hover {
    border-color: #ef4444;
}

/* Enhanced Animations and Interactions */
#step-cover-additional .building-section,
#step-cover-additional .building-checkbox-wrapper,
#step-cover-additional .coverage-list li {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced focus states for accessibility */
#step-cover-additional .building-checkbox-wrapper:focus-within {
    outline: 3px solid rgba(59, 130, 246, 0.4);
    outline-offset: 2px;
    border-color: #3b82f6;
}

.verification-section:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Loading states */

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

/* Improved touch targets for mobile */
@media (pointer: coarse) {
    #step-cover-additional .building-checkbox-wrapper {
        min-height: 60px;
        padding: 16px 20px;
    }
    
    .btn-send-code {
        min-height: 48px;
        padding: 14px 24px;
    }
    
    .code-digit {
        min-width: 48px;
        min-height: 48px;
    }
}

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

/* Advanced Responsive Design for Additional Coverage */
@media (max-width: 1024px) and (min-width: 769px) {
    #step-cover-additional .building-section {
        padding: clamp(24px, 3.5vw, 28px);
        margin-bottom: clamp(18px, 2.5vw, 22px);
    }
}

@media (max-width: 768px) {
    #step-cover-additional .building-section {
        padding: clamp(18px, 4vw, 24px) clamp(14px, 3vw, 20px);
        margin-bottom: clamp(14px, 2.5vw, 18px);
        border-radius: clamp(10px, 2vw, 16px);
    }
    
    #step-cover-additional .building-section-title {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        margin-bottom: clamp(12px, 2.5vw, 18px);
        padding-bottom: clamp(8px, 2vw, 12px);
    }
    
    #step-cover-additional .coverage-explanation {
        padding: clamp(12px, 3vw, 18px) clamp(14px, 3.5vw, 20px);
        margin-bottom: clamp(12px, 2.5vw, 16px);
    }
    
    #step-cover-additional .building-checkbox-wrapper {
        padding: clamp(12px, 2.5vw, 16px) clamp(14px, 3vw, 18px);
        min-height: clamp(48px, 8vw, 60px);
        gap: clamp(8px, 2vw, 12px);
    }
    
    #step-cover-additional .building-checkbox-wrapper input[type="checkbox"] {
        width: clamp(18px, 3.5vw, 22px);
        height: clamp(18px, 3.5vw, 22px);
    }
}

@media (max-width: 480px) {
    #step-cover-additional .building-section {
        padding: clamp(14px, 3.5vw, 18px) clamp(12px, 3vw, 16px);
        margin-bottom: clamp(12px, 2vw, 16px);
        border-radius: clamp(8px, 1.5vw, 12px);
    }
    
    #step-cover-additional .building-section-title {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
        gap: clamp(6px, 1.5vw, 10px);
    }
    
    #step-cover-additional .coverage-explanation {
        padding: clamp(10px, 2.5vw, 14px) clamp(12px, 3vw, 16px);
        border-radius: clamp(6px, 1.5vw, 10px);
    }
    
    #step-cover-additional .building-checkbox-wrapper {
        padding: clamp(10px, 2vw, 14px) clamp(12px, 2.5vw, 16px);
        min-height: clamp(44px, 7vw, 52px);
        border-radius: clamp(6px, 1.5vw, 10px);
    }
}

/* Completion Window Styles - Fully Responsive & Enhanced */
.completion-container {
    max-width: clamp(300px, 95vw, 900px);
    margin: clamp(8px, 2vw, 16px) auto;
    padding: clamp(20px, 5vw, 48px);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: clamp(16px, 3vw, 28px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12), 0 12px 25px -8px rgba(0, 0, 0, 0.08);
    direction: rtl;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.completion-header {
    text-align: center;
    margin-bottom: 48px;
}

.completion-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.completion-icon {
    width: 80px;
    height: 80px;
    position: relative;
}

.completion-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 clamp(12px, 2.5vw, 20px) 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.completion-subtitle {
    font-size: clamp(1rem, 2.8vw, 1.35rem);
    color: #64748b;
    margin: 0 auto;
    line-height: 1.6;
    max-width: clamp(280px, 85vw, 600px);
    text-align: center;
}

/* Verification Sections - Enhanced Responsive */
.verification-section {
    background: white;
    border-radius: clamp(12px, 2.5vw, 20px);
    padding: clamp(20px, 4.5vw, 36px);
    margin-bottom: clamp(16px, 3vw, 28px);
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.verification-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

@media (pointer: coarse) {
    .verification-section:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.06);
    }
}

.section-title {
    font-size: clamp(1.25rem, 3.2vw, 1.65rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 clamp(18px, 3.5vw, 28px) 0;
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 18px);
    direction: rtl;
    line-height: 1.3;
    flex-wrap: wrap;
}

.step-number {
    width: clamp(32px, 6vw, 42px);
    height: clamp(32px, 6vw, 42px);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4), 0 2px 6px rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
}

/* Phone Input Section - Enhanced Responsive */
.phone-input-container {
    display: flex;
    gap: clamp(8px, 2vw, 16px);
    align-items: flex-start;
    direction: rtl;
    flex-wrap: wrap;
}

#phone-number {
    flex: 1;
    min-width: clamp(200px, 50vw, 300px);
    padding: clamp(14px, 3vw, 18px) clamp(16px, 3.5vw, 22px);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    border: 2px solid #e2e8f0;
    border-radius: clamp(8px, 2vw, 14px);
    direction: ltr;
    text-align: left;
    font-weight: 500;
    transition: all 0.4s ease;
    background-color: #f8fafc;
}

#phone-number:focus {
    border-color: #3b82f6;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    outline: none;
}

.btn-send-code {
    padding: clamp(14px, 3vw, 18px) clamp(20px, 4vw, 28px);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: clamp(8px, 2vw, 14px);
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-width: clamp(140px, 30vw, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-send-code:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 4px 12px rgba(16, 185, 129, 0.25);
}

@media (pointer: coarse) {
    .btn-send-code:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    }
}

.btn-send-code:active {
    transform: translateY(0);
}

.btn-send-code:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Spinner Animation */
.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Code Input Section */
.code-sent-message {
    text-align: center;
    color: #64748b;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

#phone-display {
    color: #1e293b;
    font-weight: 600;
    direction: ltr;
}

.code-inputs {
    display: flex;
    gap: clamp(8px, 2vw, 16px);
    justify-content: center;
    margin-bottom: clamp(20px, 4vw, 28px);
    flex-wrap: wrap;
    direction: ltr;
}

.code-digit {
    width: clamp(48px, 8vw, 64px);
    height: clamp(52px, 9vw, 72px);
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 700;
    border: 2px solid #e2e8f0;
    border-radius: clamp(8px, 2vw, 14px);
    transition: all 0.4s ease;
    background: #f8fafc;
    outline: none;
}

.code-digit:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: scale(1.08);
}

.code-digit.error {
    border-color: #ef4444;
    animation: shake 0.5s ease-in-out;
}

/* Code Actions */
.code-actions {
    text-align: center;
}

.btn-resend {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-resend:hover {
    background: #f0f9ff;
}

.btn-resend:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.resend-timer {
    color: #64748b;
}

/* Verification Error */
.verification-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

.error-icon {
    font-size: 1.25rem;
}

.error-text {
    color: #dc2626;
    font-weight: 500;
}

/* Success Section */
.success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease-out;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    margin: 0 0 12px 0;
}

.success-message {
    font-size: 1.125rem;
    color: #64748b;
    text-align: center;
    margin: 0 0 32px 0;
}

/* Agency Info */
.agency-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #bae6fd;
    direction: rtl;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.agency-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.agency-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.agency-details p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 45vw, 250px), 1fr));
    gap: clamp(16px, 3vw, 24px);
    margin-top: clamp(24px, 5vw, 40px);
    direction: rtl;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: clamp(10px, 2vw, 16px);
    padding: clamp(18px, 4vw, 28px);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: #94a3b8;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@media (pointer: coarse) {
    .info-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
}

.info-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: clamp(12px, 2.5vw, 20px);
    display: inline-block;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-card:nth-child(1) .info-icon {
    animation-delay: 0s;
}

.info-card:nth-child(2) .info-icon {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) .info-icon {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.info-card h4 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 clamp(6px, 1.5vw, 10px) 0;
    line-height: 1.3;
}

.info-card p {
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

/* Enhanced Submit Button for Completion */
.btn-submit-final {
    width: 100%;
    padding: clamp(16px, 3.5vw, 22px) clamp(28px, 5vw, 40px);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: clamp(10px, 2vw, 16px);
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: clamp(24px, 5vw, 40px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3), 0 2px 8px rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit-final:hover::before {
    left: 100%;
}

.btn-submit-final:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4), 0 6px 15px rgba(59, 130, 246, 0.25);
}

@media (pointer: coarse) {
    .btn-submit-final:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
    }
}

.btn-submit-final:disabled {
    background: linear-gradient(135deg, #94a3b8, #6b7280);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

/* Dynamic Color Themes */
.completion-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #ef4444, #8b5cf6);
    background-size: 300% 100%;
    animation: gradientShift 8s ease-in-out infinite;
    border-radius: clamp(16px, 3vw, 28px) clamp(16px, 3vw, 28px) 0 0;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced accessibility for reduced motion */
@media (prefers-reduced-motion: reduce) {
    #step-cover-additional .building-section,
    .verification-section,
    .info-card,
    .btn-send-code,
    .btn-submit-final {
        animation: none;
        transition: none;
    }
    
    #step-cover-additional .building-section:hover,
    .verification-section:hover,
    .info-card:hover,
    .btn-send-code:hover,
    .btn-submit-final:hover {
        transform: none;
    }
    
    .completion-container::before {
        animation: none;
    }
}

/* Advanced Responsive Design for Completion Window */
@media (max-width: 1200px) and (min-width: 769px) {
    .completion-container {
        padding: clamp(32px, 4vw, 44px);
        margin: clamp(12px, 2vw, 20px) auto;
    }
    
    .verification-section {
        padding: clamp(24px, 4vw, 32px);
    }
    
    .phone-input-container {
        gap: clamp(10px, 2vw, 14px);
    }
}

@media (max-width: 768px) {
    .completion-container {
        padding: clamp(20px, 4.5vw, 32px);
        margin: clamp(8px, 1.5vw, 16px);
        border-radius: clamp(12px, 2.5vw, 20px);
    }
    
    .completion-title {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
        margin-bottom: clamp(10px, 2vw, 16px);
    }
    
    .completion-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.2rem);
        margin-bottom: clamp(24px, 5vw, 36px);
    }
    
    .verification-section {
        padding: clamp(18px, 4vw, 28px);
        margin-bottom: clamp(14px, 2.5vw, 20px);
    }
    
    .phone-input-container {
        flex-direction: column;
        gap: clamp(12px, 2.5vw, 16px);
        align-items: stretch;
    }
    
    .btn-send-code {
        width: 100%;
        min-width: auto;
        padding: clamp(12px, 2.5vw, 16px) clamp(16px, 3vw, 24px);
    }
    
    .code-digit {
        width: clamp(42px, 7vw, 52px);
        height: clamp(46px, 8vw, 58px);
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    }
    
    .agency-info {
        flex-direction: column;
        text-align: center;
        padding: clamp(16px, 3.5vw, 24px);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: clamp(12px, 2.5vw, 18px);
    }
    
    .info-card {
        padding: clamp(16px, 3.5vw, 22px);
    }
}

@media (max-width: 480px) {
    .completion-container {
        padding: clamp(16px, 4vw, 24px);
        margin: clamp(6px, 1vw, 12px);
        border-radius: clamp(10px, 2vw, 16px);
    }
    
    .completion-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        line-height: 1.2;
        margin-bottom: clamp(8px, 1.5vw, 12px);
    }
    
    .completion-subtitle {
        font-size: clamp(0.85rem, 2.2vw, 1.05rem);
        margin-bottom: clamp(20px, 4vw, 28px);
    }
    
    .verification-section {
        padding: clamp(14px, 3.5vw, 20px);
        margin-bottom: clamp(12px, 2vw, 16px);
        border-radius: clamp(8px, 2vw, 14px);
    }
    
    .section-title {
        font-size: clamp(1.1rem, 2.8vw, 1.35rem);
        gap: clamp(8px, 2vw, 12px);
    }
    
    .step-number {
        width: clamp(28px, 5vw, 36px);
        height: clamp(28px, 5vw, 36px);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    #phone-number {
        min-width: 100%;
        padding: clamp(12px, 2.5vw, 16px) clamp(14px, 3vw, 18px);
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    }
    
    .btn-send-code {
        padding: clamp(10px, 2.2vw, 14px) clamp(14px, 3vw, 20px);
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
    
    .code-inputs {
        gap: clamp(6px, 1.5vw, 10px);
        margin-bottom: clamp(16px, 3vw, 22px);
    }
    
    .code-digit {
        width: clamp(36px, 6vw, 44px);
        height: clamp(40px, 7vw, 48px);
        font-size: clamp(1rem, 2.2vw, 1.25rem);
        border-radius: clamp(6px, 1.5vw, 10px);
    }
    
    .agency-info {
        padding: clamp(12px, 3vw, 18px);
        margin: clamp(16px, 3.5vw, 24px) 0;
    }
    
    .info-card {
        padding: clamp(12px, 3vw, 18px);
        border-radius: clamp(8px, 2vw, 12px);
    }
    
    .info-icon {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        margin-bottom: clamp(8px, 2vw, 12px);
    }
}

/* Device-Specific Optimizations */

/* iPhone SE, iPhone 12 mini */
@media (max-width: 375px) and (max-height: 667px) {
    #step-cover-additional .building-section,
    .completion-container {
        border-radius: clamp(8px, 2vw, 12px);
        padding: clamp(12px, 3vw, 16px);
    }
    
    #step-cover-additional .building-section-title,
    .section-title {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .code-digit {
        width: clamp(32px, 5.5vw, 38px);
        height: clamp(36px, 6.5vw, 42px);
    }
}

/* iPhone 12, iPhone 13, iPhone 14 */
@media (max-width: 390px) and (min-width: 376px) {
    #step-cover-additional .building-checkbox-wrapper {
        min-height: clamp(52px, 8vw, 58px);
    }
    
    .verification-section {
        padding: clamp(16px, 3.5vw, 22px);
    }
}

/* iPhone 12 Pro Max, iPhone 13 Pro Max, iPhone 14 Plus */
@media (max-width: 428px) and (min-width: 391px) {
    #step-cover-additional .building-section {
        padding: clamp(18px, 3.5vw, 24px) clamp(16px, 3vw, 22px);
    }
    
    .completion-container {
        padding: clamp(20px, 4vw, 28px);
    }
    
    .code-digit {
        width: clamp(44px, 7vw, 50px);
        height: clamp(48px, 8vw, 54px);
    }
}

/* iPad Mini, iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    #step-cover-additional .building-section {
        padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px);
        margin-bottom: clamp(20px, 2vw, 28px);
    }
    
    .completion-container {
        padding: clamp(36px, 4vw, 48px);
        max-width: clamp(600px, 80vw, 750px);
    }
    
    .phone-input-container {
        flex-direction: row;
        gap: clamp(14px, 2vw, 20px);
    }
    
    .btn-send-code {
        min-width: clamp(160px, 25vw, 200px);
    }
    
    .code-digit {
        width: clamp(56px, 6vw, 68px);
        height: clamp(60px, 7vw, 72px);
        font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    }
}

/* iPad Pro */
@media (min-width: 1024px) and (max-width: 1366px) {
    #step-cover-additional .building-section {
        padding: clamp(32px, 2.5vw, 40px) clamp(28px, 2vw, 36px);
        margin-bottom: clamp(24px, 1.5vw, 32px);
    }
    
    .completion-container {
        padding: clamp(44px, 3vw, 56px);
        max-width: clamp(700px, 70vw, 850px);
    }
}

/* Enhanced Additional Coverage Window Styles - מבוטל, נעבור לעיצוב רגיל כמו building sections */

/* Coverage explanation boxes - עיצוב משופר לקופסאות הסבר */
.coverage-explanation {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    direction: rtl;
    text-align: right;
}

.coverage-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0ea5e9, #0284c7);
    border-radius: 0 12px 12px 0;
}

.coverage-explanation p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 0.75rem;
}

.coverage-explanation p:last-child {
    margin-bottom: 0;
}

.coverage-explanation strong {
    color: #0369a1;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Enhanced coverage list */
.coverage-list {
    background-color: #fafbfc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
    list-style: none;
    direction: rtl;
    text-align: right;
}

.coverage-list li {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 40px 12px 16px;
    margin-bottom: 8px;
    position: relative;
    transition: all 0.2s ease;
    direction: rtl;
    text-align: right;
}

.coverage-list li:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateX(-2px);
}

.coverage-list li::before {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.coverage-list li strong {
    color: #1e293b;
    font-weight: 600;
}

/* Responsive improvements for coverage sections */
@media (max-width: 768px) {
    .coverage-explanation {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .coverage-list li {
        padding: 10px 35px 10px 14px;
        font-size: 0.9rem;
    }
    
    .coverage-list li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .coverage-explanation {
        padding: 14px 16px;
        margin-bottom: 16px;
    }
    
    .coverage-explanation p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .coverage-list {
        padding: 12px;
    }
    
    .coverage-list li {
        padding: 8px 30px 8px 12px;
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .coverage-list li::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        right: 8px;
    }
}

/* Completion Window Enhanced Responsive Styles */
.completion-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    direction: rtl;
    text-align: right;
}

.completion-header {
    text-align: center;
    margin-bottom: 48px;
}

.completion-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.completion-icon {
    width: 80px;
    height: 80px;
    position: relative;
}

.completion-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.completion-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Verification sections */
.verification-section {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.verification-section:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
}

.step-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    order: -1;
}

/* Phone input improvements */
.phone-input-container {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    direction: rtl;
}

#phone-number {
    flex: 1;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
    direction: ltr;
    text-align: left;
}

#phone-number:focus {
    background-color: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.btn-send-code {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.footer, .footer-content, .footer-bottom, .footer-bottom-links, .footer-column, .footer-column p, .footer-column h3, .footer-column h4, .footer-links, .footer-links li, .footer-links a, .footer-contact, .footer-contact li {
    direction: rtl;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}