/* Main CSS File for Teeba Al-Ahmad Website - Based on Original Brand Identity */
/* هوية الشعار: خط BC Arabic | ذهبي #fcdf55 (R252 G223 B85) | ذهبي غامق #99792d (R135 G121 B45) */

/* خط BC Arabic: إن وُجد الملف في assets/fonts/ يُحمّل، وإلا يُستخدم الاحتياطي */
@font-face {
    font-family: 'BC Arabic';
    src: local('BC Arabic'), local('BCArabic');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --bg-gray: #525252;
    --bg-gray-light: #5e5e5e;
    --bg-gray-dark: #424242;
    --brand-dark: #99792d;
    --brand-mid: #d6bb6f;
    --brand-light: #fcdf55;
    --brand-gold: #fcdf55;
    --text-on-dark: #ffffff;
    --text-on-light: #2c2c2c;
    --font-arabic: 'BC Arabic', 'Noto Naskh Arabic', 'Traditional Arabic', 'Karla', sans-serif;
}

/* ===== General Styles - Based on Original Identity ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-arabic);
    background-color: var(--bg-gray);
    background-image: none;
    color: var(--text-on-dark);
    padding-bottom: 0;
    direction: rtl;
    text-align: right;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* ===== Navigation - Modern & Professional ===== */
.navbar {
    padding-top: 25px;
    padding-bottom: 25px;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* شاشات الهاتف: خلفية قاتمة صلبة لقراءة أفضل */
@media (max-width: 991px) {
    .navbar {
        background: rgba(33, 33, 33, 0.98) !important;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    padding-top: 15px;
    padding-bottom: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .navbar-brand .company-name,
.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-on-light) !important;
}

/* كتلة الشعار + الاسم: وحدة واحدة واضحة (UX/UI) */
.navbar-brand {
    margin-right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.navbar-brand img,
.navbar-brand .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.navbar-brand:hover .logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}

/* النص: سطران بمحاذاة ثابتة وواضحة */
.navbar-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.15rem;
    min-height: 52px;
}

