:root {
    --primary: #0E5AB7;
    --primary-dark: #0A4A97;
    --primary-light: #2F7EEA;
    --secondary: #34B44A;
    --secondary-dark: #23943A;
    --secondary-light: #5ED16F;
    --bg: #FFFFFF;
    --bg-light: #F6FAFF;
    --bg-soft: #EEF8F1;
    --text: #1E2A38;
    --text-light: #5C6F82;
    --text-white: #FFFFFF;
    --border: #D9E8F5;
    --border-green: #BFE9C7;
    --shadow: rgba(14, 90, 183, 0.12);
    --gradient-primary: linear-gradient(135deg, #0E5AB7 0%, #2F7EEA 100%);
    --gradient-secondary: linear-gradient(135deg, #34B44A 0%, #5ED16F 100%);
    --gradient-brand: linear-gradient(135deg, #34B44A 0%, #0E5AB7 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--text);
    direction: rtl;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
.fc-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(217, 232, 245, 0.6);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(14, 90, 183, 0.08);
    border-bottom-color: rgba(217, 232, 245, 0.9);
}

.fc-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.fc-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.fc-logo:hover .fc-logo-img {
    transform: scale(1.03);
}

.fc-logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fc-nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-nav-link:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.fc-nav-link.active {
    color: var(--primary);
    background: rgba(14, 90, 183, 0.06);
}

.fc-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(14, 90, 183, 0.25);
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.fc-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 90, 183, 0.35);
    color: #ffffff;
}

.fc-btn-header i {
    font-size: 14px;
}

.fc-hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    transition: all 0.25s ease;
}

.fc-hamburger:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.fc-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    transform-origin: center;
}

.fc-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.fc-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.fc-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Sidebar */
.fc-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 90, 183, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.fc-sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.fc-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(14, 90, 183, 0.15);
}

.fc-sidebar.open {
    transform: translateX(0);
}

.fc-sidebar-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.fc-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-sidebar-logo img {
    height: 38px;
    width: auto;
}

.fc-sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.2s ease;
}

.fc-sidebar-close:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

.fc-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 12px;
}

.fc-sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    margin-bottom: 4px;
    position: relative;
}

.fc-sidebar-nav-item i {
    width: 22px;
    text-align: center;
    font-size: 16px;
    transition: color 0.25s ease;
}

.fc-sidebar-nav-item:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.fc-sidebar-nav-item.active {
    color: var(--text-white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 16px rgba(14, 90, 183, 0.3);
}

.fc-sidebar-nav-item.active i {
    color: var(--text-white);
}

.fc-sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 18px;
}

.fc-sidebar-social {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.fc-sidebar-social-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.fc-sidebar-social-links {
    display: flex;
    gap: 10px;
}

.fc-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}

.fc-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fc-social-icon.whatsapp {
    background: #25D366;
}

.fc-social-icon.facebook {
    background: #1877F2;
}

.fc-social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fc-social-icon.twitter,
.fc-social-icon.x {
    background: #000000;
}

.fc-social-icon.tiktok {
    background: #000000;
}

.fc-social-icon.youtube {
    background: #FF0000;
}

.fc-social-icon.snapchat {
    background: #FFFC00;
    color: #000;
}

.fc-social-icon.linkedin {
    background: #0A66C2;
}

.fc-social-icon.phone {
    background: var(--secondary);
}

.fc-social-icon.email {
    background: var(--primary);
}

/* Main Content */
.fc-main {
    padding-top: 72px;
    min-height: 100vh;
}

.fc-about-hero-content,
.fc-contact-hero-content,
.fc-order-hero-content {
    text-align: center;
    margin: 0 auto;
}

.fc-about-hero .fc-breadcrumb,
.fc-contact-hero .fc-breadcrumb,
.fc-order-hero .fc-breadcrumb {
    justify-content: center;
}

.fc-about-hero .fc-about-badge,
.fc-contact-hero .fc-contact-badge,
.fc-order-hero .fc-order-badge {
    margin: 0 auto 16px;
}

.fc-contact-hero .fc-contact-subtitle {
    margin: 0 auto;
}

/* Legal Pages (Privacy / Terms) */
.fc-legal-section {
    padding: 50px 0 70px;
}

.fc-legal-section .fc-container {
    max-width: 860px;
}

.fc-legal-section h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 14px;
    margin-top: 32px;
}

.fc-legal-section h2:first-child {
    margin-top: 0;
}

.fc-legal-section p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 12px;
}

.fc-legal-section ul {
    padding-right: 24px;
    margin-bottom: 16px;
}

.fc-legal-section li {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 6px;
}

