/*
Theme Name: أثاث هوب
Theme URI: https://athathhub.shop
Description: قالب احترافي لشركة أثاث هوب - نقل عفش وشراء أثاث مستعمل
Version: 1.0.0
Author: Kian Developer
Author URI: https://chimney.host
Text Domain: athathhub
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
*/

/* === CSS VARIABLES === */
:root {
    --gold: #0D9488;
    --gold-light: #14B8A6;
    --gold-dark: #0A7A6F;
    --dark: #0A0E17;
    --dark-2: #111827;
    --dark-3: #1F2937;
    --dark-4: #2D3748;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-400: #A0AEC0;
    --gray-500: #718096;
    --green-wa: #25D366;
    --blue-call: #0088CC;
    --red-pulse: #FF4444;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --shadow-gold: 0 4px 20px rgba(13,148,136,0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--gray-100);
    color: var(--dark);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.hdr {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, background 0.3s;
}
.hdr.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.99);
}
.hdr-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 20px;
}

/* ── Logo ── */
.hdr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.hdr-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
}
.hdr-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
}
.hdr-logo strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
    line-height: 1.2;
}
.hdr-logo small {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 400;
}

/* ── Desktop Nav ── */
.hdr-nav { display: flex; align-items: center; flex: 1; }
.hdr-nav-head { display: none; }
.hdr-nav-foot { display: none; }
.hdr-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding: 0;
}
.hdr-nav > ul > li { position: relative; }
.hdr-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 20px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-3);
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}
.hdr-nav > ul > li > a:hover,
.hdr-nav > ul > li.active > a { color: var(--gold); }

/* Underline effect */
.hdr-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 16px;
    left: 16px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.hdr-nav > ul > li:hover > a::after,
.hdr-nav > ul > li.active > a::after { transform: scaleX(1); }

.chevron { transition: transform 0.3s; margin-top: 1px; }
.has-sub:hover .chevron { transform: rotate(180deg); }

/* ── Sub Menu (Desktop) ── */
.sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 50%;
    transform: translateX(50%) translateY(6px);
    min-width: 220px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
}
.has-sub:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}
.sub-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--dark-3);
    font-weight: 500;
    transition: all 0.15s;
}
.sub-menu a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
    transition: all 0.2s;
}
.sub-menu a:hover {
    background: rgba(13,148,136,0.06);
    color: var(--gold);
}
.sub-menu a:hover::before {
    background: var(--gold);
    transform: scale(1.4);
}

/* ── Actions ── */
.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.hdr-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
}
.hdr-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: scale(1.05);
}
.hdr-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--gold);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
    font-family: var(--font-heading);
}
.hdr-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.25);
}
.hdr-cta span { direction: ltr; }

/* Burger */
.hdr-burger {
    display: none;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px 6px;
}
.hdr-burger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: absolute;
    right: 6px;
}
.hdr-burger span:nth-child(1) { top: 8px; width: 24px; }
.hdr-burger span:nth-child(2) { top: 16px; width: 18px; }
.hdr-burger span:nth-child(3) { top: 24px; width: 24px; }
.hdr-burger:hover span:nth-child(2) { width: 24px; }

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s;
}
.overlay.show { display: block; opacity: 1; }

/* ═══ FULLSCREEN SEARCH ═══ */
.search-full {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(15,23,42,0.96);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.search-full.open {
    opacity: 1;
    visibility: visible;
}
.sf-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.sf-close:hover { background: rgba(239,68,68,0.15); color: #ef4444; border-color: rgba(239,68,68,0.3); }
.sf-inner {
    width: 90%;
    max-width: 620px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.search-full.open .sf-inner { transform: translateY(0); }
.sf-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}
.sf-input-wrap {
    position: relative;
    display: flex;
}
.sf-input-wrap input {
    width: 100%;
    padding: 18px 24px;
    padding-left: 68px;
    border: 2px solid rgba(13,148,136,0.4);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 18px;
    font-family: var(--font-body);
    outline: none;
    direction: rtl;
    transition: all 0.3s;
}
.sf-input-wrap input::placeholder { color: var(--gray-500); }
.sf-input-wrap input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 4px rgba(13,148,136,0.15);
}
.sf-input-wrap button {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gold);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.sf-input-wrap button:hover { background: var(--gold-light); transform: translateY(-50%) scale(1.05); }
.sf-hints {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
}
.sf-hints span { color: var(--gray-500); }
.sf-hints a {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--gray-400);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    transition: all 0.2s;
}
.sf-hints a:hover { background: rgba(13,148,136,0.15); border-color: var(--gold); color: var(--gold-light); }

