/* Newsletter Admin Panel Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #20c997;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --border-color: #e9ecef;
    --text-color: #495057;
    --text-muted: #6c757d;
}

/* Main Layout */
.newsletter-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.newsletter-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-header p {
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Cards */
.newsletter-compose-card,
.newsletter-stats-card {
    background: var(--white-color);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.newsletter-compose-card:hover,
.newsletter-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.newsletter-compose-card .card-header,
.newsletter-stats-card .card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.newsletter-compose-card .card-body,
.newsletter-stats-card .card-body {
    padding: 2rem;
}

/* Enhanced Stats Cards */
.enhanced-stats-card {
    background: white !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #f1f3f4 !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.enhanced-stats-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.enhanced-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.enhanced-stats-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    margin: 0 auto 1rem !important;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3) !important;
}

.enhanced-stats-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Tajawal', sans-serif !important;
}

.enhanced-stats-label {
    font-size: 0.9rem !important;
    color: #6c757d !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    font-family: 'Tajawal', sans-serif !important;
}

.enhanced-stats-trend {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    font-size: 0.8rem !important;
    padding: 0.5rem !important;
    border-radius: 20px !important;
    background: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
    font-family: 'Tajawal', sans-serif !important;
}

/* Enhanced Table Styles */
.enhanced-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

.enhanced-table th {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 1rem 0.75rem !important;
    text-align: right !important;
    vertical-align: middle !important;
    font-size: 0.9rem !important;
    font-family: 'Tajawal', sans-serif !important;
    position: relative !important;
}

.enhanced-table th:first-child {
    border-top-right-radius: 12px !important;
}

.enhanced-table th:last-child {
    border-top-left-radius: 12px !important;
}

.enhanced-table td {
    padding: 1rem 0.75rem !important;
    border-bottom: 1px solid #f1f3f4 !important;
    vertical-align: middle !important;
    font-size: 0.9rem !important;
    background: white !important;
    font-family: 'Tajawal', sans-serif !important;
}

.enhanced-table tbody tr:hover {
    background: rgba(40, 167, 69, 0.05) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.enhanced-table tbody tr:last-child td:first-child {
    border-bottom-right-radius: 12px !important;
}

.enhanced-table tbody tr:last-child td:last-child {
    border-bottom-left-radius: 12px !important;
}

/* Form Elements */
.newsletter-form-group {
    margin-bottom: 1.5rem;
}

.newsletter-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

/* Enhanced Action Buttons */
.enhanced-action-btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.75rem 1.5rem !important;
    margin: 0.5rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
    min-width: 160px !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    font-family: 'Tajawal', sans-serif !important;
}

.enhanced-action-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
}

.enhanced-action-btn.primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: white !important;
    border-color: #28a745 !important;
}

.enhanced-action-btn.primary:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%) !important;
    color: white !important;
}

.enhanced-action-btn.secondary {
    background: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
    border-color: rgba(108, 117, 125, 0.3) !important;
}

.enhanced-action-btn.secondary:hover {
    background: rgba(108, 117, 125, 0.2) !important;
    color: #495057 !important;
}

.enhanced-action-btn.info {
    background: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0 !important;
    border-color: rgba(13, 202, 240, 0.3) !important;
}

.enhanced-action-btn.info:hover {
    background: rgba(13, 202, 240, 0.2) !important;
    color: #0aa2c0 !important;
}

.enhanced-action-btn.warning {
    background: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
}

.enhanced-action-btn.warning:hover {
    background: rgba(255, 193, 7, 0.2) !important;
    color: #e0a800 !important;
}

/* Enhanced Icon Styles */
.enhanced-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    margin: 0 0.25rem !important;
    transition: all 0.3s ease !important;
    font-size: 0.875rem !important;
}

.enhanced-icon:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.enhanced-icon.primary {
    background: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd !important;
    border: 1px solid rgba(13, 110, 253, 0.2) !important;
}

.enhanced-icon.success {
    background: rgba(25, 135, 84, 0.1) !important;
    color: #198754 !important;
    border: 1px solid rgba(25, 135, 84, 0.2) !important;
}