.fc-legal-section .fc-legal-date {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.fc-btn-svc-detail {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: linear-gradient(135deg, #f0f4ff, #e8edf8);
    border: 1px solid #d5dff0;
    border-radius: 50px;
    color: var(--fc-primary, #0E5AB7);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.fc-service-card:hover .fc-btn-svc-detail {
    background: linear-gradient(135deg, #e0eaff, #d0ddf5);
    border-color: #b8c9e8;
    box-shadow: 0 4px 15px rgba(14, 90, 183, 0.12);
}

/* AUTH PAGES (Login / Register / Password) */
.fc-auth-wrapper {
    min-height: calc(100vh - 72px - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.fc-auth-wrapper::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 90, 183, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.fc-auth-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 180, 74, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.fc-auth-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 28px;
    padding: 48px 40px 40px;
    box-shadow: 0 20px 60px rgba(14, 90, 183, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(14, 90, 183, 0.06);
}

.fc-auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.fc-auth-logo-img {
    width: 80px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.fc-auth-header h1 {
    font-family: 'Tajawal', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a2a3a;
    margin: 0 0 8px;
}

.fc-auth-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.fc-auth-form .fc-form-group {
    margin-bottom: 22px;
}

.fc-auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2a3a4a;
    margin-bottom: 8px;
}

.fc-auth-form .fc-input-wrap {
    position: relative;
}

.fc-auth-form .fc-input-wrap>i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    font-size: 16px;
    color: #9ca3af;
    transition: color 0.3s ease;
    pointer-events: none;
}

.fc-auth-form .fc-input-wrap .toggle-password {
    left: 16px;
    right: auto;
    cursor: pointer;
    pointer-events: all;
    color: #9ca3af;
    z-index: 2;
}

.fc-auth-form .fc-input-wrap .toggle-password:hover {
    color: #0E5AB7;
}

.fc-auth-form input[type="email"],
.fc-auth-form input[type="password"],
.fc-auth-form input[type="text"] {
    width: 100%;
    padding: 14px 48px 14px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #1a2a3a;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fc-auth-form input:focus {
    outline: none;
    border-color: #0E5AB7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 90, 183, 0.08);
}

.fc-auth-form input::placeholder {
    color: #b0b7c3;
    font-size: 13px;
}

.fc-auth-form input:focus~i {
    color: #0E5AB7;
}

.fc-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.fc-auth-options .remember-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.fc-auth-options .remember-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0E5AB7;
    cursor: pointer;
    border-radius: 4px;
}

.fc-auth-options .remember-wrap span {
    font-size: 13px;
    color: #4b5563;
    font-weight: 500;
}

.fc-auth-options .forgot-link {
    font-size: 13px;
    color: #0E5AB7;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc-auth-options .forgot-link:hover {
    color: #083d82;
    text-decoration: underline;
}

.fc-auth-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0E5AB7 0%, #1a6fd0 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.fc-auth-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fc-auth-btn:hover::before {
    opacity: 1;
}

.fc-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 90, 183, 0.3);
}

.fc-auth-btn:active {
    transform: translateY(0);
}

.fc-auth-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.fc-auth-btn:hover i {
    transform: translateX(-4px);
}

/* Footer */
.fc-auth-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #f0f2f5;
}

.fc-auth-footer p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.fc-auth-footer a {
    color: #0E5AB7;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc-auth-footer a:hover {
    color: #083d82;
    text-decoration: underline;
}

.fc-auth-footer .back-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fc-auth-footer .back-home:hover {
    color: #0E5AB7;
    text-decoration: none;
}

.fc-auth-alert {
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px;
}

.fc-auth-alert.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.fc-auth-alert.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.fc-auth-alert ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fc-auth-alert li {
    margin-bottom: 4px;
}

.fc-auth-alert li:last-child {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .fc-auth-wrapper {
        padding: 30px 16px;
    }

    .fc-auth-card {
        padding: 32px 24px 28px;
        border-radius: 20px;
    }

    .fc-auth-header h1 {
        font-size: 22px;
    }

    .fc-auth-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Home - Hero Slider */
.hero-slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: var(--bg-light);
    line-height: 0;
}

.hero-swiper {
    width: 100%;
    height: 520px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}

.hero-slide-picture {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 72px;
    pointer-events: none;
    z-index: 5;
}

.hero-slide-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-secondary);
    color: #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    line-height: 1.2;
}

.hero-slide-wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.hero-slide-wa-btn i {
    font-size: 22px;
}

.hero-slide-wa-num {
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-swiper .swiper-pagination {
    bottom: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(14, 90, 183, 0.4);
    opacity: 1;
    border-radius: 5px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(14, 90, 183, 0.4);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: #ffffff;
    color: var(--secondary);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(14, 90, 183, 0.25);
}

@media (max-width: 768px) {
    .fc-header-inner {
        padding: 0 16px;
    }

    .fc-nav {
        display: none;
    }

    .fc-hamburger {
        display: flex;
    }

    .fc-btn-header span {
        display: none;
    }

    .fc-btn-header {
        padding: 9px 12px;
        border-radius: 10px;
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }

    .hero-swiper .swiper-pagination {
        bottom: 12px !important;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 520px;
    }

    .hero-slide-overlay {
        padding-bottom: 60px;
    }

    .hero-slide-wa-btn {
        padding: 11px 20px;
        font-size: 14px;
        gap: 8px;
    }

    .hero-slide-wa-btn i {
        font-size: 18px;
    }

    .hero-slide-wa-num {
        padding: 3px 10px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-swiper {
        height: 450px;
    }
}

/* Footer */
.fc-footer {
    background: var(--bg-light);
    color: var(--text);
    font-family: 'Tajawal', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--border);
    box-shadow: 0 -4px 20px var(--shadow);
}

.fc-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: var(--bg-soft);
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
}

.fc-footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

.fc-footer-top {
    padding: 60px 0 45px;
}

.fc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
}

.fc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-decoration: none;
}

.fc-footer-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.fc-footer-logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-brand);
    color: var(--text-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 14px var(--shadow);
}

.fc-footer-logo-name {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.fc-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 380px;
}

.fc-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.fc-footer-social-btn:hover {
    transform: translateY(-4px) scale(1.06);
    color: #ffffff;
    filter: brightness(1.08);
}