/* ═══ MOBILE ═══ */
@media(max-width:900px) {
    .hdr-burger { display: block; }
    .hdr-cta span { display: none; }
    .hdr-cta { padding: 9px 12px; border-radius: 10px; }
    .hdr-logo small { display: none; }

    .hdr-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 290px;
        height: 100vh;
        background: var(--white);
        z-index: 99999;
        flex-direction: column;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        box-shadow: -12px 0 40px rgba(0,0,0,0.08);
    }
    .hdr-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 16px;
        border-bottom: 1px solid var(--gray-200);
    }
    .hdr-nav-head span { font-weight: 800; color: var(--gold); font-family: var(--font-heading); font-size: 16px; }
    .hdr-nav-head button {
        background: var(--gray-100);
        border: none;
        cursor: pointer;
        padding: 6px;
        border-radius: 8px;
        color: var(--gray-500);
        display: flex;
    }
    .hdr-nav-head button:hover { background: var(--gray-200); }
    .hdr-nav > ul { flex-direction: column; width: 100%; padding: 8px 0; }
    .hdr-nav > ul > li { border-bottom: 1px solid var(--gray-100); }
    .hdr-nav > ul > li > a { padding: 14px 18px; font-size: 15px; justify-content: space-between; }
    .hdr-nav > ul > li > a::after { display: none; }

    .sub-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        padding: 4px 14px 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 0;
        background: var(--gray-50);
        border-top: 1px solid var(--gray-200);
    }
    .has-sub.open > .sub-menu { display: block; }
    .has-sub.open .chevron { transform: rotate(180deg); }
    .sub-menu a { padding: 11px 14px; font-size: 14px; }

    .hdr-nav-foot {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 18px 16px;
        margin-top: auto;
        border-top: 1px solid var(--gray-200);
    }
    .nf-btn {
        display: block;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 14px;
        color: #fff;
    }
    .nf-call { background: var(--gold); }
    .nf-wa { background: #25D366; }

    .sf-close { top: 16px; left: 16px; width: 42px; height: 42px; }
    .sf-label { font-size: 15px; margin-bottom: 18px; }
    .sf-input-wrap input { font-size: 16px; padding: 15px 20px; padding-left: 60px; }
}

@media(max-width:480px) {
    .hdr-logo strong { font-size: 14px; }
    .hdr-logo img, .hdr-logo-icon { width: 36px; height: 36px; }
    .hdr-inner { gap: 10px; }
}

/* === HERO SECTION (Homepage) === */
.hero-section {
    position: relative;
    background: linear-gradient(160deg, var(--dark) 0%, #0F172A 40%, #1a1235 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13,148,136,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(13,148,136,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(10,122,111,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F7FAFC' d='M0,60 C360,100 720,0 1080,60 C1260,90 1380,60 1440,60 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 6s infinite ease-in-out;
}

.hero-particles span:nth-child(1) { top: 20%; right: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 40%; right: 30%; animation-delay: 1s; animation-duration: 8s; }
.hero-particles span:nth-child(3) { top: 60%; right: 70%; animation-delay: 2s; animation-duration: 7s; }
.hero-particles span:nth-child(4) { top: 30%; right: 50%; animation-delay: 3s; width: 6px; height: 6px; }
.hero-particles span:nth-child(5) { top: 70%; right: 20%; animation-delay: 4s; animation-duration: 9s; }
.hero-particles span:nth-child(6) { top: 15%; right: 80%; animation-delay: 1.5s; }
.hero-particles span:nth-child(7) { top: 85%; right: 60%; animation-delay: 2.5s; width: 5px; height: 5px; }
.hero-particles span:nth-child(8) { top: 50%; right: 90%; animation-delay: 3.5s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,148,136,0.15);
    border: 1px solid rgba(13,148,136,0.3);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-content h2 {
    font-size: clamp(28px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-content h2 .gold-text {
    color: var(--gold);
    position: relative;
}

.hero-content h2 .gold-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13,148,136,0.5);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 4px;
}

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

/* === SERVICES SECTION === */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(13,148,136,0.05));
    border: 1px solid rgba(13,148,136,0.2);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(13,148,136,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    gap: 10px;
    color: var(--gold);
}

/* === CITIES SECTION === */
.cities-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.city-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.city-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.city-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.city-card:hover::after { transform: scaleX(1); }

.city-card .city-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.city-card h3 {
    font-size: 15px;
    color: var(--dark);
}