.enhanced-icon.info {
    background: rgba(13, 202, 240, 0.1) !important;
    color: #0dcaf0 !important;
    border: 1px solid rgba(13, 202, 240, 0.2) !important;
}

.enhanced-icon.warning {
    background: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
    border: 1px solid rgba(255, 193, 7, 0.2) !important;
}

.enhanced-icon.danger {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.2) !important;
}

.enhanced-icon.secondary {
    background: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
    border: 1px solid rgba(108, 117, 125, 0.2) !important;
}

/* Enhanced Badge Styles */
.enhanced-badge {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    gap: 0.5rem !important;
    border: 1px solid transparent !important;
    transition: all 0.3s ease !important;
    font-family: 'Tajawal', sans-serif !important;
}

.enhanced-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.enhanced-badge.success {
    background: rgba(25, 135, 84, 0.1) !important;
    color: #198754 !important;
    border-color: rgba(25, 135, 84, 0.3) !important;
}

.enhanced-badge.secondary {
    background: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
    border-color: rgba(108, 117, 125, 0.3) !important;
}

/* Enhanced Avatar */
.enhanced-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    margin-left: 0.75rem !important;
    transition: all 0.3s ease !important;
}

.enhanced-avatar:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.enhanced-avatar.primary {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
    color: #1976d2 !important;
    border: 1px solid rgba(25, 118, 210, 0.2) !important;
}

.enhanced-avatar.info {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%) !important;
    color: #00796b !important;
    border: 1px solid rgba(0, 121, 107, 0.2) !important;
}

.newsletter-form-group input,
.newsletter-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white-color);
}