.fc-footer-social-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.fc-footer-social-btn.facebook {
    background: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.fc-footer-social-btn.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.fc-footer-social-btn.twitter,
.fc-footer-social-btn.x {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.fc-footer-social-btn.tiktok {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.fc-footer-social-btn.youtube {
    background: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.fc-footer-social-btn.snapchat {
    background: #FFFC00;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 252, 0, 0.3);
}

.fc-footer-social-btn.linkedin {
    background: #0A66C2;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.fc-footer-title {
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.fc-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.fc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fc-footer-links li {
    margin-bottom: 12px;
}

.fc-footer-links a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.fc-footer-links a i {
    font-size: 11px;
    color: var(--secondary);
    transition: transform 0.25s ease;
}

.fc-footer-links a:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.fc-footer-links a:hover i {
    transform: translateX(-3px);
    color: var(--primary);
}

.fc-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fc-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fc-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--border-green);
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fc-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-contact-text span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.fc-contact-text strong,
.fc-contact-text a {
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fc-contact-text a:hover {
    color: var(--primary);
}

.fc-footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    background: var(--bg);
}

.fc-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.fc-copyright {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.fc-copyright strong {
    color: var(--primary);
}

.fc-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.fc-footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.fc-footer-bottom-links a:hover {
    color: var(--primary);
}

.fc-footer-bottom-links .dot {
    color: var(--border);
}

@media (max-width: 992px) {
    .fc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 576px) {
    .fc-footer-top {
        padding: 50px 0 35px;
    }

    .fc-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fc-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* About us */
.fc-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.fc-about-hero {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.fc-about-hero-content {
    max-width: 800px;
}

.fc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.fc-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-breadcrumb .sep {
    font-size: 11px;
    color: var(--text-light);
}

.fc-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-soft);
    color: var(--secondary-dark);
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid var(--border-green);
    margin-bottom: 18px;
}

.fc-about-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.fc-about-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.fc-about-section,
.fc-values-section,
.fc-why-section,
.fc-steps-section {
    padding: 70px 0;
}

.fc-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    position: relative;
    padding-right: 28px;
}

.fc-section-tag::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.fc-section-tag.center {
    padding-right: 0;
}

.fc-section-tag.center::before {
    display: none;
}

.fc-section-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}

.fc-section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.text-center {
    text-align: center;
}

.fc-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.fc-about-p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 18px;
}

.fc-about-p.lead {
    font-size: 17px;
    color: var(--text);
    font-weight: 600;
}

.fc-about-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.fc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fc-btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(14, 90, 183, 0.3);
}

.fc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 90, 183, 0.4);
    color: #ffffff;
}

.fc-btn-outline {
    background: var(--bg);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.fc-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
    transform: translateY(-2px);
}

.fc-about-cards-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-showcase-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.fc-showcase-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(14, 90, 183, 0.15);
}

.fc-showcase-card.highlight-card {
    background: var(--bg-light);
    border-color: rgba(14, 90, 183, 0.2);
}

.fc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 90, 183, 0.25);
}

.fc-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.fc-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.fc-values-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fc-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fc-value-card {
    padding: 30px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fc-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fc-value-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 12px 36px var(--shadow);
}

.fc-value-card:hover::before {
    opacity: 1;
}

.fc-value-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--bg-soft);
    border: 1px solid var(--border-green);
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.fc-value-card:hover .fc-value-icon {
    background: var(--gradient-secondary);
    color: #ffffff;
    border-color: transparent;
}

.fc-value-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.fc-value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.fc-why-box {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 60px 48px;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(14, 90, 183, 0.25);
}

.fc-why-header {
    text-align: center;
    margin-bottom: 45px;
}

.fc-why-header h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #ffffff;
}

.fc-why-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.fc-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fc-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fc-why-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--secondary-light);
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.fc-why-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.fc-why-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* Steps Section */
.fc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.fc-step-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.fc-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-light);
}

.fc-step-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
}

.fc-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: var(--gradient-secondary);
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52, 180, 74, 0.3);
}

.fc-step-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.fc-step-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.fc-cta-banner {
    padding: 40px 0 80px;
}

.fc-cta-box {
    background: var(--bg-soft);
    border: 2px solid var(--border-green);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.fc-cta-content {
    max-width: 650px;
}

.fc-cta-content h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
}

.fc-cta-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.fc-cta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fc-btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.fc-btn-whatsapp:hover {
    background: #20bd5a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.fc-btn-call {
    background: var(--bg);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.fc-btn-call:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.fc-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .fc-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fc-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-why-grid {
        grid-template-columns: 1fr;
    }

    .fc-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fc-steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .fc-about-hero {
        padding: 40px 0 35px;
    }

    .fc-about-title {
        font-size: 28px;
    }

    .fc-values-grid {
        grid-template-columns: 1fr;
    }

    .fc-steps-grid {
        grid-template-columns: 1fr;
    }

    .fc-why-box {
        padding: 35px 24px;
    }

    .fc-cta-box {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }

    .fc-cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .fc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contact */
.fc-contact-cards-section .fc-info-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

.fc-contact-hero {
    padding: 60px 0 45px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}

.fc-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(14, 90, 183, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid rgba(14, 90, 183, 0.2);
    margin-bottom: 18px;
}

.fc-contact-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
}

.fc-contact-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 750px;
}

.fc-contact-cards-section {
    padding: 50px 0 20px;
}

.fc-info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fc-info-card {
    padding: 28px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px var(--shadow);
}

.fc-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(14, 90, 183, 0.12);
}

.fc-info-card.highlight-card {
    background: var(--bg-light);
    border-color: var(--border-green);
}

.fc-info-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
}

.fc-info-icon.phone-icon {
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(14, 90, 183, 0.25);
}

.fc-info-icon.wa-icon {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.fc-info-icon.time-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 12px rgba(52, 180, 74, 0.25);
}

.fc-info-icon.loc-icon {
    background: var(--gradient-brand);
    box-shadow: 0 4px 12px rgba(14, 90, 183, 0.25);
}

.fc-info-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.fc-info-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.fc-info-link {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fc-info-link:hover {
    color: var(--primary-dark);
}

.fc-info-link.wa-link {
    color: #20bd5a;
}

.fc-info-link.wa-link:hover {
    color: #169343;
}

.fc-info-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.fc-contact-main-section {
    padding: 50px 0 80px;
}

.fc-contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.fc-contact-form-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow);
}