.city-card span {
    font-size: 12px;
    color: var(--gray-500);
}

/* === WHY US SECTION === */
.why-section {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(13,148,136,0.05) 0%, transparent 50%);
}

.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: var(--gray-400); }
.why-section .section-badge {
    background: rgba(13,148,136,0.15);
    border-color: rgba(13,148,136,0.3);
    color: var(--gold-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(13,148,136,0.08);
    border-color: rgba(13,148,136,0.3);
    transform: translateY(-4px);
}

.why-card .why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.why-card h3 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.7;
}

/* === SEO CONTENT SECTION === */
.seo-content-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.seo-content-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
}

.seo-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media(max-width:768px) {
    .seo-content-box { padding: 24px 16px; }
    .seo-content-section { padding: 40px 0 50px; }
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(10,14,23,0.7);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.cta-btn-dark {
    background: var(--dark);
    color: var(--gold-light);
}

.cta-btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

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

.cta-btn-outline:hover {
    background: var(--dark);
    color: var(--gold-light);
    transform: translateY(-3px);
}

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
    position: relative;
}

.footer-main {
    padding: 60px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-about .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-about .footer-logo h3 {
    color: var(--gold);
    font-size: 18px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '◂';
    font-size: 10px;
    color: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 6px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact li .contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(13,148,136,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--gold);
}

/* === BREADCRUMB === */
.breadcrumb-wrap {
    background: var(--dark);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-500); font-size: 10px; }
.breadcrumb .current { color: var(--gold); font-weight: 600; }

/* === SINGLE POST/PAGE === */
.single-wrap {
    padding: 50px 0;
}

.single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.single-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

/* Featured Image - Professional Display */
.featured-img-full {
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    position: relative;
}

.featured-img-full img.entry-thumb {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media(max-width:768px) {
    .featured-img-full { border-radius: var(--radius-md); }
    .featured-img-full img.entry-thumb { max-height: 280px; }
}

.single-content .entry-title {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--gold);
    line-height: 1.5;
}

/* Content Typography */
.entry-content h2 {
    font-size: 22px;
    color: var(--dark);
    margin: 30px 0 16px;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(13,148,136,0.1), transparent);
    border-right: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content h3 {
    font-size: 19px;
    color: var(--dark-2);
    margin: 24px 0 12px;
    padding-right: 16px;
    border-right: 3px solid var(--gold-light);
}

.entry-content h4 {
    font-size: 17px;
    margin: 20px 0 10px;
    color: var(--dark-3);
}

.entry-content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark-3);
}

.entry-content a {
    color: var(--gold-dark);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold);
}

.entry-content a:hover {
    color: var(--gold);
    border-bottom-style: solid;
}

.entry-content ul, .entry-content ol {
    margin: 16px 0;
    padding-right: 20px;
}

.entry-content ul li, .entry-content ol li {
    margin-bottom: 8px;
    padding-right: 10px;
    position: relative;
    line-height: 1.8;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.entry-content ol {
    list-style: arabic-indic;
    padding-right: 30px;
}

.entry-content ol li::marker {
    color: var(--gold-dark);
    font-weight: 700;
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.entry-content table thead th {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--gold);
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    text-align: right;
}

.entry-content table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.entry-content table tbody tr:nth-child(even) {
    background: var(--gray-100);
}

.entry-content table tbody tr:hover {
    background: rgba(13,148,136,0.06);
}

/* Blockquote */
.entry-content blockquote {
    background: linear-gradient(135deg, rgba(13,148,136,0.05), rgba(13,148,136,0.02));
    border-right: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--dark-3);
}

/* === SIDEBAR === */
.sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-contact {
    background: linear-gradient(135deg, var(--dark) 0%, #0c2e2b 100%);
    border-radius: var(--radius-lg);
    padding: 22px;
    text-align: center;
    margin-bottom: 16px;
}
.sidebar-contact h3 { color: var(--gold); font-size: 15px; margin-bottom: 6px; }
.sidebar-contact p { color: var(--gray-400); font-size: 12px; margin-bottom: 14px; }
.sidebar-btns { display: flex; flex-direction: column; gap: 8px; }
.sidebar-btns a {
    padding: 10px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-align: center;
    transition: var(--transition);
    display: block;
}
.sb-wa { background: #25D366; }
.sb-call { background: var(--gold); }
.sidebar-btns a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.toc-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--gold);
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
    cursor: pointer;
}

.toc-title .toc-toggle {
    margin-right: auto;
    width: 24px;
    height: 24px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.toc-list {
    max-height: 65vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--gray-100);
}

