/* 
 * ملف CSS لصفحة خدمة تصميم وبرمجة المواقع
 * وكالة الصقر للتسويق الرقمي
 * يتضمن تأثيرات Glass Morphism وألوان العلامة التجارية
 */

/* متغيرات الألوان الرئيسية */
:root {
    --primary-dark-blue: #083B66;
    --primary-turquoise: #00A7B4;
    --primary-gold: #C8A14F;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
}

/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

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

/* تأثيرات Glass Morphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--shadow-medium);
    border-color: var(--primary-turquoise);
}

/* الأزرار */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-dark-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 167, 180, 0.3);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-gold), #d4af37);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 161, 79, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 161, 79, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark-blue);
    border: 2px solid var(--primary-dark-blue);
}

.btn-outline:hover {
    background: var(--primary-dark-blue);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* العناوين */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-turquoise), var(--primary-gold));
    border-radius: 2px;
}

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

.section-header {
    margin-bottom: 4rem;
}

/* قسم Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-turquoise));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mockup-browser {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.browser-header {
    background: #f1f3f4;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-buttons {
    display: flex;
    gap: 6px;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27ca3f; }

.address-bar {
    background: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-light);
    flex: 1;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* قسم المميزات */
.features-section {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

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

.feature-card {
    padding: 2.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* قسم أنواع المواقع */
.website-types-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-turquoise));
    position: relative;
}

.website-types-section .section-title,
.website-types-section .section-subtitle {
    color: var(--white);
}

.website-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.website-type-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.website-type-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.card-features li {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-right: 1.5rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* قسم مراحل العمل */
.process-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-turquoise), var(--primary-gold));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-item:nth-child(odd) {
    margin-left: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    margin-right: 50%;
    padding-left: 3rem;
}

.timeline-icon {
    position: absolute;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.timeline-duration {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.timeline-activities {
    list-style: none;
}

.timeline-activities li {
    color: var(--text-dark);
    padding: 0.3rem 0;
    position: relative;
    padding-right: 1.5rem;
}

.timeline-activities li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-turquoise);
    font-weight: bold;
}

/* قسم الأسئلة الشائعة */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 167, 180, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-turquoise);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* قسم الاتصال */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--primary-turquoise));
    position: relative;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container .glass-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

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

.contact-info .glass-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item div {
    flex: 1;
}

.contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-value {
    display: block;
    color: var(--white);
    font-weight: 600;
}

.additional-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* الأيقونات */
.icon-phone::before { content: '📞'; }
.icon-eye::before { content: '👁'; }
.icon-responsive::before { content: '📱'; }
.icon-search::before { content: '🔍'; }
.icon-speed::before { content: '⚡'; }
.icon-security::before { content: '🔒'; }
.icon-support::before { content: '🎧'; }
.icon-update::before { content: '🔄'; }
.icon-consultation::before { content: '💬'; }
.icon-design::before { content: '🎨'; }
.icon-development::before { content: '💻'; }
.icon-testing::before { content: '🧪'; }
.icon-launch::before { content: '🚀'; }
.icon-maintenance::before { content: '🔧'; }
.icon-chevron-down::before { content: '▼'; }
.icon-send::before { content: '📤'; }
.icon-email::before { content: '✉️'; }
.icon-location::before { content: '📍'; }
.icon-clock::before { content: '🕐'; }
.icon-quote::before { content: '💰'; }
.icon-chat::before { content: '💬'; }

/* التصميم المتجاوب */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .website-types-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        padding-left: 4rem;
        padding-right: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: -30px;
        right: auto;
    }
    
    .process-timeline::before {
        right: auto;
        left: 30px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .card-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .website-type-card,
    .timeline-item,
    .faq-item,
    .contact-form-container .glass-card,
    .contact-info .glass-card {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2.5rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-icon {
        left: -20px !important;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* تأثيرات إضافية للحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* تطبيق الحركات عند التمرير */
.animate-on-scroll {
    opacity: 0;
    animation-fill-mode: both;
    animation-duration: 0.8s;
}

.animate-on-scroll.animate {
    animation-name: fadeInUp;
}

.animate-on-scroll.animate-left {
    animation-name: fadeInLeft;
}

.animate-on-scroll.animate-right {
    animation-name: fadeInRight;
}

/* تحسينات إضافية للأداء */
.glass-card,
.btn,
.feature-card,
.website-type-card,
.timeline-item,
.faq-item {
    will-change: transform;
}

/* تأثيرات الضوء المتحركة */
.light-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: lightMove 3s infinite;
}

@keyframes lightMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-section::after,
.website-types-section::after,
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.3;
}

/* ========================================================= */
/* تصميم قسم الاتصال وطلب الخدمة                              */
/* ========================================================= */

.contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: var(--primary-dark, #083B66);
    background-image: linear-gradient(180deg, #083b66 0%, #0b4a7a 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::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="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.3;
}

/* تصميم رأس القسم */
.contact-section .section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* تصميم الأيقونة فوق العنوان */
.contact-section .section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal, #00A7B4), var(--primary-gold, #C8A14F));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 167, 180, 0.3);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .section-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 167, 180, 0.4);
}

.contact-section .section-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    background: linear-gradient(110deg, 
        var(--white, #fff) 30%, 
        var(--accent-gold, #C8A14F) 50%, 
        var(--white, #fff) 70%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text-light 5s linear infinite;
    margin: 0;
}

.contact-section .section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 65ch; 
    line-height: 1.6;
    margin: 0;
}

/* تصميم محتوى القسم */
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

/* تصميم أزرار الاتصال */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* تصميم الأزرار */
.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    border: 2px solid transparent;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* زر أساسي */
.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-teal, #00A7B4), var(--primary-gold, #C8A14F));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 167, 180, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 167, 180, 0.4);
}

/* زر الواتساب باللون الأخضر */
.cta-buttons .btn-secondary {
    background: #25D366; /* اللون الأخضر الرسمي لواتساب */
    color: var(--white);
    border: 2px solid #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: #128C7E; /* لون أغمق عند التمرير */
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* زر مخطط */
.cta-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* تصميم الأيقونات داخل الأزرار */
.cta-buttons .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
    transform: scale(1.2);
}

/* تعديلات للشاشات المتوسطة */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-section .section-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* تعديلات للشاشات الصغيرة */
@media (max-width: 576px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .section-header {
        margin-bottom: 2rem;
        gap: 0.8rem;
    }
    
    .contact-section .section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .cta-buttons .btn i {
        font-size: 1.1rem;
    }
}