.fc-form-header {
    margin-bottom: 30px;
}

.fc-form-header h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
}

.fc-form-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.fc-quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-form-group.full-width {
    grid-column: span 2;
}

.fc-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-form-group label i {
    color: var(--primary);
    font-size: 14px;
}

.fc-form-group input,
.fc-form-group select,
.fc-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    transition: all 0.25s ease;
    outline: none;
}

.fc-form-group input:focus,
.fc-form-group select:focus,
.fc-form-group textarea:focus {
    border-color: var(--primary);
    background: var(--bg);
    box-shadow: 0 0 0 4px rgba(14, 90, 183, 0.12);
}

.fc-submit-btn {
    width: 100%;
    padding: 15px 24px;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.fc-submit-btn:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.fc-submit-btn i {
    font-size: 22px;
}

.fc-contact-side-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fc-side-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px var(--shadow);
}

.fc-side-card.wa-direct-card {
    background: var(--bg-soft);
    border-color: var(--border-green);
}

.fc-side-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.fc-side-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-side-card h3 i {
    color: var(--primary);
}

.fc-side-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.fc-btn-whatsapp.full {
    width: 100%;
    justify-content: center;
    padding: 13px;
    border-radius: 12px;
}

.fc-regions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc-regions-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-regions-list li i {
    color: var(--secondary-dark);
    font-size: 12px;
}

@media (max-width: 992px) {
    .fc-info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .fc-info-cards-grid {
        grid-template-columns: 1fr;
    }

    .fc-contact-form-wrap {
        padding: 24px 18px;
    }

    .fc-form-row {
        grid-template-columns: 1fr;
    }

    .fc-form-group.full-width {
        grid-column: span 1;
    }

    .fc-contact-title {
        font-size: 28px;
    }
}

/* Blog */
.fc-blog-hero {
    padding: 60px 0 45px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}

.fc-breadcrumb.justify-center {
    justify-content: center;
}

.fc-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-soft);
    color: var(--secondary-dark);
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    border: 1px solid var(--border-green);
    margin-bottom: 18px;
}

.fc-blog-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 14px;
}

.fc-blog-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
}

.fc-blog-main-section {
    padding: 60px 0 80px;
}

.fc-blog-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.fc-tab-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text-light);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.fc-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
}

.fc-tab-btn.active {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(14, 90, 183, 0.25);
}

.fc-featured-post-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px var(--shadow);
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.fc-featured-post-card:hover {
    box-shadow: 0 12px 40px rgba(14, 90, 183, 0.15);
    border-color: var(--primary-light);
}

.fc-featured-img-wrap {
    width: 100%;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.fc-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc-featured-post-card:hover .fc-featured-img-wrap img {
    transform: scale(1.05);
}

.fc-post-cat-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--gradient-secondary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(52, 180, 74, 0.3);
    z-index: 2;
}

.fc-featured-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.fc-post-meta i {
    color: var(--primary);
}

.fc-post-meta .dot {
    color: var(--border);
}

.fc-featured-content h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
    color: var(--text);
    transition: color 0.25s ease;
}

.fc-featured-post-card:hover .fc-featured-content h2 {
    color: var(--primary);
}

.fc-featured-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.fc-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.fc-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.fc-author-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
}

.fc-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fc-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.25s ease;
}

.fc-read-more-btn i {
    transition: transform 0.25s ease;
}

.fc-read-more-btn:hover {
    color: var(--primary-dark);
}

.fc-read-more-btn:hover i {
    transform: translateX(-4px);
}

/* Articles Grid */
.fc-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fc-article-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.fc-article-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 36px rgba(14, 90, 183, 0.15);
}

.fc-article-img-wrap {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
}

.fc-article-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc-article-card:hover .fc-article-img-wrap img {
    transform: scale(1.08);
}

.fc-card-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(14, 90, 183, 0.3);
}

.fc-card-cat.sofa-cat {
    background: var(--gradient-secondary);
}

.fc-card-cat.tips-cat {
    background: linear-gradient(135deg, #f09433, #e6683c);
}

.fc-card-cat.pest-cat {
    background: linear-gradient(135deg, #dc2743, #cc2366);
}

.fc-article-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fc-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.fc-article-body h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text);
    transition: color 0.25s ease;
}

.fc-article-card:hover .fc-article-body h3 {
    color: var(--primary);
}

.fc-article-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.fc-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.fc-article-date {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-card-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.fc-article-card:hover .fc-card-link {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    transform: translateX(-3px);
}

/* Pagination */
.fc-custom-pagination-wrap {
    margin: 55px 0 45px;
    display: flex;
    justify-content: center;
}

.fc-pagination-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 40px;
    box-shadow: 0 4px 20px var(--shadow);
}

.fc-page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-light);
    background: var(--bg);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 8px;
}

.fc-page-item:hover:not(.disabled):not(.dots) {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.fc-page-item.active {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(14, 90, 183, 0.35);
}

.fc-page-item.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: transparent;
    border-color: transparent;
}

.fc-page-item.dots {
    border: none;
    background: transparent;
    font-weight: 900;
    color: var(--text-light);
    min-width: 24px;
}

.fc-page-item.next {
    background: var(--bg);
    border-color: var(--border);
    color: var(--primary);
}

.fc-page-item.next:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
}

.fc-blog-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 40px;
    background: var(--bg-soft);
    border: 2px solid var(--border-green);
    border-radius: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.fc-blog-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.fc-blog-cta-text {
    flex: 1;
}

.fc-blog-cta-text h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
}