.toc-list::-webkit-scrollbar { width: 4px; }
.toc-list::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.toc-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.toc-list li {
    margin-bottom: 2px;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--dark-3);
    font-weight: 500;
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.toc-list a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
    transition: var(--transition);
}

.toc-list a:hover,
.toc-list a.active {
    background: rgba(13,148,136,0.08);
    color: var(--gold-dark);
    border-right-color: var(--gold);
}

.toc-list a:hover::before,
.toc-list a.active::before {
    background: var(--gold);
    transform: scale(1.5);
}

.toc-list .toc-h3 {
    padding-right: 28px;
    font-size: 12px;
}

/* Sidebar Contact Box */
.sidebar-contact {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 20px;
    text-align: center;
}

.sidebar-contact h3 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 8px;
}

.sidebar-contact p {
    color: var(--gray-400);
    font-size: 13px;
    margin-bottom: 16px;
}

.sidebar-contact .sidebar-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact .sidebar-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.sidebar-contact .sidebar-btns .sb-wa {
    background: var(--green-wa);
}

.sidebar-contact .sidebar-btns .sb-call {
    background: var(--blue-call);
}

.sidebar-contact .sidebar-btns a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === FLOATING CONTACT BUTTONS === */
.cfb-wrap {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--font-body);
}

.cfb-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    direction: ltr;
    width: 56px;
    height: 56px;
    justify-content: center;
    position: relative;
}

.cfb-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.cfb-btn .cfb-txt {
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    transition: all 0.4s ease;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.cfb-btn:hover {
    width: auto;
    padding: 0 20px 0 16px;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cfb-btn:hover .cfb-txt {
    opacity: 1;
    max-width: 150px;
    margin-left: 8px;
}

.cfb-btn.cfb-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.cfb-btn.cfb-call {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.cfb-btn .cfb-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    animation: cfb-ripple 2.5s infinite;
}

.cfb-btn.cfb-wa .cfb-ripple {
    background: rgba(37,211,102,0.3);
}

.cfb-btn.cfb-call .cfb-ripple {
    background: rgba(13,148,136,0.3);
}

@keyframes cfb-ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* === CONTACT SHORTCODE === */
.gc-contact-box {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1235 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(13,148,136,0.2);
    position: relative;
    overflow: hidden;
}

.gc-contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13,148,136,0.1), transparent);
    border-radius: 50%;
}

.gc-contact-box .gc-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.gc-contact-box .gc-info h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 4px;
}

.gc-contact-box .gc-info p {
    color: var(--gray-400);
    font-size: 13px;
    margin: 0;
}

.gc-contact-box .gc-btns {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.gc-contact-box .gc-btns a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    transition: var(--transition);
    border: none;
}

.gc-contact-box .gc-btns .gc-wa { background: var(--green-wa); }
.gc-contact-box .gc-btns .gc-call { background: var(--gold); color: var(--dark); }

.gc-contact-box .gc-btns a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === FAQ SECTION (Accordion) === */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold); }

.faq-item h2 {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
    gap: 12px;
}

.faq-question:hover { color: var(--gold-dark); }

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 14px;
}

.faq-item.active .faq-question .faq-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 20px 16px;
    color: var(--dark-3);
    font-size: 15px;
    line-height: 1.8;
}

/* === 404 PAGE === */
.page-404 {
    text-align: center;
    padding: 100px 20px;
}

.page-404 h1 {
    font-size: 120px;
    color: var(--gold);
    line-height: 1;
}

.page-404 h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.page-404 p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .single-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section { padding: 60px 0 80px; min-height: auto; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 28px; }
    .hero-content h2 { font-size: 28px; }

    .single-content { padding: 24px 16px; }
    .entry-content h2 { font-size: 19px; padding: 10px 16px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .gc-contact-box { flex-direction: column; text-align: center; }
    .gc-contact-box .gc-btns { flex-direction: column; width: 100%; }
    .gc-contact-box .gc-btns a { justify-content: center; }

    .cfb-btn:hover { width: 56px; padding: 0; }
    .cfb-btn:hover .cfb-txt { opacity: 0; max-width: 0; margin: 0; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .cfb-wrap { bottom: 16px; left: 16px; }
}

/* === PRINT === */
@media print {
    .site-header, .site-footer, .cfb-wrap, ..sidebar, .gc-contact-box { display: none !important; }
    .single-layout { grid-template-columns: 1fr; }
    .single-content { box-shadow: none; border: none; padding: 0; }
}