.company-name-line1,
.company-name-line2 {
    display: block;
    font-family: var(--font-arabic);
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff;
    text-align: right;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.company-name-line2 {
    font-size: 14px;
    opacity: 0.95;
}

.navbar.scrolled .company-name-line1,
.navbar.scrolled .company-name-line2 {
    color: var(--text-on-light);
    text-shadow: none;
}

@media (max-width: 1199px) {
    .company-name-line1 { font-size: 14px; }
    .company-name-line2 { font-size: 13px; }
    .navbar-brand-text { min-height: 48px; }
    .navbar-brand-logo { width: 50px; height: 50px; }
}

@media (max-width: 991px) {
    .company-name-line1 { font-size: 13px; white-space: normal; }
    .company-name-line2 { font-size: 12px; white-space: normal; }
    .navbar-brand-text { min-height: 44px; }
    .navbar-brand-logo { width: 46px; height: 46px; }
}

@media (max-width: 767px) {
    .navbar {
        padding-bottom: 0;
    }
    .navbar-brand {
        gap: 0.75rem;
    }
    .navbar-brand-logo {
        width: 42px;
        height: 42px;
    }
    .navbar-brand-text {
        min-height: 40px;
    }
    .company-name-line1 {
        font-size: 11px;
        white-space: normal;
        line-height: 1.35;
    }
    .company-name-line2 {
        font-size: 10px;
        white-space: normal;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
    opacity: 0.9;
    padding: 8px 20px !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}
/* منع كسر نص القائمة — من نحن، اتصل بنا، إلخ تبقى في سطر واحد */
.navbar-nav .nav-item > .nav-link:not(.nav-link-icon-only):not(.nav-lang-switch) {
    white-space: nowrap;
}

/* زر تسجيل الدخول في الهيدر */
.nav-link-login {
    background: rgba(153, 121, 45, 0.35) !important;
    border: 1px solid rgba(214, 187, 111, 0.6) !important;
    margin-right: 0.5rem !important;
}

/* تجميع أزرار المستخدم (لوحة التحكم + خروج) في صف واحد */
.nav-item-user-wrap {
    margin-right: 0;
}
.nav-user-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
}
.nav-user-buttons .nav-link {
    margin: 0 !important;
    padding: 6px 12px !important;
    font-size: 14px;
    white-space: nowrap;
}
/* أزرار أيقونات فقط (تحكم + خروج) */
.nav-link-icon-only {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    font-size: 20px !important;
    border-radius: 10px;
    background: rgba(153, 121, 45, 0.35) !important;
    border: 1px solid rgba(214, 187, 111, 0.6) !important;
}
.nav-link-icon-only:hover {
    background: rgba(153, 121, 45, 0.5) !important;
    border-color: var(--brand-mid) !important;
}
.navbar.scrolled .nav-link-icon-only {
    background: rgba(153, 121, 45, 0.2) !important;
    border-color: var(--brand-dark) !important;
    color: var(--brand-dark) !important;
}
.navbar.scrolled .nav-link-icon-only:hover {
    background: rgba(153, 121, 45, 0.35) !important;
    color: var(--brand-dark) !important;
}
/* مبدّل اللغة ع | EN — نفس الخط، بدون قاعدة بيانات */
.nav-lang-switch .lang-link {
    font-family: inherit;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding: 0 0.2rem;
}
.nav-lang-switch .lang-link:hover {
    color: #fff;
}
.nav-lang-switch .lang-link.active {
    font-weight: 700;
    color: var(--brand-light, #fcd755);
}
.navbar.scrolled .nav-lang-switch .lang-link {
    color: rgba(0, 0, 0, 0.7);
}
.navbar.scrolled .nav-lang-switch .lang-link:hover {
    color: #000;
}
.navbar.scrolled .nav-lang-switch .lang-link.active {
    color: var(--brand-dark, #99792d);
}
@media (max-width: 767px) {
    .nav-user-buttons {
        gap: 0.25rem;
        padding: 8px 0;
    }
    .nav-user-buttons .nav-link {
        padding: 8px 10px !important;
        font-size: 13px;
    }
    .nav-link-icon-only {
        width: 36px;
        height: 36px;
        font-size: 18px !important;
    }
}

.nav-link-login:hover {
    background: rgba(153, 121, 45, 0.5) !important;
    border-color: var(--brand-mid) !important;
}

.navbar.scrolled .nav-link-login {
    background: rgba(153, 121, 45, 0.2) !important;
    border-color: var(--brand-dark) !important;
    color: var(--brand-dark) !important;
}

.navbar.scrolled .nav-link-login:hover {
    background: rgba(153, 121, 45, 0.35) !important;
    color: var(--brand-dark) !important;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    opacity: 1;
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* عند خلفية الهيدر البيضاء (بعد التمرير): نص القائمة يبقى غامقاً وواضحاً */
.navbar.scrolled .navbar-dark .navbar-nav .nav-link,
.navbar.scrolled .navbar-dark .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-dark .navbar-nav .nav-link.active {
    color: var(--text-on-light) !important;
}

.navbar.scrolled .navbar-dark .navbar-nav .nav-link::before {
    background: rgba(153, 121, 45, 0.15);
}

.navbar.scrolled .navbar-dark .navbar-nav .nav-link:hover::before,
.navbar.scrolled .navbar-dark .navbar-nav .nav-link.active::before {
    background: rgba(153, 121, 45, 0.2);
}

/* القائمة المنسدلة (موبايل): عند فتحها مع خلفية بيضاء يكون النص غامقاً */
.navbar.scrolled .navbar-collapse .navbar-nav .nav-link {
    color: var(--text-on-light) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar-collapse .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-collapse .navbar-nav .nav-link.active {
    color: var(--brand-dark) !important;
}

@media (max-width: 767px) {
    .navbar-dark .navbar-nav .nav-link {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 20px !important;
    }
    .navbar-dark .navbar-nav .nav-link:last-child {
        border-bottom: 0;
    }
    /* أزرار المستخدم: صف واحد بدون حدود داخلية */
    .nav-user-buttons .nav-link {
        border-bottom: none !important;
    }
    .nav-item-user-wrap {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    /* موبايل: عندما القائمة منسدلة وخلفية الهيدر فاتحة */
    .navbar.scrolled .navbar-collapse .nav-link {
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }
    .navbar.scrolled .nav-user-buttons .nav-link {
        border-bottom: none !important;
    }
    .navbar.scrolled .nav-item-user-wrap {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/* ===== Hero Section - خلفية slidshow.png مع النصوص ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background-image: url('../images/slidshow.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.page-title {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

@media (max-width: 767px) {
    .page-title {
        font-size: 35px;
        margin-bottom: 14px;
    }
}

.page-description {
    max-width: 700px;
    font-size: 18px;
    margin: 0 auto 40px;
    color: #ffffff;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

@media (max-width: 767px) {
    .page-description {
        font-size: 14px;
    }
}

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

.trust-indicator {
    text-align: center;
    margin: 30px 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.trust-indicator .years {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.trust-indicator .label {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
}

.btn-custom,
.btn-custom-outline {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 5px;
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
}

.btn-custom {
    background: linear-gradient(135deg, var(--brand-mid) 0%, var(--brand-dark) 100%);
    color: var(--text-on-dark);
    box-shadow: 0 4px 15px rgba(153, 121, 45, 0.4);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

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

.btn-custom:hover {
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-mid) 100%);
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 121, 45, 0.5);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--text-on-dark);
    border: 2px solid var(--brand-mid);
    backdrop-filter: blur(10px);
}

.btn-custom-outline:hover {
    background-color: var(--brand-dark);
    color: var(--text-on-dark);
    border-color: var(--brand-light);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 121, 45, 0.4);
}

/* ===== Page Header ===== */
.page-header {
    padding: 150px 0 80px;
    background: var(--bg-gray-dark);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 35px;
    }
    .page-header p {
        font-size: 14px;
    }
}

/* ===== Section Styles ===== */
.section-content {
    padding: 80px 0;
    position: relative;
    background: #f5f5f5;
}
/* تقليل المسافة قبل الفوتر — آخر قسم في الصفحة */
main > section.section-content:last-of-type {
    padding-bottom: 2.5rem;
}

.bg-dark-section {
    background: var(--bg-gray-dark);
    position: relative;
}

.bg-dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-on-light);
    text-align: center;
}

.bg-dark-section .section-title {
    color: var(--text-on-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.section-content .section-subtitle {
    color: var(--text-on-light);
}

.bg-dark-section .section-subtitle {
    color: var(--text-on-dark);
    opacity: 0.95;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-dark), transparent);
    margin: 20px auto 40px;
    border-radius: 2px;
}

.bg-dark-section .accent-line {
    background: linear-gradient(90deg, transparent, var(--brand-mid), transparent);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* قسم الخريطة في الصفحة الرئيسية */
.map-section .section-title {
    margin-bottom: 10px;
}
/* خريطة بعرض الصفحة الكامل */
.map-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}
.map-fullwidth iframe,
.map-fullwidth .map-iframe-full {
    display: block;
    width: 100%;
    height: 420px;
    min-height: 400px;
    border: 0;
}
@media (min-width: 768px) {
    .map-fullwidth iframe,
    .map-fullwidth .map-iframe-full {
        height: 500px;
    }
}
/* وعاء الخريطة المضمّنة — زوايا مستديرة وظل لظهور أنيق */
.map-embed-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(214, 187, 111, 0.2);
    border: 1px solid rgba(214, 187, 111, 0.25);
    margin-bottom: 0;
    max-width: 100%;
}
.map-embed-wrapper .map-iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}
@media (min-width: 768px) {
    .map-embed-wrapper .map-iframe {
        height: 480px;
    }
}
.map-embed-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(214, 187, 111, 0.25);
}
.map-embed-wrap iframe {
    display: block;
}
.map-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px dashed rgba(214, 187, 111, 0.4);
}

/* ألوان النصوص في الأقسام ذات الخلفية الفاتحة (من نحن، خدمات، إلخ) */
.section-content .content-box {
    background: #fff;
    border-color: rgba(214, 187, 111, 0.35);
}
.section-content .content-box p,
.section-content .content-box .lead,
.section-content .content-box strong,
.section-content .page-editable-content,
.section-content .page-editable-content p,
.section-content .page-editable-content h1,
.section-content .page-editable-content h2,
.section-content .page-editable-content h3,
.section-content .page-editable-content li {
    color: var(--text-on-light);
}
.section-content .content-box .lead {
    color: var(--text-on-light);
}
.section-content .highlight-box {
    color: var(--text-on-light);
    background: rgba(153, 121, 45, 0.12);
    border-right-color: var(--brand-mid);
}
.section-content .value-box {
    background: #fff;
    border-color: rgba(214, 187, 111, 0.25);
}
.section-content .value-box h4 {
    color: var(--text-on-light);
    text-shadow: none;
}
.section-content .value-box p {
    color: #555;
    opacity: 1;
}
.section-content .value-box:hover {
    border-color: var(--brand-mid);
    box-shadow: 0 12px 30px rgba(153, 121, 45, 0.15);
}

/* ===== Content Boxes - Lively & Dynamic ===== */
.content-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(214, 187, 111, 0.35);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInUp 0.8s ease;
}