.fc-blog-cta-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 992px) {
    .fc-featured-post-card {
        grid-template-columns: 1fr;
    }

    .fc-featured-img-wrap {
        height: 260px;
    }

    .fc-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fc-articles-grid {
        grid-template-columns: 1fr;
    }

    .fc-blog-title {
        font-size: 28px;
    }

    .fc-blog-cta-box {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
    }

    .fc-blog-cta-icon {
        margin: 0 auto;
    }

    .fc-pagination-nav {
        padding: 6px 10px;
        gap: 4px;
    }

    .fc-page-item {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }
}

/* HOME - CATEGORIES & SERVICES  */

.fc-home-services-section {
    padding: 80px 0;
    background: var(--bg);
}

.fc-categories-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.fc-cat-nav-btn {
    padding: 12px 24px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text-light);
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px var(--shadow);
}

.fc-cat-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
    transform: translateY(-2px);
}

.fc-cat-nav-btn.active {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(14, 90, 183, 0.3);
}

.fc-home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fc-service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.fc-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 14px 40px rgba(14, 90, 183, 0.16);
}

.fc-service-img-wrap {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.fc-service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fc-service-card:hover .fc-service-img-wrap img {
    transform: scale(1.08);
}

.fc-service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(14, 90, 183, 0.3);
    z-index: 2;
}

.fc-service-badge.sofa-bg {
    background: var(--gradient-secondary);
}

.fc-service-badge.detail-bg {
    background: linear-gradient(135deg, #0E5AB7, #2F7EEA);
}

.fc-service-badge.pest-bg {
    background: linear-gradient(135deg, #dc2743, #cc2366);
}

.fc-service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fc-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.fc-service-icon.sofa-icon {
    color: var(--secondary-dark);
    background: var(--bg-soft);
    border-color: var(--border-green);
}

.fc-service-icon.detail-icon {
    color: var(--primary);
}

.fc-service-icon.pest-icon {
    color: #dc2743;
    background: #fff1f2;
    border-color: #fecdd3;
}

.fc-service-card:hover .fc-service-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(14, 90, 183, 0.3);
}

.fc-service-content h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.fc-service-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.fc-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.fc-service-features li {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-service-features li i {
    color: var(--secondary-dark);
    font-size: 12px;
}

.fc-service-footer {
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-price-hint {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.fc-price-hint span {
    color: var(--primary);
    font-weight: 800;
}

.fc-service-btns {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.fc-btn-svc-wa {
    flex: 1;
    padding: 10px 14px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-btn-svc-wa:hover {
    background: #20bd5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

.fc-services-more-cta {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .fc-home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fc-home-services-grid {
        grid-template-columns: 1fr;
    }

    .fc-categories-nav {
        gap: 8px;
    }

    .fc-cat-nav-btn {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

/* CATEGORIES SECTION  */

.fc-img-categories-section {
    padding: 80px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.fc-img-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.fc-img-cat-card {
    position: relative;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.fc-img-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(14, 90, 183, 0.25);
    border-color: rgba(14, 90, 183, 0.4);
}

.fc-img-cat-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-img-cat-card:hover .fc-img-cat-bg {
    transform: scale(1.12);
}

.fc-img-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 90, 183, 0.2) 0%, rgba(15, 26, 44, 0.9) 100%);
    transition: background 0.4s ease;
}

.fc-img-cat-card:hover .fc-img-cat-overlay {
    background: linear-gradient(180deg, rgba(14, 90, 183, 0.1) 0%, rgba(14, 90, 183, 0.92) 100%);
}

.fc-img-cat-content {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    color: #ffffff;
}

.fc-img-cat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-img-cat-badge {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
}

.fc-img-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.fc-img-cat-card:hover .fc-img-cat-icon {
    background: #ffffff;
    color: var(--primary);
    transform: rotate(-10deg);
}

.fc-img-cat-bottom h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.fc-img-cat-bottom p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.fc-img-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary-light);
    transition: all 0.25s ease;
}

.fc-img-cat-card:hover .fc-img-cat-btn {
    color: #ffffff;
    transform: translateX(-4px);
}

@media (max-width: 992px) {
    .fc-img-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fc-img-categories-grid {
        grid-template-columns: 1fr;
    }

    .fc-img-cat-card {
        height: 280px;
    }
}

/* Why Us */
.fc-why-us-section {
    padding: 85px 0;
    background: var(--bg);
}

.fc-why-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.fc-why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px var(--shadow);
    position: relative;
}

.fc-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 14px 40px rgba(14, 90, 183, 0.16);
}

.fc-why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.fc-why-card:hover .fc-why-card-icon {
    transform: scale(1.08);
}

.fc-why-card-icon.shadow-blue {
    background: var(--gradient-primary);
    box-shadow: 0 6px 18px rgba(14, 90, 183, 0.3);
}

.fc-why-card-icon.shadow-green {
    background: var(--gradient-secondary);
    box-shadow: 0 6px 18px rgba(52, 180, 74, 0.3);
}

.fc-why-card-icon.shadow-purple {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.3);
}

.fc-why-card-icon.shadow-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.3);
}

.fc-why-card h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.fc-why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.fc-why-card-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(14, 90, 183, 0.08);
    color: var(--primary);
    border: 1px solid rgba(14, 90, 183, 0.2);
    align-self: flex-start;
}

.fc-why-card-badge.green-badge {
    background: var(--bg-soft);
    color: var(--secondary-dark);
    border-color: var(--border-green);
}

.fc-why-card-badge.purple-badge {
    background: #f5f3ff;
    color: #7c3aed;
    border-color: #ddd6fe;
}

.fc-why-card-badge.amber-badge {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.fc-why-trust-bar {
    margin-top: 50px;
}

.fc-trust-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    box-shadow: 0 4px 16px var(--shadow);
}

