/* --- متغيرات الألوان العامة والأبعاد --- */
:root {
    --primary-color: #b38a4d;    /* الذهبي الملكي للعيادة */
    --primary-dark: #8c6832;
    --bg-light: #fdfbf7;         /* الخلفية الكريمية الفاخرة */
    --text-dark: #2c2c2c;
    --text-muted: #666666;
    --white: #ffffff;
    --dark-section: #0f120f;     /* اللون الداكن المميز للبانر */
    --transition-speed: 0.3s;
}

/* --- التهيئة الأساسية وتصفير المسافات --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- تنسيقات الحاوية ومسافات الأقسام --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 60px 0;
}

/* --- الأزرار والتأثيرات البصرية --- */
.btn-gold {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-speed) ease;
}

.btn-gold:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 138, 77, 0.3);
}

.pulse-effect {
    position: relative;
    animation: pulse 2s infinite;
}

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

/* --- الشريط العائم الجانبي (تواصل سريع) --- */
.floating-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    padding: 15px 10px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.floating-sidebar a {
    color: var(--text-dark);
    font-size: 1.25rem;
    transition: var(--transition-speed);
}

.floating-sidebar a:hover {
    color: var(--primary-color);
    transform: scale(1.15);
}

/* --- الهيدر (Header) --- */
header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 99;
    transition: background-color var(--transition-speed);
}

header.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    position: fixed;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 12px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: normal;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

nav ul li a.active, nav ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- تعديل قسم الواجهة ليتطابق مع الخلفية بدقة --- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 150px 0 80px;

    /* دمج تدرجات الألوان الفاخرة مع صورة الخلفية في خاصية واحدة */
    background: 
        radial-gradient(circle at 25% 30%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 50%),
        radial-gradient(circle at 80% 15%, rgba(230,205,165,0.25) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(235,215,180,0.18) 0%, transparent 35%),
        url('../images/heromode2.png') no-repeat center center; /* تم وضع الصورة هنا كقاعدة للخلفية */
        
    background-size: cover; /* لضمان امتداد الصورة على كامل الشاشة */
}
.hero::before{
    content:"";
    position:absolute;

    width:900px;
    height:900px;

    left:18%;
    top:-220px;

    border:2px solid rgba(199,162,94,.45);
    border-radius:50%;

    transform:rotate(-18deg);

    z-index:0;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}
.hero-content{
    position:relative;
    z-index:2;
}

.hero-content::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    right:-180px;
    top:-180px;

    background:radial-gradient(circle,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.55) 45%,
    transparent 75%);

    z-index:-1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

/* إضافة تأثير القوس الجمالي (Arch) خلف صورة العارضة كما في التصاميم الراقية */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* خلفية دائرية ناعمة جداً خلف الصورة مباشرة لإبرازها بشكل احترافي */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* لون ذهبي خافت جداً شبه شفاف لإعطاء عمق للمودل */
    background: radial-gradient(circle, rgba(179, 138, 77, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-image{

    width:100%;

    max-width:620px;

    display:block;

    border-radius:320px 320px 0 0;

    object-fit:cover;

    position:relative;

    z-index:2;
}
.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.hero-feat-item i {
    color: var(--primary-color);
}

/* --- العناوين الرئيسية للأقسام --- */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '♦';
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 5px;
}

/* --- شبكة الأقسام والخدمات الرئيسية --- */
.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(179, 138, 77, 0.15);
}

.service-img-holder {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    border: 1px solid rgba(179,138,77,0.15);
}

