/* ============================================
   المتغيرات والإعدادات الأساسية
   ============================================ */
:root {
    --primary:        #023E73;
    --primary-light:  #035499;
    --primary-dark:   #012850;
    --blue-accent:    #A7E4F2;
    --coral:          #F27052;
    --coral-dark:     #d95a3d;
    --white:          #FFFFFF;
    --bg:             #EBF4FA;
    --surface:        #F5FAFD;
    --text-dark:      #0d2236;
    --text-mid:       #3a617e;
    --text-soft:      #7fa5bc;
    --border:         #cce4ef;
    --shadow-blue:    rgba(2, 62, 115, 0.14);
    --shadow-coral:   rgba(242, 112, 82, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   الخلفية والديكور العلوي
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #025fa0 100%);
    z-index: 0;
    clip-path: ellipse(120% 100% at 50% 0%);
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 280px;
    background:
        radial-gradient(ellipse at 10% 60%, rgba(167, 228, 242, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 30%, rgba(242, 112, 82, 0.12) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   الحاوي الرئيسي
   ============================================ */
.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 30px 18px 70px;
    position: relative;
    z-index: 1;
}

/* ============================================
   الهيدر
   ============================================ */
.header {
    text-align: center;
    padding: 48px 30px 36px;
    margin-bottom: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.logo i {
    font-size: 3rem;
    color: var(--coral);
    filter: drop-shadow(0 4px 12px rgba(242, 112, 82, 0.5));
    animation: floatIcon 3.5s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-9px) rotate(-3deg); }
}

.logo h1 {
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1rem;
    color: var(--blue-accent);
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

/* ============================================
   بطاقة الاستمارة
   ============================================ */
.form-container {
    background: var(--white);
    border-radius: 22px;
    padding: 0;
    box-shadow:
        0 20px 60px var(--shadow-blue),
        0 2px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin-top: 18px;
}

/* شريط ملوّن أعلى البطاقة */
.form-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue-accent) 50%, var(--coral));
    z-index: 1;
}

/* ============================================
   شريط التقدم
   ============================================ */
.progress-container {
    padding: 28px 38px 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--primary));
    border-radius: 10px;
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    width: 25%;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    animation: shimmerBar 2s ease-in-out infinite;
}

@keyframes shimmerBar {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 17px;
    right: 38px;
    left: 38px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2.5px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-title {
    font-size: 0.75rem;
    color: var(--text-soft);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    max-width: 75px;
    line-height: 1.3;
}

.step.active .step-number {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
    box-shadow: 0 5px 16px var(--shadow-coral);
    transform: scale(1.18);
}

.step.active .step-title {
    color: var(--coral);
    font-weight: 700;
}

.step.completed .step-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--shadow-blue);
}

.step.completed .step-title {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   خطوات الاستمارة
   ============================================ */
.form-step {
    display: none !important;
    animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 36px 38px;
}

.form-step.active {
    display: block !important;
}

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

/* ============================================
   رأس القسم
   ============================================ */
.form-section {
    margin-bottom: 0;
    position: relative;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 56px;
    height: 2.5px;
    background: var(--coral);
    border-radius: 2px;
}

.section-title i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, rgba(2,62,115,0.08), rgba(2,62,115,0.14));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 1.35rem;
    border: 1.5px solid rgba(2,62,115,0.1);
}

/* ============================================
   بطاقات مميزات الكورس - تصميم أفقي
   ============================================ */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1.5px solid var(--border);
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: relative;
    cursor: default;
}

.feature-card:hover {
    border-color: var(--blue-accent);
    box-shadow: 0 8px 28px var(--shadow-blue);
    transform: translateY(-3px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 14px var(--shadow-blue);
    transition: all 0.32s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--coral-dark), var(--coral));
    box-shadow: 0 6px 18px var(--shadow-coral);
    transform: rotate(-5deg) scale(1.07);
}

.feature-number {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 22px;
    height: 22px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.72rem;
    border: 2px solid white;
    box-shadow: 0 2px 6px var(--shadow-coral);
    z-index: 2;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    transition: color 0.25s ease;
}