.fc-trust-info i {
    color: var(--secondary-dark);
    font-size: 18px;
}

@media (max-width: 992px) {
    .fc-why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fc-why-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Working Process */
.fc-process-section {
    padding: 85px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fc-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.fc-process-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 22px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px var(--shadow);
}

.fc-process-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 14px 40px rgba(14, 90, 183, 0.16);
}

.fc-step-num-pill {
    position: absolute;
    top: -14px;
    right: 24px;
    padding: 4px 14px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(14, 90, 183, 0.3);
    font-family: 'Inter', sans-serif;
}

.fc-step-num-pill.wa-pill {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.fc-step-num-pill.green-pill {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 12px rgba(52, 180, 74, 0.3);
}

.fc-process-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.fc-process-icon.wa-step-icon {
    color: #25D366;
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.25);
}

.fc-process-icon.green-step-icon {
    color: var(--secondary-dark);
    background: var(--bg-soft);
    border-color: var(--border-green);
}

.fc-process-card:hover .fc-process-icon {
    transform: scale(1.1);
}

.fc-process-card h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.fc-process-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.fc-process-cta {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .fc-process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fc-process-steps-grid {
        grid-template-columns: 1fr;
    }
}
/* FAQ */
.fc-faq-section {
    padding: 85px 0;
    background: var(--bg);
}

.fc-faq-accordion {
    max-width: 900px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fc-faq-item {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.fc-faq-item:hover {
    border-color: var(--primary-light);
}

.fc-faq-item.active {
    border-color: var(--primary);
    background: var(--bg-light);
    box-shadow: 0 6px 24px rgba(14, 90, 183, 0.12);
}

.fc-faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    gap: 16px;
}

.fc-faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-faq-question span i {
    color: var(--primary);
    font-size: 20px;
}

.fc-faq-icon {
    font-size: 14px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.fc-faq-item.active .fc-faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.fc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.fc-faq-item.active .fc-faq-answer {
    max-height: 400px;
    padding: 0 24px 22px;
}

.fc-faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
}

/* CTA */
.fc-final-cta-section {
    padding: 50px 0 90px;
}

.fc-final-cta-box {
    background: var(--gradient-primary);
    border-radius: 28px;
    padding: 55px 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 16px 45px rgba(14, 90, 183, 0.3);
    position: relative;
    overflow: hidden;
}

.fc-final-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.fc-final-cta-content {
    max-width: 650px;
    z-index: 2;
}

.fc-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 30px;
    margin-bottom: 16px;
}

.fc-final-cta-content h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.fc-final-cta-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.fc-final-cta-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    flex-shrink: 0;
}

.fc-final-cta-btns .big-btn {
    flex-shrink: 0;
}

.big-btn {
    padding: 15px 28px;
    font-size: 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

/* Responsive FAQ & CTA */
@media (max-width: 992px) {
    .fc-final-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .fc-final-cta-btns {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .fc-final-cta-btns {
        flex-direction: column;
        gap: 10px;
    }

    .fc-final-cta-btns .big-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 13px 16px;
        font-size: 14px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .fc-faq-question {
        font-size: 15px;
        padding: 18px;
    }

    .fc-final-cta-content h2 {
        font-size: 26px;
    }
}
/* Packages */
.fc-packages-section {
    padding: 85px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fc-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.fc-package-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px var(--shadow);
}

.fc-package-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 16px 45px rgba(14, 90, 183, 0.18);
}

.fc-package-card.popular-package {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(14, 90, 183, 0.03) 0%, var(--bg) 100%);
    transform: scale(1.03);
}

.fc-package-card.popular-package:hover {
    transform: scale(1.03) translateY(-8px);
}

.fc-popular-badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    padding: 4px 16px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(14, 90, 183, 0.35);
}

.fc-pkg-header {
    margin-bottom: 22px;
}

.fc-pkg-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(14, 90, 183, 0.08);
    border: 1px solid rgba(14, 90, 183, 0.2);
    padding: 4px 12px;
    border-radius: 14px;
    margin-bottom: 14px;
}

.fc-pkg-tag.highlight-tag {
    background: var(--bg-soft);
    color: var(--secondary-dark);
    border-color: var(--border-green);
}

.fc-pkg-tag.sofa-tag {
    background: #f5f3ff;
    color: #7c3aed;
    border-color: #ddd6fe;
}

.fc-pkg-tag.move-tag {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.fc-pkg-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.fc-package-card:hover .fc-pkg-icon {
    transform: scale(1.1);
}

.fc-pkg-icon.highlight-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(14, 90, 183, 0.3);
}

.fc-pkg-icon.sofa-pkg-icon {
    color: #7c3aed;
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.fc-pkg-icon.move-pkg-icon {
    color: #d97706;
    background: #fffbeb;
    border-color: #fde68a;
}

.fc-pkg-header h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
}

.fc-pkg-header p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.fc-pkg-body {
    flex: 1;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
    margin-bottom: 24px;
}