.service-card-content {
    padding: 30px 15px 20px 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- بانر الترويج المظلم (الفاخر) --- */
.promo-banner {
    background-color: var(--dark-section);
    color: var(--white);
    padding: 70px 0;
    background-image: radial-gradient(circle at right, rgba(179,138,77,0.06) 0%, transparent 60%);
}

.promo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.promo-video-placeholder {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    position: relative;
    cursor: pointer;
}

.promo-video-placeholder img {
    width: 100%;
    display: block;
    filter: brightness(0.7);
    transition: filter var(--transition-speed);
}

.promo-video-placeholder:hover img {
    filter: brightness(0.5);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(179, 138, 77, 0.9);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

.promo-video-placeholder:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.promo-content {
    text-align: right;
}

.promo-subtitle {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.promo-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-desc {
    color: #cccccc;
    margin-bottom: 30px;
}

.promo-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.promo-feature-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 5px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-feature-card i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.promo-feature-card p {
    font-size: 0.75rem;
    color: #e0e0e0;
}

/* --- علاجات مطلوبة بكثرة --- */
.most-requested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.treatment-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    text-align: center;
    transition: transform var(--transition-speed);
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-img {
    height: 140px;
    overflow: hidden;
}

.treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-info {
    padding: 12px 10px;
}

.treatment-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.treatment-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-center-container {
    display: flex;
    justify-content: center;
}

/* --- تفاصيل العيادة والاتصال --- */
.about-clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.why-choose-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.why-choose-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-right: 4px solid var(--primary-color);
    padding-right: 10px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.why-list li i {
    color: var(--primary-color);
}

.clinic-interior-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.contact-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(179, 138, 77, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.contact-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-info-item {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info-item i {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.3rem;
    display: block;
}

.contact-box .phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0;
    display: block;
    text-decoration: none;
}

.btn-whatsapp {
    width: 100%;
}

/* حركة بسيطة لأيقونة الموقع */
.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* --- آراء ومراجعات العملاء --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    font-size: 4rem;
    color: rgba(179, 138, 77, 0.1);
    position: absolute;
    top: 5px;
    right: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.client-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.client-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.stars {
    color: #ffb400;
    font-size: 0.8rem;
}

/* --- استجابة الموقع وتصميم الهواتف (Responsive) --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .hero-features {
        justify-content: center;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .about-clinic-grid {
        grid-template-columns: 1fr;
    }
    .floating-sidebar {
        display: none; /* إخفاء لتوفير مساحة في الهاتف */
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none; /* يتم إخفاء القائمة في الهاتف والتحكم بها من الجافاسكريبت */
        width: 100%;
        background-color: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-flex {
        position: relative;
    }

    .promo-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-header {
        display: none; /* إخفاء زر الحجز العلوي في الهواتف الصغيرة، أو دمجه بداخل القائمة */
    }
}

/* ==========================================================================
   الأقسام الجديدة (خطوات العلاج - العدادات المتحركة - تواصل معنا)
   ========================================================================== */

/* --- تنسيقات عامة تضمن التناسق --- */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 50px;
}


/* ==================== 3. قسم خطوات العلاج ==================== */
.treatment-steps {
    background-color: var(--bg-light);
}

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

.step-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(179, 138, 77, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
/* تغيير لون أرقام خطوات العلاج إلى الجوزي الغامق */
.step-card .step-number {
    color: #4a3319; /* درجة الجوزي الداكن الراقية */
    font-weight: 800; /* لجعل الرقم بارزاً وواضحاً */
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(179, 138, 77, 0.08);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(179, 138, 77, 0.1);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ==================== 4. قسم العدادات المتحركة ==================== */
.counters-section {
    background: linear-gradient(135deg, #1e1e1e 0%, #111111 100%);
    color: var(--white);
    padding: 60px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.counter-item {
    padding: 10px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1rem;
    color: #e0e0e0;
}


/* ==================== 5. قسم تواصل معنا ==================== */
.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* الاستجابة على الشاشات المتوسطة والصغيرة */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* نموذج المراسلة */
.contact-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(179, 138, 77, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: right; /* ضمان محاذاة العناوين لليمين */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    background-color: var(--white);
    transition: border-color var(--transition-speed);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color var(--transition-speed);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

/* معلومات الاتصال الجانبية والخريطة */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    direction: rtl;
    text-align: right;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: rgba(179, 138, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0; /* منع تقلص حجم الأيقونة */
}

.info-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

/* --- صندوق أيقونات التواصل الدائرية البديل لخريطة الموقع --- */
.social-channels-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(179, 138, 77, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* ليتناسق طول الصندوق مع صندوق المعلومات المجاور */
}

.social-channels-box h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.social-channels-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* حاوية الأيقونات المرنة */
.social-icons-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* التصميم الأساسي للأيقونة الدائرية (تأثير هادئ وبسيط) */
.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #f5f3ef; /* لون خلفية محايد وفخم */
    color: var(--text-muted);  /* لون الأيقونة الافتراضي قبل التمرير */
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* حركة ارتداد ناعمة */
    border: 1px solid rgba(179, 138, 77, 0.1);
}

/* تأثير التمرير (Hover) والضغط (Active) للتلوين التلقائي */
.social-icon-btn:hover, .social-icon-btn:active {
    transform: translateY(-5px) scale(1.08);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

/* ألوان المنصات المخصصة عند اللمس أو التمرير */
.social-icon-btn.instagram:hover, .social-icon-btn.instagram:active {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-icon-btn.whatsapp:hover, .social-icon-btn.whatsapp:active {
    background-color: #25D366;
    border-color: #25D366;
}

.social-icon-btn.phone:hover, .social-icon-btn.phone:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.social-icon-btn.facebook:hover, .social-icon-btn.facebook:active {
    background-color: #1877F2;
    border-color: #1877F2;
}

html{
    scroll-behavior: smooth;
}

section{
    scroll-margin-top: 100px;
}