.content-box:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--brand-mid);
}

.content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 20px;
}

.content-box .lead {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.highlight-box {
    background: rgba(153, 121, 45, 0.25);
    padding: 25px;
    border-radius: 8px;
    border-right: 4px solid var(--brand-mid);
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    color: var(--text-on-dark);
}

/* ===== Service Boxes - Modern & Professional ===== */
.service-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-box:hover::before {
    left: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(214, 187, 111, 0.3) 0%, rgba(153, 121, 45, 0.25) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 40px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(153, 121, 45, 0.2);
}

.service-box:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--brand-mid) 0%, var(--brand-dark) 100%);
    color: var(--text-on-dark);
    box-shadow: 0 8px 25px rgba(153, 121, 45, 0.35);
}

/* شعارات الوكالات في صفحة وكالاتنا */
.agency-logo-wrap {
    padding: 10px;
}
.agency-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-on-light);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-box:hover h4 {
    color: var(--brand-dark);
}

.service-box p {
    font-size: 15px;
    color: #555;
    margin: 0 0 20px 0;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-box:hover p {
    opacity: 1;
    transform: translateY(-3px);
}

.service-link {
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.service-link:hover {
    color: var(--brand-mid);
    text-decoration: none;
    padding-right: 10px;
    transform: translateX(-5px);
}

/* ===== Info Cards - Lively Design ===== */
.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-20px) rotateX(8deg) rotateY(-8deg) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.info-card .card-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.info-card:hover .card-title {
    transform: scale(1.1) translateZ(30px);
}

.info-card .card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
}