.feature-content p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

.feature-card:hover .feature-content h3 {
    color: var(--coral);
}

/* ============================================
   حقول الاستمارة
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 0.92rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.28s ease;
    background: var(--surface);
    color: var(--text-dark);
    outline: none;
    direction: rtl;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23023E73' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 38px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(2, 62, 115, 0.09);
}

.form-group input::placeholder {
    color: var(--text-soft);
    font-size: 0.87rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.field-note {
    display: block;
    margin-top: 6px;
    font-size: 0.74rem;
    color: var(--text-soft);
    line-height: 1.4;
}

/* ============================================
   خيارات الراديو
   ============================================ */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.radio-option {
    display: flex;
    align-items: stretch;
    border: 2px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.radio-option::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.radio-content {
    flex: 1;
    padding: 15px 17px;
    position: relative;
}

.radio-content::before,
.radio-content::after {
    display: none;
}

.radio-content strong {
    display: block;
    font-size: 0.87rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.radio-content small {
    font-size: 0.76rem;
    color: var(--text-mid);
    line-height: 1.45;
    display: block;
}

.radio-option:hover {
    border-color: var(--blue-accent);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--shadow-blue);
}

.radio-option:hover::before {
    opacity: 0.4;
}

.radio-option.selected {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 5px 18px var(--shadow-coral);
}

.radio-option.selected::before {
    opacity: 1;
}

.radio-option.selected .radio-content strong {
    color: var(--coral);
}

.radio-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.radio-option.selected::after {
    content: '✓';
    background: var(--coral);
    border-color: var(--coral);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    animation: checkBounce 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-option input[type="radio"]:checked ~ .radio-content strong {
    color: var(--coral);
}

@keyframes checkBounce {
    0%   { transform: scale(0) rotate(-15deg); }
    60%  { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* ============================================
   أزرار التنقل
   ============================================ */
.navigation-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 38px 32px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    border-radius: 0 0 22px 22px;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 14px 34px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Cairo', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 6px 20px var(--shadow-blue);
    min-width: 155px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.nav-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s ease;
}

.nav-btn:hover::after {
    background: rgba(255,255,255,0.1);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-blue);
}

.nav-btn:active {
    transform: translateY(-1px);
}

.prev-btn {
    background: transparent;
    color: var(--text-mid);
    border: 2px solid var(--border);
    box-shadow: none;
}

.prev-btn:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: none;
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    box-shadow: 0 6px 20px var(--shadow-coral);
}

.submit-btn:hover {
    box-shadow: 0 12px 30px var(--shadow-coral);
}

/* ============================================
   المودال
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(1, 25, 50, 0.65);
    backdrop-filter: blur(7px);
    align-items: center;
    justify-content: center;
}

.modal[style*="block"] {
    display: flex !important;
}

.modal-content {
    background: var(--white);
    margin: auto;
    padding: 0;
    border-radius: 24px;
    width: 92%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--blue-accent), var(--coral));
}

.success-icon {
    font-size: 4.5rem;
    color: var(--coral);
    margin: 38px auto 18px;
    display: block;
    animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
    padding: 0;
}

@keyframes successPop {
    0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
    60%  { transform: scale(1.18) rotate(6deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.55rem;
    font-weight: 700;
    padding: 0 36px;
}

.modal-content p {
    color: var(--text-mid);
    margin-bottom: 32px;
    font-size: 0.97rem;
    line-height: 1.65;
    padding: 0 36px;
}

.close-btn {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: white;
    border: none;
    padding: 14px 42px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.28s ease;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 38px;
    box-shadow: 0 6px 20px var(--shadow-coral);
    display: inline-block;
}

.close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px var(--shadow-coral);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-35px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   الشعار المتحرك
   ============================================ */
.animated-logo {
    position: fixed;
    top: 22px;
    left: 22px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(167, 228, 242, 0.25);
    border-radius: 16px;
    padding: 11px 17px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-direction: row;
    min-width: 96px;
    min-height: 44px;
    transition: all 0.3s ease;
}

.animated-logo:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(167, 228, 242, 0.45);
    box-shadow: 0 10px 36px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.logo-text {
    color: var(--blue-accent);
    font-family: 'Cairo', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 8px rgba(167, 228, 242, 0.5);
    letter-spacing: 1px;
}

/* تأثيرات الشعار المتحرك */
.logo-text.shatter { animation: shatterEffect 1.2s ease-in-out forwards; }
@keyframes shatterEffect {
    0%   { transform: scale(1) rotate(0deg); opacity: 1; filter: blur(0); }
    25%  { transform: scale(1.1) rotate(2deg); opacity: 0.8; filter: blur(1px); }
    50%  { transform: scale(0.8) rotate(-3deg); opacity: 0.4; filter: blur(3px); }
    75%  { transform: scale(0.3) rotate(5deg); opacity: 0.1; filter: blur(5px); }
    100% { transform: scale(0) rotate(10deg); opacity: 0; filter: blur(8px); }
}

.logo-text.letter { animation: letterPulse 0.8s ease-in-out; }
@keyframes letterPulse {
    0%, 100% { transform: scale(1); text-shadow: 0 2px 8px rgba(167,228,242,0.5); }
    50%       { transform: scale(1.3); text-shadow: 0 4px 18px rgba(167,228,242,0.9); }
}

.logo-text.final { animation: finalGlow 2s ease-in-out; }
@keyframes finalGlow {
    0%, 100% { transform: scale(1); text-shadow: 0 2px 8px rgba(167,228,242,0.5); }
    50%       { transform: scale(1.15); text-shadow: 0 4px 22px rgba(167,228,242,0.95); }
}

/* ============================================
   رسائل الخطأ
   ============================================ */
.error-message {
    color: #e53e3e;
    font-size: 0.78rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.error-message::before {
    content: '⚠';
    font-size: 0.82rem;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}

/* ============================================
   تأثير التحميل
   ============================================ */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 19px; height: 19px;
    margin: -9.5px 0 0 -9.5px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

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

/* ============================================
   التصميم المتجاوب
   ============================================ */
@media (max-width: 768px) {
    body::before { height: 230px; }

    .container { padding: 18px 13px 50px; }

    .header { padding: 34px 18px 26px; }
    .logo h1 { font-size: 1.6rem; }

    .progress-container { padding: 18px; }
    .progress-steps::before { right: 28px; left: 28px; }
    .step-title { font-size: 0.68rem; max-width: 62px; }
    .step-number { width: 31px; height: 31px; font-size: 0.82rem; }

    .form-step { padding: 24px 18px; }

    .form-grid { grid-template-columns: 1fr; }

    .radio-group { grid-template-columns: 1fr; }

    .features-container { gap: 10px; }
    .feature-card { padding: 16px 18px; gap: 14px; }
    .feature-icon { width: 46px; height: 46px; min-width: 46px; font-size: 1.2rem; }
    .feature-number { width: 19px; height: 19px; font-size: 0.65rem; top: -5px; right: -5px; }
    .feature-content h3 { font-size: 0.95rem; }
    .feature-content p { font-size: 0.84rem; }

    .section-title { font-size: 1.15rem; }
    .section-title i { width: 40px; height: 40px; min-width: 40px; font-size: 1.15rem; }

    .navigation-container {
        flex-direction: column;
        padding: 18px;
        gap: 11px;
    }
    .nav-btn { width: 100%; max-width: 280px; }

    .modal-content h2 { padding: 0 22px; font-size: 1.35rem; }
    .modal-content p  { padding: 0 22px; }
}

@media (max-width: 480px) {
    .logo h1 { font-size: 1.4rem; }
    .subtitle { font-size: 0.92rem; }
    .form-step { padding: 18px 14px; }
    .navigation-container { padding: 15px; }

    .animated-logo {
        top: 14px; left: 10px;
        padding: 9px 14px;
        min-width: 80px; min-height: 38px;
        border-radius: 12px;
    }
    .logo-text { font-size: 1.5rem; }
}

/* ============================================
   أزرار الواتساب
   ============================================ */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.28s ease;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 10px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}
