.sms-hero {
    background: linear-gradient(90deg, #5a8dee, #2e74b7, #0d47a1);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.sms-hero::before {
    content: '';
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.sms-feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 116, 183, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.sms-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5a8dee, #497fe2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sms-feature-card:hover::before {
    transform: scaleX(1);
}

.sms-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sms-illustration {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.sms-illustration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.pricing-card.popular {
    border-color: #5a8dee;
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'محبوب';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #5a8dee;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.stats-card {
    color: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-answer {
    padding: 20px;
    display: none;
}

.cta-button {
    background: #ffcd00;
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 163, 46, 0.3);
    border: none;
    
    @media (max-width: 990px) {
        margin-top: 50px;
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 163, 46, 0.4);
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.cta-button.secondary {
    background: #2e74b7;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 116, 183, 0.3);
    border: none;
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 116, 183, 0.4);
    color: white;
    text-decoration: none;
}

.rtl-text {
    direction: rtl;
    text-align: right;
}

.ltr-text {
    direction: ltr;
    text-align: left;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    padding: 80px 0;
}

.phone-mockup {
    width: 300px;
    height: 500px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 20px;
    position: relative;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f8ff, #fff8dc);
    border-radius: 20px;
    padding: 15px;
}

.sms-message {
    background: #5a8dee;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

.sms-message.yellow {
    background: #ffcd00;
    color: #5a8dee;
}

.sms-message.gray {
    background: #f0f0f0;
    color: #666;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon.blue {
    background: #2e74b7;
}

.feature-icon.yellow {
    background: linear-gradient(135deg, #ffcd00, #ffb700);
}

.feature-icon.green {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.feature-icon.red {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.feature-icon.indigo {
    background: linear-gradient(135deg, #6610f2, #6f42c1);
}

.feature-icon.teal {
    background: linear-gradient(135deg, #20c997, #17a2b8);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #e83e8c, #fd7e14);
}

.feature-icon.gray {
    background: linear-gradient(135deg, #6c757d, #495057);
}

/* Hero Section Styles */
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-title-highlight {
    color: #ffcd00;
    background: #ffcd00;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.hero-buttons-row {
    margin-bottom: 30px;
}

.hero-button-col {
    margin-bottom: 15px;
}

.cta-button-full {
    width: 100%;
    text-align: center;
}

.hero-features-row {
    color: rgba(255,255,255,0.8);
}

.hero-feature-col {
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
}

.hero-feature-icon {
    margin-left: 8px;
}

.hero-illustration-col {
    text-align: center;
}

/* Phone Mockup Styles */
.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.phone-logo {
    width: 30px;
    height: 30px;
    background: #5a8dee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-logo-text {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.phone-title {
    font-size: 10px;
    color: #666;
}

.phone-status {
    width: 25px;
    height: 20px;
    background: #28a745;
    border-radius: 5px;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-message-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.sms-message-time {
    font-size: 10px;
    margin-top: 5px;
    opacity: 0.8;
}

.phone-stats {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    padding: 10px;
}

.phone-stats-row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

.phone-stat-item {
    text-align: center;
}

.phone-stat-value {
    font-weight: bold;
    color: #5a8dee;
}

.phone-stat-value.success {
    color: #28a745;
}

.phone-stat-value.warning {
    color: #ffcd00;
}

.phone-stat-label {
    color: #666;
}

/* Features Section Styles */
.features-section {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
}

.features-header {
    margin-bottom: 60px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    direction: rtl;
    text-align: center;
    line-height: 50px;
}

.features-title-highlight {
    color: #5a8dee;
}

.features-description {
    font-size: 1.25rem;
    color: #666;
    direction: rtl;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.feature-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-text {
    margin-right: 15px;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.feature-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.feature-example {
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
}

.feature-example.blue {
    background: #e3f2fd;
    color: #1976d2;
}

.feature-example.yellow {
    background: #fff8e1;
    color: #f57c00;
}

.feature-example.green {
    background: #e8f5e8;
    color: #2e7d32;
}

.feature-example.purple {
    background: #f3e5f5;
    color: #7b1fa2;
}

.feature-example.red {
    background: #ffebee;
    color: #c62828;
}

.feature-example.indigo {
    background: #e8eaf6;
    color: #3f51b5;
}

.feature-example.teal {
    background: #e0f2f1;
    color: #00695c;
}

.feature-example.pink {
    background: #fce4ec;
    color: #ad1457;
}

.feature-example.gray {
    background: #f5f5f5;
    color: #616161;
}

/* Pricing Section Styles */
.pricing-header {
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    direction: rtl;
    text-align: center;
    line-height: 50px;
}

.pricing-title-highlight {
    color: #5a8dee;
}

.pricing-description {
    font-size: 1.25rem;
    color: #666;
    direction: rtl;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.pricing-card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.pricing-card-subtitle.discount {
    color: #28a745;
    font-weight: bold;
}

.pricing-card-price {
    font-size: 2rem;
    font-weight: bold;
    color: #5a8dee;
    margin-bottom: 8px;
}

.pricing-card-code {
    font-size: 14px;
    color: #666;
}

.pricing-card-features {
    margin-bottom: 30px;
}

.pricing-card-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.pricing-card-feature:last-child {
    margin-bottom: 0;
}

.pricing-card-feature-icon {
    margin-left: 8px;
}

.pricing-card-button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card-button.primary {
    background: #5a8dee;
    color: white;
}

.pricing-card-button.primary:hover {
    background: #2e74b7;
}

.pricing-card-button.secondary {
    background: #e3f2fd;
    color: #5a8dee;
}

.pricing-card-button.secondary:hover {
    background: #bbdefb;
}

.pricing-footer {
    margin-top: 60px;
}

.pricing-footer-text {
    color: #666;
    direction: rtl;
    text-align: center;
    margin-bottom: 30px;
}

/* Stats Section Styles */
.stats-section {
    background: linear-gradient(90deg, #5a8dee, #2e74b7, #0d47a1);
    
}

.stats-value {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.stats-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Trust Section Styles */
.trust-section {
    background: #f8f9fa;
}

.trust-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #333;
    direction: rtl;
    text-align: center;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.trust-logo {
    width: 120px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
    font-size: 1.125rem;
    direction: rtl;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* FAQ Section Styles */
.faq-header {
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    direction: rtl;
    text-align: center;
}

.faq-title-highlight {
    color: #5a8dee;
}

.faq-description {
    font-size: 1.25rem;
    color: #666;
    direction: rtl;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.faq-answer-text {
    color: #666;
    font-size: 15px;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(90deg, #5a8dee, #2e74b7, #0d47a1);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
    direction: rtl;
    text-align: center;
    line-height: 1.2;
}

.cta-title-highlight {
    color: #ffcd00;
}

.cta-description {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: rgba(255,255,255,0.9);
    direction: rtl;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.cta-button-large {
    font-size: 1.125rem;
    padding: 15px 40px;
}

.cta-features-row {
    color: rgba(255,255,255,0.8);
}

.cta-feature-col {
    margin-bottom: 20px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-feature-text {
    font-size: 1.125rem;
}

.hero-feature-item span {
    font-size: 17px;
}