/* ===== Value Boxes - Dynamic with Smooth Transitions ===== */
.value-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.value-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.value-box:hover::after {
    width: 300px;
    height: 300px;
}

.value-box:hover {
    transform: translateY(-20px) rotateX(8deg) rotateY(-8deg) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.value-box h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.value-box:hover h4 {
    transform: scale(1.15) translateY(-5px);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.value-box p {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    line-height: 1.7;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.value-box:hover p {
    opacity: 1;
    transform: translateY(-3px);
}

/* ===== Feature Boxes - Modern & Professional ===== */
.feature-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);
    transition: left 0.6s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 48px;
    color: var(--brand-dark);
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
}

.feature-box:hover i {
    transform: scale(1.15) translateY(-5px);
    color: var(--brand-mid);
}

.feature-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-on-light);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-box:hover h5 {
    color: var(--brand-dark);
}

.feature-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.7;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-box:hover p {
    color: #444;
}

/* ===== Timeline - Dynamic ===== */
.history-timeline {
    position: relative;
    padding: 30px 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-content h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.timeline-content p {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .history-timeline::before {
        right: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-right: 70px;
    }

    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 14px;
        position: absolute;
        right: 0;
    }

    .timeline-content {
        margin-right: 0;
        margin-left: 15px;
    }
}