.fc-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-pkg-features li {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.fc-pkg-features li i {
    color: var(--secondary-dark);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.fc-pkg-footer {
    margin-top: auto;
}

.fc-pkg-price-hint {
    text-align: center;
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(14, 90, 183, 0.06);
    border-radius: 8px;
    border: 1px dashed var(--primary-light);
}

.fc-btn-pkg-wa {
    width: 100%;
    padding: 13px 18px;
    background: #25D366;
    color: #ffffff;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-btn-pkg-wa:hover {
    background: #20bd5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

.fc-btn-pkg-wa.highlight-wa {
    background: var(--gradient-primary);
    box-shadow: 0 4px 14px rgba(14, 90, 183, 0.35);
}

.fc-btn-pkg-wa.highlight-wa:hover {
    box-shadow: 0 8px 22px rgba(14, 90, 183, 0.45);
}

/* Responsive Packages */
@media (max-width: 992px) {
    .fc-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-package-card.popular-package {
        transform: none;
    }

    .fc-package-card.popular-package:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 576px) {
    .fc-packages-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   BEFORE & AFTER SHOWCASE SECTION STYLES
   ═══════════════════════════════════════════════════ */

.fc-before-after-section {
    padding: 85px 0;
    background: var(--bg);
}

.fc-ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

/* ── Grid ── */
.fc-ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* ── Card ── */
.fc-ba-card {
    background: var(--bg);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.fc-ba-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(14, 90, 183, 0.18);
}

/* ── Media: two rounded image frames ── */
.fc-ba-media {
    position: relative;
    padding: 12px 12px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fc-ba-frame {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    height: 185px;
}

.fc-ba-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fc-ba-frame .fc-ba-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #94a3b8;
    font-size: 13px;
}

.fc-ba-frame .fc-ba-placeholder i {
    font-size: 32px;
}

.fc-ba-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
}

.fc-ba-card:hover .fc-ba-frame img {
    transform: scale(1.07);
}

/* Before frame: muted; After frame: vibrant */
.before-frame img {
    filter: saturate(0.45) brightness(0.8);
}

.after-frame img {
    filter: saturate(1.25) brightness(1.06);
}

/* ── Pills ── */
.fc-ba-pill {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

.before-pill {
    background: rgba(15, 23, 42, 0.55);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.after-pill {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

/* ── VS circle between frames ── */
.fc-ba-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(14, 90, 183, 0.45);
    border: 3px solid var(--bg);
}

/* ── Card Body ── */
.fc-ba-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fc-ba-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.fc-ba-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(14, 90, 183, 0.08);
    border: 1px solid rgba(14, 90, 183, 0.18);
    padding: 4px 12px;
    border-radius: 30px;
}

.fc-ba-cat-tag.sofa-tag {
    background: #f5f3ff;
    color: #7c3aed;
    border-color: #ddd6fe;
}

.fc-ba-cat-tag.prop-tag {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.fc-ba-result {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary-dark);
    background: rgba(52, 180, 74, 0.08);
    border: 1px solid rgba(52, 180, 74, 0.18);
    padding: 4px 10px;
    border-radius: 30px;
}

.fc-ba-card-body h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.5;
}

.fc-ba-card-body p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 18px;
    flex: 1;
}

.fc-ba-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.fc-ba-link i {
    transition: transform 0.25s ease;
}

.fc-ba-link:hover {
    color: var(--primary-dark);
}

.fc-ba-link:hover i {
    transform: translateX(-4px);
}

.fc-ba-cta {
    margin-top: 46px;
}

/* Responsive Before & After */
@media (max-width: 992px) {
    .fc-ba-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .fc-ba-frame {
        height: 150px;
    }

    .fc-ba-media {
        gap: 8px;
        padding: 10px 10px 0;
    }

    .fc-ba-vs {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .fc-ba-pill {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* ═══════════════════════════════════════════════════
   CUSTOMER REVIEWS SECTION STYLES
   ═══════════════════════════════════════════════════ */

.fc-reviews-section {
    padding: 85px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

/* ── Rating Summary Bar ── */
.fc-rating-summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 860px;
    margin: 40px auto 50px;
    padding: 30px 44px;
    background: linear-gradient(135deg, #0b4a94 0%, #0E5AB7 55%, #1670d8 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(14, 90, 183, 0.35);
}

.fc-rating-summary::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -140px;
    right: -80px;
    pointer-events: none;
}

.fc-rating-summary::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(52, 180, 74, 0.18);
    bottom: -110px;
    left: -60px;
    pointer-events: none;
}

.fc-overall-rating {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1;
}

.fc-rating-number {
    font-size: 54px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.fc-rating-stars {
    display: flex;
    gap: 4px;
    color: #ffd166;
    font-size: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fc-rating-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.fc-rating-divider {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.fc-rating-divider i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 16px;
    transform: rotate(90deg);
}

.fc-rating-stats {
    display: flex;
    gap: 48px;
    z-index: 1;
}

.fc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.fc-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.fc-stat-item:hover .fc-stat-icon {
    transform: translateY(-4px);
}

.fc-stat-number {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

.fc-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-align: center;
}

/* ── Reviews Grid ── */
.fc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fc-review-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px var(--shadow);
}

.fc-review-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 35px rgba(14, 90, 183, 0.14);
}

.fc-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Tajawal', sans-serif;
    flex-shrink: 0;
}

.fc-reviewer-avatar.amber-av {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.fc-reviewer-avatar.green-av {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.fc-reviewer-avatar.purple-av {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.fc-reviewer-info {
    flex: 1;
}

.fc-reviewer-info h4 {
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 3px;
}

.fc-review-service {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(14, 90, 183, 0.08);
    padding: 2px 8px;
    border-radius: 8px;
}

.fc-review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 13px;
}

.fc-review-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    flex: 1;
    font-style: italic;
}

.fc-review-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-dark);
}

.fc-review-footer i {
    font-size: 14px;
}

.fc-reviews-cta {
    margin-top: 48px;
}

@media (max-width: 992px) {
    .fc-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        padding: 32px 24px;
        max-width: 460px;
    }

    .fc-rating-divider {
        display: none;
    }

    .fc-rating-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 28px;
    }

    .fc-overall-rating {
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 576px) {
    .fc-reviews-grid {
        grid-template-columns: 1fr;
    }

    .fc-areas-groups {
        grid-template-columns: 1fr;
    }

    .fc-map-visual {
        width: 240px;
        height: 240px;
    }

    .fc-areas-btns {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════
   BLOG ARTICLE SINGLE VIEW (SHOW.BLADE) STYLES
   ═══════════════════════════════════════════════════ */

/* ── Post Header ── */
.fc-post-header-section {
    padding: 60px 0 35px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.fc-post-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.fc-post-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(14, 90, 183, 0.2);
}

.fc-post-info-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.fc-post-main-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.4;
    margin: 18px 0 24px;
}

/* ── Author & Quick Share Bar ── */
.fc-post-author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

.fc-post-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-author-avatar-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(14, 90, 183, 0.15);
    overflow: hidden;
    padding: 6px;
}

.fc-author-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fc-author-name {
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 2px;
}

.fc-author-role {
    font-size: 12px;
    color: var(--secondary-dark);
    font-weight: 700;
}

.fc-post-share-quick {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    margin-left: 4px;
}

.fc-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.fc-share-btn.wa {
    background: #25d366;
}

.fc-share-btn.tw {
    background: #111111;
}

.fc-share-btn.fb {
    background: #1877f2;
}

.fc-share-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* ── Body Layout Grid ── */
.fc-post-body-section {
    padding: 60px 0 85px;
    background: var(--bg);
}

.fc-post-layout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 45px;
    align-items: start;
}

