/* ===== المتغيرات الأساسية - التصميم الداكن الفاخر ===== */
:root {
    --primary-dark: #0a0f1f;
    --primary-deep: #0f1a2f;
    --primary: #13263f;
    --secondary: #1c3553;
    --accent: #c5a059;
    --accent-light: #dbb87c;
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --dark: #030614;
    --darker: #020410;
    --light: #e5e9f0;
    --gray: #8a9bb5;
    --border: #2a3a55;
    --shadow: 0 15px 40px rgba(0,0,0,0.5);
    --shadow-hover: 0 25px 50px rgba(197,160,89,0.2);
    --card-bg: rgba(15, 26, 47, 0.9);
    --gradient-gold: linear-gradient(135deg, var(--accent), var(--gold-dark));
    --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
    --instapay: #8e2157;
}

/* ===== التنسيقات العامة ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    color: var(--light);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--gradient-dark);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

p {
    color: var(--gray);
}

/* ===== شريط التحميل ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(197,160,89,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== الهيدر المتحرك ===== */
.navbar {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.3s;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(3, 6, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(197,160,89,0.2);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 900;
    color: white !important;
    text-shadow: 0 0 20px rgba(197,160,89,0.3);
}

.navbar-brand span {
    color: var(--accent);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    text-shadow: 0 0 10px var(--accent);
}

/* ===== القسم الرئيسي (الهيرو) ===== */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c5a059" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(197,160,89,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
    text-shadow: 0 0 30px rgba(197,160,89,0.3);
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 48px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    animation: fadeInUp 1s 0.4s backwards;
}

.hero-stats {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s 0.6s backwards;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197,160,89,0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    color: var(--gray);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197,160,89,0.3);
    box-shadow: 0 30px 50px rgba(0,0,0,0.6);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== الأزرار ===== */
.btn-accent {
    background: var(--gradient-gold);
    color: var(--dark);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(197,160,89,0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197,160,89,0.5);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid var(--accent);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197,160,89,0.3);
}

/* ===== عناوين الأقسام ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}

/* ===== بطاقات الخدمات ===== */
.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197,160,89,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197,160,89,0.3);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(197,160,89,0.1) 0%, rgba(255,215,0,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 36px;
    transition: all 0.3s;
    border: 2px solid rgba(197,160,89,0.3);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    border-color: var(--accent);
    color: var(--gold);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    color: var(--gray);
}

.service-features i {
    color: var(--accent);
    margin-left: 10px;
}

/* ===== نظام الروابط ===== */
.section-link {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.section-link:hover {
    color: var(--accent) !important;
}

.section-link::before {
    content: '#';
    position: absolute;
    right: -20px;
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s;
    font-weight: bold;
}

.section-link:hover::before {
    opacity: 1;
    right: -25px;
}

.copy-link-btn {
    position: absolute;
    left: 10px;
    top: 10px;
    background: var(--gradient-gold);
    color: var(--dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.section-card {
    position: relative;
}

.section-card:hover .copy-link-btn {
    opacity: 1;
}

.copy-link-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(197,160,89,0.4);
}

.link-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(197,160,89,0.3);
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.2);
}

.link-notification.show {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.share-page-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 998;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(197,160,89,0.3);
}

.share-page-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(197,160,89,0.5);
}

.share-page-btn .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(197,160,89,0.4);
    animation: pulse 2s infinite;
}

/* ===== بطاقات المميزات ===== */
.feature-box {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197,160,89,0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197,160,89,0.3);
}

.feature-box i {
    font-size: 48px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* ===== قسم الإحصائيات ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
    padding: 80px 0;
    color: white;
    position: relative;
    border-top: 1px solid rgba(197,160,89,0.2);
    border-bottom: 1px solid rgba(197,160,89,0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-grid .stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stats-grid .stat-label {
    font-size: 18px;
    opacity: 0.9;
    color: var(--gray);
}

/* ===== نظام التقرير الذكي ===== */
.smart-report-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
}

.report-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197,160,89,0.2);
    backdrop-filter: blur(20px);
}

.report-input-group {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.report-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(197,160,89,0.2);
    border-radius: 15px;
    padding: 15px 25px;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.report-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(197,160,89,0.3);
}

.report-input::placeholder {
    color: var(--gray);
}

.report-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.report-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
}

.report-feature i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 10px;
}

.report-feature h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.report-feature p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== صفحة التكنولوجيا ===== */
.tech-section {
    padding: 80px 0;
}

.tech-card {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197,160,89,0.2);
    transition: all 0.3s;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.tech-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 25px;
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

.tech-header i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 15px;
}

.tech-header h3 {
    color: white;
    margin-bottom: 5px;
}

.tech-header p {
    color: var(--gray);
    font-size: 14px;
}

.tech-body {
    padding: 25px;
}

.tech-spec {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(197,160,89,0.1);
}

.tech-spec span:first-child {
    color: var(--gray);
    font-weight: 600;
}

.tech-spec span:last-child {
    color: var(--accent);
    font-weight: 700;
}

/* ===== بطاقات الفريق ===== */
.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(197,160,89,0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197,160,89,0.3);
}

.team-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--primary-dark), transparent);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.team-info h4 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(197,160,89,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s;
    border: 1px solid rgba(197,160,89,0.2);
}

.team-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ===== قسم حجز المواعيد ===== */
.booking-section {
    padding: 60px 0;
    background: var(--gradient-dark);
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.booking-tab {
    background: var(--card-bg);
    border: 2px solid rgba(197,160,89,0.2);
    border-radius: 60px;
    padding: 15px 40px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-tab i {
    color: var(--accent);
    font-size: 20px;
}

.booking-tab.active {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.booking-tab.active i {
    color: var(--dark);
}

.booking-content {
    display: none;
}

.booking-content.active {
    display: block;
}

.booking-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197,160,89,0.2);
    backdrop-filter: blur(20px);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-header h3 {
    color: white;
    margin-bottom: 10px;
}

.booking-header p {
    color: var(--gray);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(197,160,89,0.2);
    border-radius: 15px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(197,160,89,0.2);
}

.form-control::placeholder {
    color: var(--gray);
}

select.form-control option {
    background: var(--primary-dark);
    color: white;
}

.payment-highlight {
    background: rgba(197,160,89,0.1);
    border: 2px dashed var(--accent);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.btn-instapay {
    background: var(--instapay);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin: 10px 0;
    border: 1px solid #ff4ca3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-instapay:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(142, 33, 87, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.service-option {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(197,160,89,0.2);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: var(--accent);
}

.service-option.selected {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: var(--accent);
}

.service-option i {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--accent);
}

.service-option.selected i {
    color: var(--dark);
}

hr {
    border: 0;
    border-top: 1px solid rgba(197,160,89,0.2);
    margin: 20px 0;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    margin-bottom: 10px;
    padding-right: 15px;
    position: relative;
    font-size: 14px;
}

.content-list li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    right: 0;
    font-weight: bold;
}

.content-list b {
    color: var(--accent);
}

.btn-main {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* ===== نموذج الاتصال ===== */
.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197,160,89,0.1);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(197,160,89,0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
    color: white;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(197,160,89,0.2);
    outline: none;
    background: rgba(255,255,255,0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    padding: 40px;
    color: white;
    height: 100%;
    border: 1px solid rgba(197,160,89,0.2);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(197,160,89,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    border: 1px solid rgba(197,160,89,0.3);
}

.contact-info-item h5 {
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--gray);
    margin: 0;
}

/* ===== الفوتر ===== */
.footer {
    background: var(--darker);
    color: white;