/* ===== Products Section - No Background Images ===== */
.product-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
}

.section-content .product-box {
    background: #fff;
    border: 1px solid rgba(153, 121, 45, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section-content .product-box:hover {
    border-color: var(--brand-mid);
    box-shadow: 0 12px 30px rgba(153, 121, 45, 0.15);
}

.product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-box:hover::before {
    opacity: 1;
}

.product-box:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(-5deg) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.product-image-container {
    width: 100%;
    height: 280px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 10px 10px 0 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-box:hover .product-image-container {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: productImageFadeIn 0.8s ease;
}

@keyframes productImageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-box:hover .product-image-container img {
    transform: scale(1.15) translateZ(50px) rotateY(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.product-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.product-image-placeholder p {
    margin: 0;
    font-size: 14px;
}

.product-info {
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.section-content .product-box .product-info {
    background: #fafafa;
    border-top: 1px solid rgba(153, 121, 45, 0.15);
}

.product-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.section-content .product-box .product-info h5 {
    color: var(--text-on-light);
    text-shadow: none;
}

.bg-dark-section .product-info h5,
body:not(.section-content) .product-info h5 {
    color: var(--text-on-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-info .product-category {
    font-size: 14px;
    margin: 0;
}

.section-content .product-box .product-category {
    color: #555;
}

.bg-dark-section .product-category,
.product-box .product-category {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== Contact Section ===== */
.contact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-box .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-box:hover .contact-icon {
    transform: scale(1.1) rotateY(10deg);
    background: rgba(255, 255, 255, 0.25);
}

.contact-box .contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2);
}

.contact-box:hover .contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.3);
}

.contact-box h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-box p {
    margin: 0;
    color: #ffffff;
    opacity: 0.9;
    font-size: 15px;
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #25D366 !important;
    font-size: 14px;
    padding: 5px 12px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin-top: 10px;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.25);
    color: #25D366 !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

.whatsapp-link i {
    font-size: 16px;
}

/* صناديق الاتصال داخل section-content (خلفية فاتحة): خلفية داكنة لقراءة النص */
.section-content .contact-box {
    background: var(--bg-gray-dark);
    border-color: rgba(214, 187, 111, 0.4);
}
.section-content .contact-box:hover {
    background: var(--bg-gray);
    border-color: var(--brand-mid);
}
.section-content .contact-box .contact-icon {
    background: rgba(252, 223, 85, 0.2);
    color: var(--brand-light);
}
.section-content .contact-box h5 {
    color: var(--text-on-dark);
}
.section-content .contact-box p,
.section-content .contact-box a {
    color: rgba(255, 255, 255, 0.95);
}
.section-content .contact-box a:hover {
    color: var(--brand-light);
}

/* ===== CTA Box ===== */
.cta-box {
    background: rgba(153, 121, 45, 0.2);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(214, 187, 111, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-box:hover {
    background: rgba(153, 121, 45, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--brand-mid);
}

.cta-box h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-on-dark);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-box p {
    font-size: 18px;
    color: var(--text-on-dark);
    opacity: 0.95;
    margin-bottom: 25px;
}

/* ===== Footer - Based on Original ===== */
.footer {
    background: var(--bg-gray-dark);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(214, 187, 111, 0.25);
    backdrop-filter: blur(10px);
}

/* الفوتر: شعار + اسم بنفس تناسب الهيدر */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    text-decoration: none;
    color: inherit;
    opacity: 0.9;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 0.1rem;
}

.footer-name-line1,
.footer-name-line2 {
    display: block;
    font-family: var(--font-arabic);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-on-dark);
    text-align: right;
}

.footer-name-line2 {
    font-size: 14px;
    opacity: 0.95;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-on-dark);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    .footer-logo-box { width: 46px; height: 46px; }
    .footer-name-line1 { font-size: 14px; }
    .footer-name-line2 { font-size: 13px; }
}

.footer h5 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-on-dark);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 14px;
    color: var(--text-on-dark);
    opacity: 0.9;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-mid);
    opacity: 1;
    padding-right: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}