.fc-post-main-column {
    min-width: 0;
}

.fc-post-featured-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 35px;
    border: 1.5px solid var(--border);
    background: var(--bg-light);
}

.fc-post-featured-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.fc-image-caption {
    padding: 10px 18px;
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-top: 1px solid var(--border);
}

.fc-image-caption i {
    color: var(--primary);
}

/* ── Article Entry Content Typography ── */
.fc-article-entry-content {
    font-size: 16px;
    line-height: 2.0;
    color: var(--text);
}

.fc-article-entry-content .lead-paragraph {
    font-size: 18px;
    line-height: 1.9;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(14, 90, 183, 0.05);
    border-right: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.fc-article-entry-content h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin: 38px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    scroll-margin-top: 90px;
}

.fc-article-entry-content h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 28px 0 14px;
    scroll-margin-top: 90px;
}

.fc-article-entry-content p {
    margin-bottom: 22px;
    color: var(--text-light);
}

.fc-article-entry-content ul,
.fc-article-entry-content ol {
    margin: 0 0 26px 0;
    padding-right: 24px;
}

.fc-article-entry-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* ── Takeaway Box ── */
.fc-takeaway-box {
    background: linear-gradient(135deg, rgba(52, 180, 74, 0.08) 0%, rgba(14, 90, 183, 0.08) 100%);
    border: 1.5px solid rgba(52, 180, 74, 0.3);
    border-radius: 20px;
    padding: 24px 28px;
    margin: 40px 0;
}

.fc-takeaway-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.fc-takeaway-header i {
    font-size: 22px;
    color: var(--secondary-dark);
}

.fc-takeaway-header h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.fc-takeaway-box p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

/* ── Article Footer & Author Bio ── */
.fc-post-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    margin: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.fc-post-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fc-tag-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-light);
}

.fc-post-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fc-post-tag:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.fc-author-bio-card {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 24px;
}

.fc-bio-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.fc-bio-info h4 {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px;
}

.fc-bio-info p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ════ SIDEBAR WIDGETS ════ */
.fc-post-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.fc-sidebar-widget {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 4px 16px var(--shadow);
    overflow: hidden;
}

.fc-widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1.5px solid var(--border);
}

.fc-widget-title i {
    font-size: 16px;
    color: var(--primary);
}

.fc-widget-title h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

/* ── 1. Table of Contents List (TOC) ── */
.fc-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-toc-item a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.fc-toc-item a i {
    font-size: 10px;
    color: var(--primary);
    margin-top: 4px;
    transition: transform 0.2s ease;
}

.fc-toc-item a:hover {
    background: rgba(14, 90, 183, 0.07);
    color: var(--primary-dark);
}

.fc-toc-item a:hover i {
    transform: translateX(-3px);
}

.fc-toc-item.h3 {
    margin-right: 14px;
}

.fc-toc-item.h3 a {
    font-size: 12px;
    font-weight: 600;
}

/* ── 2. Related Articles Widget ── */
.fc-related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fc-related-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 6px;
    border-radius: 12px;
}

.fc-related-item:hover {
    background: var(--bg-light);
    transform: translateX(-4px);
}

.fc-related-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.fc-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-related-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-related-cat {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
}

.fc-related-details h4 {
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

.fc-related-date {
    font-size: 11px;
    color: var(--text-light);
}

/* ── 3. Sidebar CTA Booking Widget ── */
.fc-cta-widget {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    border: none;
}

.fc-cta-widget-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fc-cta-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 14px;
}

.fc-cta-widget h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.4;
}

.fc-cta-widget p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.fc-btn.full-w {
    width: 100%;
    justify-content: center;
}

.fc-cta-trust-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 14px;
    font-weight: 600;
}

/* ── Responsive Post Show View ── */
@media (max-width: 992px) {
    .fc-post-layout-grid {
        grid-template-columns: 1fr;
    }

    .fc-post-sidebar {
        position: static;
    }

    .fc-post-main-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .fc-post-author-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .fc-post-footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .fc-author-bio-card {
        flex-direction: column;
    }
}

.fc-about-hero-content {
    text-align: center;
    margin: 0 auto;
}

.fc-about-hero .fc-breadcrumb {
    justify-content: center;
}

.fc-about-hero .fc-about-badge {
    margin: 0 auto 16px;
}

.wa-btn-flipped {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: scale(1);
    transition: all 0.3s ease;
}

.wa-btn-flipped:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.wa-btn-flipped i {
    font-size: 22px;
}

.big-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.big-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}