/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Choose Smart Influencers Section */
.why-choose-smart {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.insight-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.insight-icon {
    font-size: 3rem;
    margin-left: 2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.insight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.insight-text .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.radar-promise {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid #ffd700;
}

.radar-promise i {
    font-size: 1.2rem;
    margin-left: 0.8rem;
    color: #ffd700;
}

.radar-promise span {
    font-size: 1rem;
    line-height: 1.6;
}

/* Campaign Builder Section */
.campaign-builder {
    padding: 80px 0;
    background: white;
}

.builder-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.builder-step h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #2c3e50;
}

.choice-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.choice-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
}

.choice-btn:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.choice-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.choice-btn i {
    font-size: 2rem;
}

.choice-btn small {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.5rem;
    line-height: 1.4;
    text-align: center;
}

/* Builder Sections */
.builder-section {
    margin-top: 2rem;
}

.builder-section.hidden {
    display: none;
}

/* General hidden class for all elements */
.hidden {
    display: none !important;
}

/* Input Groups */
.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.slider-container input[type="range"] {
    flex: 1;
    height: 6px;
    background: #e1e8ed;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    cursor: pointer;
}

.slider-container input[type="number"] {
    width: 80px;
    padding: 8px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.slider-value {
    font-weight: 700;
    color: #667eea;
    min-width: 30px;
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.price-info {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.total-price {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
}

/* Additional Services */
.additional-services {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.additional-services h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.targeting-choice h5 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover, .checkbox-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.radio-option input[type="radio"], .checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #667eea;
}

.radio-text, .checkbox-text {
    flex: 1;
    font-weight: 500;
}

.price-tag {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Products Section */
.products {
    padding: 6rem 0 4rem 0;
    background: #f8f9fa;
    margin-top: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    transform: scale(1.05);
    border: 3px solid #667eea;
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.product-icon.green {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.product-icon.blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.product-icon.yellow {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.product-icon.purple {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.product-icon.red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.product-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features i {
    color: #27ae60;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.product-features i.fa-plus {
    color: #f39c12;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:hover {
    background: #f8f9ff;
}

.comparison-table tr.highlight {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.text-green {
    color: #27ae60;
}

.text-red {
    color: #e74c3c;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Fixed CTA for Mobile */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .choice-buttons {
        flex-direction: column;
    }
    
    .choice-btn {
        min-width: auto;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .builder-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .fixed-cta {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comparison-table-wrapper {
        margin: 1rem -20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .builder-card {
        padding: 15px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.campaign-builder,
.products,
.comparison,
.contact {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Targeting Options */
.targeting-options {
    margin-top: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 20px;
    border: 2px solid #e3e8ff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.targeting-header {
    text-align: center;
    margin-bottom: 30px;
}

.targeting-header h5 {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.targeting-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

.targeting-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.filter-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.filter-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.filter-header i {
    color: #667eea;
    font-size: 18px;
}

.filter-header label {
    font-weight: 700;
    font-size: 16px;
    color: #374151;
    margin: 0;
}

/* Interests Grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.interest-option {
    position: relative;
    cursor: pointer;
}

.interest-option input[type="checkbox"] {
    display: none;
}

.interest-tag {
    display: block;
    padding: 10px 15px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
}

.interest-option input[type="checkbox"]:checked + .interest-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: scale(1.05);
}

/* Gender Options */
.gender-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gender-option {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.gender-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

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

.gender-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 20px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.gender-icon.male {
    background: #dbeafe;
    color: #3b82f6;
}

.gender-icon.female {
    background: #fce7f3;
    color: #ec4899;
}

.gender-text {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.gender-option input[type="radio"]:checked ~ .gender-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

.gender-option input[type="radio"]:checked ~ .gender-text {
    color: #667eea;
    font-weight: 700;
}

/* Age Options */
.age-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.age-option {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.age-option:hover {
    border-color: #667eea;
    transform: translateY(-1px);
}

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

.age-text {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.age-option input[type="radio"]:checked + .age-text,
.age-option.active .age-text {
    color: white;
}

.age-option input[type="radio"]:checked,
.age-option.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.city-option {
    position: relative;
    cursor: pointer;
}

.city-option input[type="checkbox"] {
    display: none;
}

.city-tag {
    display: block;
    padding: 12px 15px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
}

.city-option input[type="checkbox"]:checked + .city-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: scale(1.05);
}

/* Branding Options */
.branding-options {
    margin-top: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #fff8f0 0%, #fff2e6 100%);
    border-radius: 20px;
    border: 2px solid #fed7aa;
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.1);
}

.branding-header {
    text-align: center;
    margin-bottom: 30px;
}

.branding-header h5 {
    font-size: 24px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.branding-subtitle {
    color: #9a3412;
    font-size: 16px;
    margin: 0;
}

.branding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.logo-section, .colors-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #fed7aa;
}

.logo-header, .colors-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #fed7aa;
}

.logo-header i, .colors-header i {
    color: #ea580c;
    font-size: 18px;
}

.logo-header label, .colors-header label {
    font-weight: 700;
    font-size: 16px;
    color: #374151;
    margin: 0;
}

.required {
    background: #fef2f2;
    color: #dc2626;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-right: auto;
}

.logo-input-wrapper {
    position: relative;
}

.logo-input-wrapper input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.logo-input-wrapper input:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.input-help {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 12px;
    color: #6b7280;
}

.input-help i {
    color: #9ca3af;
}

/* Color Picker Styles */
.colors-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.color-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-input-group label {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.color-input-group.optional label {
    color: #6b7280;
}

.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-picker-wrapper input[type="color"] {
    width: 50px;
    height: 40px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    background: none;
}

.color-picker-wrapper input[type="text"] {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: monospace;
}

.color-picker-wrapper input:focus {
    outline: none;
    border-color: #ea580c;
}

.color-preview {
    margin-top: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.preview-header {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 15px;
    text-align: center;
}

.preview-palette {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
}

/* Account Input Section */
.account-input-section {
    margin-top: 25px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    border: 2px solid #bae6fd;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
}

.account-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #bae6fd;
}

.account-header i {
    color: #0ea5e9;
    font-size: 18px;
}

.account-header label {
    font-weight: 700;
    font-size: 16px;
    color: #374151;
    margin: 0;
}

.platform-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    border: 2px solid #e0f2fe;
}

.platform-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: #f0f9ff;
    color: #0ea5e9;
}

.platform-btn.active {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border-color: #0ea5e9;
}

.account-url-input {
    background: white;
    border-radius: 12px;
    border: 2px solid #e0f2fe;
    padding: 20px;
}

.input-with-prefix {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.url-prefix {
    background: #f3f4f6;
    color: #6b7280;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    border-left: 2px solid #e5e7eb;
}

.input-with-prefix input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.input-with-prefix:focus-within {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Alert Messages */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid #10b981;
}

.alert-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 2px solid #ef4444;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.alert-content i {
    font-size: 20px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Button States */
.campaign-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.campaign-submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

/* Price Info Enhancement */
.price-info {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    padding: 8px 12px;
    background: #f0f2ff;
    border-radius: 8px;
    border: 1px solid #e3e8ff;
}

/* Custom Input Styles */
.custom-interest-input, .custom-city-input {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 12px;
    border: 2px solid #e3e8ff;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-interest-input.show, .custom-city-input.show {
    display: flex;
}

.custom-interest-input input, .custom-city-input input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-interest-input input:focus, .custom-city-input input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.add-custom-btn {
    padding: 10px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.add-custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.add-custom-btn:active {
    transform: translateY(0);
}

/* Custom Interest/City Tags */
.custom-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    color: white;
    position: relative;
    padding-left: 25px;
}

.custom-tag .remove-custom {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.custom-tag .remove-custom:hover {
    opacity: 1;
}

/* "Other" Option Styles */
.other-option {
    border: 2px dashed #d1d5db;
    background: #f9fafb;
    color: #6b7280;
    transition: all 0.3s ease;
}

.other-option:hover {
    border-color: #667eea;
    background: #f0f2ff;
    color: #667eea;
}

.other-option input[type="checkbox"]:checked + .interest-tag,
.other-option input[type="checkbox"]:checked + .city-tag {
    background: #f0f2ff;
    border-color: #667eea;
    color: #667eea;
}

/* Luxury Budget Input Styles */
.luxury-budget-input {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #e1e8f0;
    position: relative;
    overflow: hidden;
}

.luxury-budget-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.budget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.budget-header h4 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.budget-header i {
    color: #667eea;
    font-size: 1.3rem;
}

.budget-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.budget-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.budget-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.budget-input-container:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.budget-input-container input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
    color: #2d3748;
    text-align: center;
}

.budget-input-container input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.currency-label {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.budget-suggestions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.budget-suggestion {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    color: #4a5568;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.budget-suggestion:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
}

/* Budget Contact Section */
.budget-contact-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-header h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-header i {
    color: #667eea;
}

.contact-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-field.full-width {
    grid-column: 1 / -1;
}

.contact-field label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.contact-field input,
.contact-field select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-field input:focus,
.contact-field select:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Budget Submit Section */
.budget-submit-section {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.budget-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    margin-bottom: 1rem;
}

.budget-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.submit-note {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .targeting-filters-grid {
        grid-template-columns: 1fr;
    }
    
    .branding-grid {
        grid-template-columns: 1fr;
    }
    
    .gender-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .platform-selector {
        flex-direction: column;
        gap: 5px;
    }
    
    .input-with-prefix {
        flex-direction: column;
    }
    
    .url-prefix {
        border-left: none;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .alert {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .custom-interest-input, .custom-city-input {
        flex-direction: column;
        align-items: stretch;
    }
    
    .add-custom-btn {
        justify-content: center;
    }
    
    /* Why Choose Smart Section Mobile */
    .insight-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .insight-icon {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    
    .insight-content h3 {
        font-size: 1.5rem;
    }
    
    .insight-text p {
        font-size: 1rem;
    }
    
    .radar-promise {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .radar-promise i {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
    
    /* Luxury Budget Mobile Styles */
    .luxury-budget-input {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .budget-header h4 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .budget-input-container {
        flex-direction: column;
    }
    
    .budget-input-container input {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .currency-label {
        text-align: center;
        padding: 1rem;
    }
    
    .budget-suggestions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .budget-suggestion {
        text-align: center;
        padding: 0.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .budget-submit-section {
        padding: 1.5rem;
    }
    
    .budget-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Alert Messages */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInRight 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid #065f46;
}

.alert-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 2px solid #991b1b;
}

.alert-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: 2px solid #1e40af;
}

.alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert span {
    flex: 1;
}

.alert-close {
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading spinner */
.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile alert styles */
@media (max-width: 768px) {
    .alert {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 10px;
    }
}

/* Enhanced Product Cards Styles */
.product-card.radar-list {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.product-card.analysis {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.product-card.pulse {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.product-card.enterprise {
    border: 2px solid #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

/* Product Description */
.product-description {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 10px;
    border-right: 4px solid #e5e7eb;
}

.product-card.radar-list .product-description {
    border-right-color: #10b981;
}

.product-card.analysis .product-description {
    border-right-color: #3b82f6;
}

.product-card.pulse .product-description {
    border-right-color: #f59e0b;
}

.product-card.enterprise .product-description {
    border-right-color: #ef4444;
}

/* Product Subtitle */
.product-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Optional Features */
.product-features li.optional {
    color: #f59e0b;
    font-weight: 500;
}

.product-features li.optional i {
    color: #f59e0b;
}

/* Sub Features */
.product-features li.sub-feature {
    margin-right: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.product-features li.sub-feature i {
    color: #9ca3af;
}

/* Special Notes */
.subscription-note,
.enterprise-note {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enterprise-note {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.subscription-note i,
.enterprise-note i {
    color: currentColor;
    flex-shrink: 0;
}

/* Comparison Table Highlighted Row */
.comparison-table tr.highlighted {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
}

.comparison-table tr.highlighted td {
    font-weight: 600;
    color: #92400e;
}

/* First Time Offer */
.first-time-offer {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.first-time-offer i {
    color: #f59e0b;
    font-size: 1.1rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 4px 16px rgba(251, 191, 36, 0.5); }
}

/* Original Price Styling */
.original-price {
    position: relative;
}

/* Subscription Toggle */
.subscription-toggle {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #e2e8f0;
}

.toggle-header {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.toggle-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}

.toggle-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.toggle-btn:hover {
    border-color: #f59e0b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.toggle-btn.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: #d97706;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.toggle-duration {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: inherit;
}

.toggle-price {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: inherit;
}

.toggle-savings {
    font-size: 0.7rem;
    font-weight: 500;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    display: inline-block;
}

.toggle-btn.active .toggle-savings {
    color: #d1fae5;
    background: rgba(255, 255, 255, 0.2);
}

/* Pulse Price Animation */
#pulse-price {
    transition: all 0.3s ease;
    display: inline-block;
}

.price-changing {
    transform: scale(1.1);
    color: #f59e0b;
}

/* Comparison Table Small Text */
.comparison-table small {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

/* Enhanced Product Card Heights */
.product-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.product-features {
    flex-grow: 1;
}

/* Mobile Responsive for Toggle */
@media (max-width: 768px) {
    .toggle-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .toggle-btn {
        padding: 1rem;
    }
    
    .toggle-duration {
        font-size: 1rem;
    }
    
    .toggle-price {
        font-size: 0.9rem;
    }
    
    .toggle-savings {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .subscription-toggle {
        padding: 0.75rem;
    }
    
    .toggle-header {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
}

/* Success Proof Section */
.success-proof {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.success-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.success-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.success-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.success-text p {
    margin-bottom: 0.5rem;
}

.success-text strong {
    color: #059669;
    font-weight: 700;
}

.campaign-showcase {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #0ea5e9;
}

.campaign-header {
    margin-bottom: 1.5rem;
}

.brand-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #374151;
}

.campaign-stats {
    display: flex;
    gap: 1.5rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.social-reactions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.reaction-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #374151;
}

.reaction-item i {
    font-size: 1.2rem;
}

.reaction-item .fab.fa-tiktok {
    color: #000;
}

.reaction-item .fab.fa-twitter {
    color: #1da1f2;
}

.reaction-item .fab.fa-instagram {
    color: #e4405f;
}

.engagement-preview {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1rem;
}

.comment-samples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.comment {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #374151;
    border-left: 3px solid #10b981;
}

.success-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.success-note i {
    color: #f59e0b;
    flex-shrink: 0;
}

/* User Choice Guide Section */
.user-choice-guide {
    padding: 3rem 0;
    background: white;
}

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

.choice-option {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.choice-option:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.choice-header {
    margin-bottom: 1.5rem;
}

.choice-header i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
}

.choice-header h3 {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 600;
    line-height: 1.4;
}

.choice-recommendation {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.recommendation-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.recommendation-text {
    display: block;
    font-size: 1.1rem;
    color: #059669;
    font-weight: 700;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .success-proof {
        padding: 2rem 0;
    }
    
    .success-card {
        padding: 1.5rem;
    }
    
    .success-text {
        font-size: 1rem;
    }
    
    .brand-info {
        flex-direction: column;
        text-align: center;
    }
    
    .campaign-stats {
        justify-content: center;
    }
    
    .reaction-grid {
        grid-template-columns: 1fr;
    }
    
    .comment-samples {
        grid-template-columns: 1fr;
    }
    
    .choice-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .choice-option {
        padding: 1.5rem;
    }
    
    .choice-header i {
        font-size: 2rem;
    }
    
    .user-choice-guide {
        padding: 2rem 0;
    }
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #e2e8f0;
}

.contact-section h4 {
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-section h4 i {
    color: #3b82f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
}

.contact-field label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-field input,
.contact-field select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-field input:focus,
.contact-field select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-field input::placeholder {
    color: #9ca3af;
}

.contact-field select {
    cursor: pointer;
}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-section {
        padding: 1rem;
        margin: 1rem 0;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal.hidden {
    display: none !important;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    color: #374151;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.modal-body {
    padding: 1.5rem;
}

.modal-actions {
    margin-top: 2rem;
    text-align: center;
}

.modal-actions .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Product Info in Modal */
.product-info-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #0ea5e9;
}

.product-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.product-info-details h4 {
    color: #374151;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.product-info-price {
    color: #059669;
    font-size: 1.1rem;
    font-weight: 600;
}

.account-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.account-input-group {
    display: flex;
    flex-direction: column;
}

.account-input-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.account-input-group input {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.account-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Time Selection for Enterprise */
.time-selection {
    margin: 1rem 0;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.time-slot:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.time-slot.selected {
    border-color: #059669;
    background: #f0fdf4;
    color: #059669;
    font-weight: 600;
}

/* Mobile Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .account-inputs {
        grid-template-columns: 1fr;
    }
    
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Pulse Subscription Details */
.pulse-subscription-details {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f59e0b;
}

.pulse-subscription-details h5 {
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.pulse-subscription-details h5 i {
    color: #d97706;
}

.selected-plan-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

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

.plan-summary span {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #374151;
}

.plan-summary span strong {
    font-size: 1.1rem;
    color: #059669;
    margin-top: 0.25rem;
}

.plan-total strong {
    color: #dc2626 !important;
    font-size: 1.2rem !important;
}

.plan-savings strong {
    color: #10b981 !important;
}

/* Mobile Responsive for Plan Summary */
@media (max-width: 768px) {
    .plan-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .plan-summary span {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .plan-summary span strong {
        font-size: 1rem;
    }
    
    .pulse-subscription-details {
        padding: 1rem;
    }
}

/* Product Specific Sections */
.product-specific-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.product-specific-section h5 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Platform Selection */
.platform-selection {
    margin-top: 1rem;
}

.platform-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.platform-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

.platform-btn.active {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}

.platform-btn i {
    font-size: 1rem;
}

/* Service Options */
.additional-services,
.analysis-options,
.subscription-preferences,
.enterprise-services {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.additional-services h5,
.analysis-options h5,
.subscription-preferences h5,
.enterprise-services h5 {
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.service-options,
.analysis-types,
.preference-options,
.enterprise-options {
    display: grid;
    gap: 0.75rem;
}

.service-checkbox,
.analysis-checkbox,
.preference-checkbox,
.enterprise-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.service-checkbox:hover,
.analysis-checkbox:hover,
.preference-checkbox:hover,
.enterprise-checkbox:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.service-checkbox input,
.analysis-checkbox input,
.preference-checkbox input,
.enterprise-checkbox input {
    margin: 0;
}

/* Project Type and Budget Selection */
.project-type-selection,
.budget-options {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.project-type-radio,
.budget-radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.project-type-radio:hover,
.budget-radio:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.project-type-radio input:checked + .radio-checkmark,
.budget-radio input:checked + .radio-checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.radio-checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background: white;
    position: relative;
    transition: all 0.2s ease;
}

.radio-checkmark::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.project-type-radio input:checked + .radio-checkmark::after,
.budget-radio input:checked + .radio-checkmark::after {
    opacity: 1;
}

/* Account Input Enhancements */
.account-input-group small {
    display: block;
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.75rem;
    font-style: italic;
}

/* Budget Range Section */
.budget-range {
    background: #fef3c7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f59e0b;
}

.budget-range h5 {
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .platform-buttons {
        flex-direction: column;
    }
    
    .platform-btn {
        justify-content: center;
        padding: 1rem;
    }
    
    .product-specific-section {
        padding: 1rem;
    }
    
    .additional-services,
    .analysis-options,
    .subscription-preferences,
    .enterprise-services {
        padding: 1rem;
    }
}

/* Contact Section in Campaign Builder */
.contact-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

/* Submit Sections */
.influencer-submit-section,
.budget-submit-section {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}

/* Hide all submit sections by default */
.influencer-submit-section,
.budget-submit-section {
    display: none;
}

.influencer-submit-btn,
.budget-submit-btn {
    min-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.influencer-submit-btn:hover,
.budget-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-note {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Promotional Notice */
.promotional-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.promotional-notice .notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.promotional-notice .fas {
    color: #ffd700;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.promotional-notice .notice-text h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.promotional-notice .notice-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Additional Info Textarea */
.contact-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-field textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-field textarea::placeholder {
    color: #9ca3af;
}

.contact-section h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-section h4 i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
}

.contact-field label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-field input,
.contact-field select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.contact-field input:focus,
.contact-field select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-field input::placeholder {
    color: #9ca3af;
}

/* Mobile responsive for contact section */
@media (max-width: 768px) {
    .contact-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-section h4 {
        font-size: 1.1rem;
    }
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #3b82f6;
    border-radius: 25px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.lang-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.lang-btn i {
    font-size: 1rem;
}

/* RTL adjustments for language toggle */
html[dir="rtl"] .language-toggle {
    right: auto;
    left: 20px;
}

/* Mobile responsive for language toggle */
@media (max-width: 768px) {
    .language-toggle {
        top: 15px;
        right: 15px;
    }
    
    html[dir="rtl"] .language-toggle {
        right: auto;
        left: 15px;
    }
    
    .lang-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}