.footer-contact-list li {
    margin-bottom: 10px;
}
.footer-contact-list a,
.footer-contact-list span {
    color: var(--text-on-dark);
    opacity: 0.9;
    text-decoration: none;
}
.footer-contact-list a:hover {
    color: var(--brand-mid);
    opacity: 1;
}
.footer-contact-list .mdi {
    margin-left: 6px;
    opacity: 0.9;
}
.footer-map-link {
    color: var(--brand-mid) !important;
    font-weight: 600;
}
.footer-map-link:hover {
    color: var(--brand-light) !important;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links .social-link {
    display: inline-block;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(214, 187, 111, 0.3);
    color: var(--brand-dark);
    margin-right: 0;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.footer-social-links .social-link:last-child {
    margin-right: 0;
}

.footer-social-links .social-link:hover {
    text-decoration: none;
    background: var(--brand-dark);
    color: var(--text-on-dark);
    transform: translateY(-3px) scale(1.1);
}

/* ===== Forms (اتصل بنا) ===== */
.section-content .form-control {
    background: #fff;
    border: 1px solid #ccc;
    color: var(--text-on-light);
    border-radius: 8px;
}

.section-content .form-control:focus {
    border-color: var(--brand-mid);
    box-shadow: 0 0 0 3px rgba(214, 187, 111, 0.2);
}

.section-content label {
    color: var(--text-on-light);
    font-weight: 600;
}

.section-content .text-muted {
    color: #666 !important;
}

.section-content .alert-success {
    background: rgba(153, 121, 45, 0.15);
    border-color: var(--brand-mid);
    color: var(--text-on-light);
}

.section-content .alert-danger {
    border-color: #c0392b;
    color: #721c24;
    background: #f8d7da;
}
.section-content .alert-success {
    color: #155724;
}
/* عناوين ونصوص صفحة اتصل بنا على الخلفية الفاتحة */
.section-content .section-subtitle {
    color: var(--text-on-light);
}
.section-content .section-subtitle.mb-3 {
    color: var(--text-on-light);
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .content-box {
        padding: 25px 20px;
    }

    .info-card,
    .value-box,
    .service-box,
    .feature-box,
    .contact-box {
        padding: 25px 20px;
    }

    .section-content {
        padding: 50px 0;
    }

    .product-image-container {
        height: 200px;
    }
}

/* ===== Animation Classes ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== صفحة من نحن — نظيفة وعصرية بهوية طيبة الأحمد ===== */
.about-hero {
    padding: 3rem 0 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}
.about-hero-inner {
    max-width: 560px;
    margin: 0 auto;
}
.about-logo {
    margin-bottom: 1rem;
}
.about-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    opacity: 0.95;
}
.about-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--brand-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.about-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.about-content {
    padding: 2rem 0 3rem;
}
.about-prose {
    max-width: 720px;
    margin: 0 auto 2rem;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.97);
    border-radius: 12px;
    color: var(--text-on-light);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.about-prose .lead {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.about-prose p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-prose h2 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(153,121,45,0.25);
}
.about-prose h2:first-of-type {
    margin-top: 0;
}
.about-prose ul {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}
.about-prose li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}
.about-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}
.about-prose th,
.about-prose td {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(153,121,45,0.2);
    text-align: right;
}
.about-prose th {
    background: rgba(153,121,45,0.12);
    color: var(--brand-dark);
    font-weight: 600;
}
.about-cta {
    text-align: center;
}
.btn-about {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: var(--brand-dark);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.btn-about:hover {
    background: var(--brand-mid);
    color: #fff;
    transform: translateY(-2px);
}