/* ==========================================================================
   Egypt Grants & Competitions Hub - Clean Corporate Light Design System
   ========================================================================== */

:root {
    --bg-main: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-header: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent-emerald: #059669;
    --accent-emerald-hover: #047857;
    --accent-blue: #2563eb;
    --accent-blue-hover: #1d4ed8;
    --accent-cyan: #0284c7;
    --accent-amber: #d97706;
    --border-color: #e2e8f0;
    --border-hover: #0284c7;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
    --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-ar);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Navbar */
.header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group-link {
    text-decoration: none;
    color: inherit;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.svg-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    font-weight: 600;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.nav-link i {
    font-size: 14px;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--accent-blue);
    background: #ffffff;
}

.nav-link.active {
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.nav-link.active i {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-sync {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-sync:hover {
    background: #f8fafc;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-sync i.spin {
    animation: spin 1s linear infinite;
}

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

.dropdown-export {
    position: relative;
}

.btn-export {
    background: var(--accent-emerald);
    border: none;
    color: #ffffff;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
    transition: all 0.2s ease;
}

.btn-export:hover {
    background: var(--accent-emerald-hover);
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    min-width: 180px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-export:hover .dropdown-menu {
    display: flex;
}

.dropdown-item {
    padding: 10px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: right;
    transition: background 0.15s ease;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 48px 24px;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.badge-live i {
    font-size: 8px;
    color: var(--accent-emerald);
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 820px;
    margin: 0 auto 32px;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.stat-item {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Main Container */
.main-container {
    max-width: 1280px;
    margin: 32px auto;
    padding: 0 24px;
    width: 100%;
    flex: 1;
}

/* Donors Directory Panel */
.donors-directory-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.directory-header {
    margin-bottom: 16px;
}

.directory-header h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.directory-header h3 i {
    color: var(--accent-blue);
}

.directory-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.donors-pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding-left: 6px;
}

.donor-pill {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: var(--font-ar);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
}

.donor-pill:hover {
    background: #f1f5f9;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.donor-pill.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #ffffff;
}

.donor-count {
    background: rgba(15, 23, 42, 0.08);
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 10px;
}

.donor-pill.active .donor-count {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Controls Card */
.controls-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.search-box {
    position: relative;
    margin-bottom: 16px;
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 12px 44px 12px 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-ar);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
}

.search-box input:focus {
    border-color: var(--accent-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tab-btn {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-ar);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background: #f1f5f9;
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #ffffff;
}

/* Grants Cards Grid */
.grants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.grant-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
}

.grant-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-blue);
}

.card-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.card-category {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.badge-verified {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent-emerald);
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-expired {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent-amber);
    border: 1px solid rgba(217, 119, 6, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 6px;
}

.card-donor {
    font-size: 13px;
    color: var(--accent-amber);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.card-summary {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-details-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 600;
}

.detail-val {
    color: var(--text-primary);
    font-weight: 700;
}

.detail-val.highlight {
    color: var(--accent-emerald);
}

.card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-card-details {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-card-details:hover {
    background: #e2e8f0;
}

.btn-card-original {
    background: #ffffff;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-card-original:hover {
    background: rgba(37, 99, 235, 0.08);
}

.btn-card-apply {
    background: var(--accent-emerald);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-card-apply:hover {
    background: var(--accent-emerald-hover);
}

.btn-card-disabled {
    background: #e2e8f0;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: not-allowed;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Modal Popup */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-backdrop.hidden {
    display: none;
}

.modal-content {
    background: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    position: relative;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: var(--text-primary);
}

.modal-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-donor {
    font-size: 13px;
    color: var(--accent-amber);
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal-grid-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.info-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card i {
    font-size: 18px;
    color: var(--accent-blue);
}

.info-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.info-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.info-value.Highlight {
    color: var(--accent-emerald);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    position: relative;
    padding-right: 20px;
}

.eligibility-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--accent-emerald);
    font-weight: bold;
}

.modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-direct-apply {
    background: var(--accent-emerald);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-direct-apply:hover {
    background: var(--accent-emerald-hover);
}

.btn-direct-apply.disabled {
    background: #e2e8f0;
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    z-index: 1000;
}

.toast.hidden {
    display: none;
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-contact-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* Services Page Styles */
.services-hero {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 40px 24px;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.services-hero-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 12px 0;
}

.services-hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.service-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--accent-emerald);
}

.btn-service-action {
    background: var(--accent-blue);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Contact Page Styles */
.contact-hero {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 40px 24px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.contact-hero-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 12px 0;
}

.contact-hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-info-card, .contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.info-card-title, .form-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

.contact-detail-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-detail-item p {
    font-size: 12px;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 13px;
    color: var(--text-primary);
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-blue);
    background: #ffffff;
}

.btn-submit-form {
    background: var(--accent-emerald);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-submit-form:hover {
    background: var(--accent-emerald-hover);
}

/* Responsive */
@media (max-width: 900px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .stats-bar { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .header-container { flex-direction: column; gap: 12px; }
}