.newsletter-form-group input:focus,
.newsletter-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.newsletter-form-group .form-text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Professional Template Cards */
.professional-template-card {
    background: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.professional-template-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.professional-template-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.template-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.template-content {
    flex: 1;
}

.template-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.template-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.template-icon-container {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.template-icon-container.primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.template-icon-container.success {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.template-icon-container.info {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
}

.template-preview {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Enhanced Form Styles */
.enhanced-form-control {
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white-color);
    width: 100%;
}

.enhanced-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
}

.enhanced-btn {
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.enhanced-btn::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;
}

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

.btn-primary.enhanced-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.btn-primary.enhanced-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-outline-info.enhanced-btn {
    border: 2px solid var(--info-color);
    color: var(--info-color);
    background: transparent;
}

.btn-outline-info.enhanced-btn:hover {
    background: var(--info-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary.enhanced-btn {
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    background: transparent;
}

.btn-outline-secondary.enhanced-btn:hover {
    background: var(--text-muted);
    color: white;
    transform: translateY(-2px);
}

/* Summernote Editor Styling */
.note-editor.note-frame {
    border: 2px solid var(--border-color) !important;
    border-radius: 0.5rem !important;
    overflow: hidden !important;
    width: 100% !important;
}

.note-editor.note-frame .note-toolbar {
    background: var(--light-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 0.5rem !important;
}

.note-editor.note-frame .note-editing-area {
    background: var(--white-color) !important;
}

.note-editor.note-frame .note-editable {
    background: var(--white-color) !important;
    color: var(--dark-color) !important;
    font-family: 'Tajawal', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    padding: 1rem !important;
    min-height: 300px !important;
}

.note-editor.note-frame .note-btn {
    background: var(--white-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 0.25rem !important;
    padding: 0.25rem 0.5rem !important;
    margin: 0.125rem !important;
    transition: all 0.2s ease !important;
}

.note-editor.note-frame .note-btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.note-editor.note-frame .note-btn.active {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* Fallback Textarea */
.summernote-debug {
    border: 2px solid var(--border-color) !important;
    border-radius: 0.5rem !important;
    padding: 1rem !important;
    font-family: 'Tajawal', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    min-height: 300px !important;
    background: var(--white-color) !important;
    color: var(--dark-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-header h1 {
        font-size: 2rem;
    }

    .newsletter-header p {
        font-size: 1rem;
    }

    .professional-template-card {
        padding: 1rem;
    }

    .template-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .template-icon-container {
        margin-left: 0;
        margin-top: 1rem;
        align-self: flex-end;
    }

    .note-editor.note-frame .note-editable {
        min-height: 250px !important;
    }
}

@media (max-width: 576px) {

    .newsletter-compose-card .card-body,
    .newsletter-stats-card .card-body {
        padding: 1rem;
    }

    .newsletter-header {
        padding: 1.5rem 0;
    }

    .newsletter-header h1 {
        font-size: 1.75rem;
    }
}

/* Professional Loading Styles */
.loading-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #002623 0%, #054239 50%, #428177 100%);
    border-radius: 50%;
    position: relative;
}

.loading-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Newsletter Message Styling */
.newsletter-message {
    margin-top: 15px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.newsletter-message.success {
    background: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.2) !important;
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.2) !important;
}

.newsletter-message.info {
    background: rgba(23, 162, 184, 0.1) !important;
    color: #17a2b8 !important;
    border: 1px solid rgba(23, 162, 184, 0.2) !important;
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-input-group {
        border-radius: 20px;
    }

    .newsletter-input {
        padding: 12px 16px !important;
        font-size: 13px !important;
        border-radius: 20px 0 0 20px !important;
    }

    .newsletter-btn {
        padding: 12px 16px !important;
        border-radius: 0 20px 20px 0 !important;
        font-size: 14px !important;
    }

    .newsletter-section {
        padding: 20px !important;
    }

    .newsletter-section h5 {
        font-size: 16px !important;
    }

    .newsletter-section p {
        font-size: 13px !important;
    }

    .social-footer-link {
        width: 40px;
        height: 40px;
    }

    .social-footer-link i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 20px;
    }

    .newsletter-input {
        border-radius: 20px 20px 0 0 !important;
        text-align: center !important;
    }

    .newsletter-btn {
        border-radius: 0 0 20px 20px !important;
        width: 100% !important;
    }

    .newsletter-section {
        padding: 18px !important;
    }

    .social-links {
        gap: 10px;
        justify-content: center;
    }

    .social-footer-link {
        width: 38px;
        height: 38px;
    }

    .social-footer-link i {
        font-size: 15px;
    }
}

/* Footer Social Media Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-footer-link:hover::before {
    opacity: 1;
}

.social-footer-link i {
    font-size: 18px;
    z-index: 1;
    position: relative;
}

/* Facebook */
.social-footer-link[href*="facebook"]:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    border-color: #1877f2;
}

/* X (Twitter) */
.social-footer-link[href*="x.com"]:hover,
.social-footer-link[href*="twitter"]:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #000000;
}

/* Instagram */
.social-footer-link[href*="instagram"]:hover {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
    border-color: #e4405f;
}

/* Telegram */
.social-footer-link[href*="t.me"]:hover {
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    border-color: #0088cc;
}

/* Footer First Section with Syrian Flag Background */
.footer-first-section {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 25px !important;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.footer-first-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../images/syrian-flag.svg');
    background-size: 200px 180px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    transition: all 0.3s ease;
}

.footer-first-section:hover::before {
    opacity: 0.25;
    transform: scale(1.05);
}

.footer-first-section h5,
.footer-first-section p,
.footer-first-section .social-links {
    position: relative;
    z-index: 1;
}

.footer-first-section:hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, rgba(32, 201, 151, 0.08) 100%);
    border-color: rgba(40, 167, 69, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.1);
}

/* Footer Newsletter Styles */
.newsletter-input-group {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
}

.newsletter-input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.newsletter-input-group:focus-within {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1), 0 8px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    border: none !important;
    background: transparent !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    color: #2c3e50 !important;
    border-radius: 25px 0 0 25px !important;
    transition: all 0.3s ease !important;
    font-family: 'Tajawal', sans-serif !important;
}

.newsletter-input::placeholder {
    color: #95a5a6 !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}

.newsletter-input:focus {
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

.newsletter-input:focus::placeholder {
    color: #7f8c8d !important;
    transform: translateX(5px);
}

.newsletter-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none !important;
    color: white !important;
    padding: 15px 20px !important;
    border-radius: 0 25px 25px 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

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

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

.newsletter-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4) !important;
}

.newsletter-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 3px 15px rgba(40, 167, 69, 0.3) !important;
}

.newsletter-btn i {
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.newsletter-btn:hover i {
    transform: translateX(2px) rotate(15deg) !important;
}