/*
Theme Name: Naqlafsh Native
Description: Premium Theme for Naqlafsh â€” v3 Grand Redesign
Version: 3.0
*/

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CSS VARIABLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    --primary-yellow:       #f3d052;
    --primary-yellow-hover: #e6c040;
    --primary-yellow-light: rgba(243,208,82,0.12);
    --dark-navy:            #0a1128;
    --dark-navy-2:          #0f1f4a;
    --deep-blue:            #083F87;
    --mid-blue:             #1a5cb8;
    --light-blue:           #e8f0fc;
    --white:                #ffffff;
    --light-gray:           #f7f8fc;
    --text-dark:            #1a1f36;
    --text-body:            #4a5568;
    --text-light:           rgba(255,255,255,0.70);
    --whatsapp:             #25D366;
    --border-light:         rgba(8,63,135,0.08);
    --shadow-sm:            0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:            0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg:            0 20px 60px rgba(8,63,135,0.14);
    --shadow-xl:            0 30px 80px rgba(8,63,135,0.20);
    --shadow-yellow:        0 8px 30px rgba(243,208,82,0.40);
    --shadow-blue:          0 8px 30px rgba(8,63,135,0.30);
    --radius-sm:            10px;
    --radius-card:          20px;
    --radius-full:          50px;
    --radius-img:           0px 40px 0px 40px;
    --transition:           all 0.35s cubic-bezier(0.4,0,0.2,1);
    --transition-bounce:    all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    --gradient-primary:     linear-gradient(135deg, #083F87 0%, #1a5cb8 100%);
    --gradient-yellow:      linear-gradient(135deg, #f3d052 0%, #fbbf24 100%);
    --gradient-dark:        linear-gradient(135deg, #0a1128 0%, #0f1f4a 100%);
    --gradient-hero:        linear-gradient(160deg, #ffffff 0%, #f0f4ff 60%, #e8eefc 100%);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

::selection { background: var(--primary-yellow); color: var(--dark-navy); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--deep-blue); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--mid-blue); }

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--white);
    color: var(--text-body);
    direction: rtl;
    text-align: right;
    font-size: 17px;
    line-height: 1.85;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL ANIMATION SYSTEM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ── Scroll Animation Base ── */
.aos-init {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                transform 0.65s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform;
}
.aos-init.aos-animate {
    opacity: 1;
    transform: none;
}

/* Directional variants */
.aos-init[data-aos="fade-right"]  { transform: translateX(-36px); }
.aos-init[data-aos="fade-left"]   { transform: translateX(36px);  }
.aos-init[data-aos="zoom-in"]     { transform: scale(0.88);        }
.aos-init[data-aos="flip-up"]     { transform: perspective(600px) rotateX(20deg) translateY(20px); }

.aos-init[data-aos="fade-right"].aos-animate,
.aos-init[data-aos="fade-left"].aos-animate,
.aos-init[data-aos="zoom-in"].aos-animate,
.aos-init[data-aos="flip-up"].aos-animate  { transform: none; opacity: 1; }

/* Stagger delays */
.aos-init[data-delay="100"]  { transition-delay: 0.10s; }
.aos-init[data-delay="150"]  { transition-delay: 0.15s; }
.aos-init[data-delay="200"]  { transition-delay: 0.20s; }
.aos-init[data-delay="250"]  { transition-delay: 0.25s; }
.aos-init[data-delay="300"]  { transition-delay: 0.30s; }
.aos-init[data-delay="400"]  { transition-delay: 0.40s; }
.aos-init[data-delay="500"]  { transition-delay: 0.50s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STICKY HEADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 1px 0 rgba(8,63,135,0.06), 0 4px 20px rgba(0,0,0,0.05);
    padding: 12px 0;
    transition: box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo { font-size: 1.5rem; font-weight: 800; color: var(--deep-blue); white-space: nowrap; }
.site-logo span { color: var(--primary-yellow); }

.site-nav { display: flex; gap: 8px; align-items: center; }

.site-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.site-nav a:hover { color: var(--deep-blue); background: var(--light-blue); }

.header-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-blue);
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(8,63,135,0.40);
}
.header-cta i { font-size: 0.9rem; animation: ringPhone 2.5s ease infinite; }

@keyframes ringPhone {
    0%,100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-section {
    background:
        radial-gradient(ellipse 80% 60% at 75% 10%, rgba(243,208,82,0.13) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 10% 90%, rgba(8,63,135,0.09) 0%, transparent 60%),
        var(--gradient-hero);
    padding: 55px 0 0;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-yellow);
}

/* Animated background blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-blob-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(243,208,82,0.16) 0%, transparent 65%);
    top: -250px; right: -120px;
    animation: blobFloat1 14s ease-in-out infinite;
}
.hero-blob-2 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(8,63,135,0.09) 0%, transparent 65%);
    bottom: -250px; left: -220px;
    animation: blobFloat2 18s ease-in-out infinite;
}
.hero-blob-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(26,92,184,0.10) 0%, transparent 65%);
    top: 35%; left: 38%;
    animation: blobFloat3 10s ease-in-out infinite;
}
/* 4th accent blob */
.hero-blob-4 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(243,208,82,0.18) 0%, transparent 65%);
    top: 20%; left: 15%;
    animation: blobFloat1 8s ease-in-out infinite reverse;
}
@keyframes blobFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px,-30px) scale(1.1); }
}
@keyframes blobFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-20px,20px) scale(0.95); }
}
@keyframes blobFloat3 {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(15px,-15px); }
}

/* Grid overlay pattern */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8,63,135,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,63,135,0.035) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 45px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Image Side */
.hero-image-wrap { position: relative; }

.hero-img-frame {
    position: relative;
    border-radius: 28px;
    padding: 14px;
    background: var(--white);
    box-shadow: 0 30px 70px rgba(8,63,135,0.14), 0 0 0 1px rgba(8,63,135,0.06);
}
.hero-img-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(243,208,82,0.4), rgba(8,63,135,0.15), rgba(243,208,82,0.3));
    z-index: -1;
}

.hero-main-img { border-radius: 18px; width: 100%; }

.hero-img-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    width: 130px; height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-yellow);
    animation: floating 3.5s ease-in-out infinite;
    border: 5px solid var(--white);
    z-index: 3;
}
.hero-img-badge .badge-num {
    font-weight: 900; font-size: 30px;
    color: var(--dark-navy); line-height: 1;
}
.hero-img-badge .badge-txt {
    font-weight: 800; font-size: 14px;
    color: var(--dark-navy); line-height: 1.3; text-align: center;
}
@keyframes floating {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(3deg); }
}

/* Trust Row */
.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 7px;
    background: var(--white);
    padding: 9px 16px;
    border-radius: var(--radius-full);
    font-size: 13.5px; font-weight: 700;
    color: var(--dark-navy);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8,63,135,0.06);
    transition: var(--transition);
}
.trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Text Side */
.hero-content { padding: 10px 0; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-yellow-light);
    color: #7c5a00;
    font-weight: 800; font-size: 0.9rem;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 22px;
    border: 1px solid rgba(243,208,82,0.4);
    animation: pulseYellow 3s infinite;
}
.hero-badge i { color: var(--primary-yellow); }

.hero-title {
    font-size: 46px; font-weight: 900;
    line-height: 1.3; color: var(--text-dark);
    margin-bottom: 18px;
}
.hero-title-highlight {
    color: var(--deep-blue);
    position: relative;
    display: inline-block;
}
.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 10px;
    background: var(--primary-yellow);
    opacity: 0.35;
    z-index: -1;
    border-radius: 5px;
    transform: skewX(-3deg);
}

.hero-subtitle {
    color: var(--text-body); font-size: 1.1rem;
    line-height: 1.75; font-weight: 500;
    margin: 0 0 28px;
    border-right: 3px solid var(--primary-yellow);
    padding-right: 16px;
}

.hero-features {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 32px;
}
.feature-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--white);
    color: var(--deep-blue);
    padding: 7px 15px;
    border-radius: var(--radius-full);
    font-size: 14px; font-weight: 700;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature-pill:hover { background: var(--deep-blue); color: var(--white); transform: translateY(-2px); }
.feature-pill i { color: var(--primary-yellow); font-size: 0.8rem; }
.feature-pill:hover i { color: var(--white); }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient-primary);
    color: var(--white); font-weight: 800; font-size: 1rem;
    padding: 15px 28px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-blue);
    transition: var(--transition-bounce);
    animation: pulseBlue 2.8s infinite;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(8,63,135,0.40);
    color: var(--white);
}

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--whatsapp); color: var(--white);
    font-weight: 800; font-size: 1rem;
    padding: 15px 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
    transition: var(--transition-bounce);
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(37,211,102,0.4);
}

/* Hero Wave */
.hero-wave {
    position: relative; line-height: 0; overflow: hidden;
    z-index: 2; margin-top: -2px;
}
.hero-wave svg { display: block; width: 100%; height: 70px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DARK STATS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dark-section {
    background: var(--gradient-dark);
    padding: 65px 0;
    overflow: hidden;
    position: relative;
}
.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(243,208,82,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(26,92,184,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.dark-section-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.dark-section-text h2 {
    font-size: 36px; color: var(--white); font-weight: 900;
    margin-bottom: 18px; line-height: 1.4;
    position: relative; padding-bottom: 18px;
}
.dark-section-text h2::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 60px; height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}
.dark-section-text p {
    color: var(--text-light);
    font-size: 1.05rem; margin-bottom: 28px; line-height: 1.9;
}
.dark-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient-yellow);
    color: var(--dark-navy) !important;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 900; font-size: 1.05rem;
    box-shadow: var(--shadow-yellow);
    transition: var(--transition-bounce);
}
.dark-cta-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 15px 40px rgba(243,208,82,0.50); }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.stat-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-card);
    padding: 24px 16px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: statPulse 4s ease-in-out infinite;
}
.stat-item:nth-child(2) { animation-delay: 1.3s; }
.stat-item:nth-child(3) { animation-delay: 2.6s; }
@keyframes statPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(243,208,82,0.20); }
    50%      { box-shadow: 0 0 0 10px rgba(243,208,82,0); }
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}
.stat-item:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.stat-item:hover::before { transform: scaleX(1); }

.stat-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-yellow);
}
.stat-number {
    font-size: 30px; font-weight: 900;
    color: var(--white); display: block; line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(243,208,82,0.35);
    transition: text-shadow 0.4s ease;
}
.stat-item:hover .stat-number {
    text-shadow: 0 0 35px rgba(243,208,82,0.65);
}
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* Dark Image */
.dark-section-image { position: relative; }
.dark-section-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(243,208,82,0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.dark-section-image img {
    border-radius: var(--radius-img);
    box-shadow: 8px 8px 40px rgba(0,0,0,0.40);
    width: 100%;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.dark-section-image img:hover { transform: translateY(-6px); box-shadow: 8px 14px 50px rgba(0,0,0,0.50); }

/* Dark Wave */
.dark-wave { position: relative; line-height: 0; overflow: hidden; }
.dark-wave svg { display: block; width: 100%; height: 60px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-section {
    background: linear-gradient(160deg, #eef2ff 0%, #f0f5ff 45%, #f7f8fc 100%);
    padding: 70px 0;
    position: relative;
    border-top: 4px solid var(--primary-yellow);
}
.services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(243,208,82,0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(8,63,135,0.06) 0%, transparent 45%);
    pointer-events: none;
}

.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 50px; }

.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-yellow-light);
    color: #7c5a00;
    font-weight: 700; font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(243,208,82,0.35);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 40px; font-weight: 900;
    color: var(--text-dark); margin-bottom: 16px;
    line-height: 1.3;
}
.section-title span { color: var(--deep-blue); }

.section-subtitle {
    color: var(--text-body); font-size: 1.05rem;
    max-width: 650px; margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: var(--radius-card);
    padding: 36px 30px 40px;
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
    cursor: default;
    box-shadow: 0 4px 24px rgba(8,63,135,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(243,208,82,0.12) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.service-card:hover {
    border-color: rgba(8,63,135,0.18);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::after { opacity: 1; }

/* Top accent line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    border-radius: 0 0 4px 4px;
}
.service-card:hover::before { transform: scaleX(1); }

.card-icon-wrap {
    width: 68px; height: 68px;
    background: var(--primary-yellow-light);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 22px;
    transition: var(--transition-bounce);
    border: 2px solid rgba(243,208,82,0.25);
}
.card-icon-wrap i {
    font-size: 1.7rem;
    color: var(--deep-blue);
    display: block;
    transition: color 0.3s;
}
.service-card:hover .card-icon-wrap i { color: var(--dark-navy); }
.service-card:hover .card-icon-wrap {
    background: var(--gradient-yellow);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-yellow);
    border-color: transparent;
}

.card-title {
    font-size: 1.2rem; font-weight: 800;
    color: var(--dark-navy); display: block; margin-bottom: 10px;
}
.card-desc { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE CONTENT SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-content-section {
    background: var(--white);
    padding: 50px 0 80px;
    position: relative;
}

.page-content-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}
.page-content-inner::before,
.page-content-inner::after { display: none; }



/* â”€â”€ Headings â”€â”€ */
.page-content-inner h1,
.page-content-inner .post-content h1,
.page-content-inner .post-content h2,
.page-content-inner .post-content h3,
.page-content-inner .post-content h4 {
    scroll-margin-top: 90px; /* offset for sticky header */
}

.page-content-inner .post-content h1 {
    font-size: 2.2rem; font-weight: 900;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    position: relative;
    line-height: 1.4;
}
.page-content-inner h1::after,
.page-content-inner .post-content h1::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 70px; height: 4px;
    background: var(--gradient-yellow);
    border-radius: 4px;
}

.page-content-inner h2,
.page-content-inner .post-content h2 {
    font-size: 1.55rem; font-weight: 900;
    color: var(--white);
    margin-top: 48px; margin-bottom: 24px;
    padding: 15px 20px 15px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    clear: both;
}
.page-content-inner h2::before,
.page-content-inner .post-content h2::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 6px; height: 100%;
    background: var(--primary-yellow);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.page-content-inner h2::after,
.page-content-inner .post-content h2::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 45%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
    transform: skewX(-20deg) translateX(-200%);
    pointer-events: none;
    animation: h2ShimmerSlide 5s ease-in-out infinite;
}
@keyframes h2ShimmerSlide {
    0%   { transform: skewX(-20deg) translateX(-200%); }
    40%  { transform: skewX(-20deg) translateX(350%); }
    100% { transform: skewX(-20deg) translateX(350%); }
}

.page-content-inner h3,
.page-content-inner .post-content h3 {
    font-size: 1.35rem; font-weight: 800;
    color: var(--dark-navy);
    margin-top: 28px; margin-bottom: 16px;
    padding: 12px 18px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border-right: 5px solid var(--primary-yellow);
    line-height: 1.5;
    clear: both;
    transition: background 0.3s;
}
.page-content-inner h3:hover,
.page-content-inner .post-content h3:hover { background: #eef2ff; }

.page-content-inner h4,
.page-content-inner .post-content h4 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--deep-blue);
    margin-top: 22px; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.page-content-inner h4::before,
.page-content-inner .post-content h4::before {
    content: '';
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--primary-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

/* â”€â”€ Paragraphs â”€â”€ */
.page-content-inner p,
.page-content-inner .post-content p {
    color: var(--text-body);
    margin-bottom: 22px;
    font-size: 1.05rem;
    line-height: 1.95;
}
.page-content-inner b,
.page-content-inner strong,
.page-content-inner .post-content strong {
    color: var(--dark-navy); font-weight: 800;
}

/* â”€â”€ Images â”€â”€ */
.page-content-inner img,
.page-content-inner .post-content img {
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(8,63,135,0.12);
    margin: 36px auto;
    display: block;
    max-width: 100%; height: auto;
    border: 3px solid var(--white);
    outline: 1px solid rgba(8,63,135,0.06);
    transition: var(--transition);
}
.page-content-inner img:hover,
.page-content-inner .post-content img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 60px rgba(8,63,135,0.18);
}

/* â”€â”€ Tel Links â”€â”€ */
.page-content-inner a[href^="tel:"],
.page-content-inner .post-content a[href^="tel:"] {
    display: table;
    margin: 30px auto;
    background: var(--gradient-yellow);
    color: var(--dark-navy) !important;
    padding: 13px 32px;
    font-size: 1.2rem; font-weight: 900;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-yellow);
    transition: var(--transition-bounce);
    animation: pulseYellow 2.8s infinite;
}
.page-content-inner a[href^="tel:"]:hover,
.page-content-inner .post-content a[href^="tel:"]:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 35px rgba(243,208,82,0.55);
}

/* â”€â”€ Tables (Gutenberg wp:table) â”€â”€ */
.post-content .wp-block-table,
.page-content-inner .wp-block-table {
    margin: 36px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(8,63,135,0.10);
    border: 1px solid rgba(8,63,135,0.06);
}
.post-content .wp-block-table figure,
.page-content-inner .wp-block-table figure {
    margin: 0 !important;
    border-radius: 16px;
    overflow: hidden;
}
.post-content .wp-block-table table,
.page-content-inner .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.post-content .wp-block-table thead tr th,
.page-content-inner .wp-block-table thead tr th {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 16px 20px;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: right;
    letter-spacing: 0.3px;
}
.post-content .wp-block-table thead tr th:first-child,
.page-content-inner .wp-block-table thead tr th:first-child {
    border-radius: 0 16px 0 0;
}
.post-content .wp-block-table thead tr th:last-child,
.page-content-inner .wp-block-table thead tr th:last-child {
    border-radius: 0 0 0 16px;
}
.post-content .wp-block-table tbody tr,
.page-content-inner .wp-block-table tbody tr {
    transition: background 0.2s, transform 0.2s;
}
.post-content .wp-block-table tbody tr:nth-child(even),
.page-content-inner .wp-block-table tbody tr:nth-child(even) {
    background: rgba(8,63,135,0.025);
}
.post-content .wp-block-table tbody tr:hover,
.page-content-inner .wp-block-table tbody tr:hover {
    background: rgba(243,208,82,0.10);
}
.post-content .wp-block-table tbody td,
.page-content-inner .wp-block-table tbody td {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(8,63,135,0.06);
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.6;
}
.post-content .wp-block-table tbody td:first-child,
.page-content-inner .wp-block-table tbody td:first-child {
    font-weight: 700;
    color: var(--dark-navy);
}
.post-content .wp-block-table tbody td:last-child,
.page-content-inner .wp-block-table tbody td:last-child {
    color: var(--deep-blue);
    font-weight: 600;
}
.post-content .wp-block-table tbody tr:last-child td,
.page-content-inner .wp-block-table tbody tr:last-child td {
    border-bottom: none;
}

/* â”€â”€ Lists (wp:list blocks) â”€â”€ */
.post-content .wp-block-list,
/* ═══ Lists - all ul/li in content area ═══ */
.page-content-section ul,
.page-content-inner ul,
.post-content ul,
.post-content .wp-block-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 24px !important;
}
.page-content-section ul li,
.page-content-inner ul li,
.page-content-inner li,
.post-content ul li,
.post-content li,
.post-content .wp-block-list li,
.post-content .wp-block-list-item {
    padding: 10px 14px 10px 10px;
    margin-bottom: 8px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
    border-right: 3px solid transparent;
    transition: var(--transition);
    list-style: none !important;
}
.page-content-section ul li:hover,
.page-content-inner ul li:hover,
.page-content-inner li:hover,
.post-content ul li:hover,
.post-content li:hover,
.post-content .wp-block-list li:hover,
.post-content .wp-block-list-item:hover {
    background: #eef2ff;
    border-right-color: var(--primary-yellow);
}
.page-content-section ul li::before,
.page-content-inner ul li::before,
.page-content-inner li::before,
.post-content ul li::before,
.post-content li::before,
.post-content .wp-block-list li::before,
.post-content .wp-block-list-item::before {
    content: '\2666';
    color: var(--primary-yellow);
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 7px;
    display: inline-block;
    min-width: 12px;
}

/* â”€â”€ Premium SEO Intro â”€â”€ */
/* ── Premium SEO Intro ── */
.premium-seo-intro {
    display: flex; align-items: center; gap: 48px;
    margin-bottom: 60px;
    padding: 48px 44px;
    border-radius: 28px;
    background: linear-gradient(145deg, #f4f7ff 0%, #ffffff 55%, #fdf9ed 100%);
    border: 1px solid rgba(8,63,135,0.09);
    box-shadow: 0 8px 40px rgba(8,63,135,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}
/* Top shimmer bar */
.premium-seo-intro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-blue) 0%, var(--primary-yellow) 50%, var(--deep-blue) 100%);
    background-size: 200% 100%;
    animation: shimmerLine 4s linear infinite;
}
/* Decorative quote mark */
.premium-seo-intro::after {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -10px; left: 20px;
    font-size: 7rem;
    color: var(--deep-blue);
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}

.intro-content { flex: 1; position: relative; z-index: 1; }
.intro-content h2 {
    margin-top: 0 !important;
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 16px 22px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
    margin-bottom: 22px !important;
    box-shadow: 0 6px 20px rgba(8,63,135,0.25) !important;
}
.intro-content h3 {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--deep-blue) !important;
    border-right: 4px solid var(--primary-yellow) !important;
    padding: 10px 14px !important;
    margin: 20px 0 12px !important;
    background: rgba(8,63,135,0.03) !important;
    border-radius: 0 8px 8px 0 !important;
}
.intro-content p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 12px;
}

.intro-media { flex: 0 0 40%; position: relative; z-index: 1; }
.intro-media p { margin: 0 !important; }
/* Decorative frame behind image */
.intro-media::before {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0.12;
    z-index: 0;
    transition: var(--transition);
}
.intro-media:hover::before { opacity: 0.20; inset: 16px -16px -16px 16px; }
.intro-media img {
    margin: 0 !important;
    width: 100%; max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(8,63,135,0.18);
    border: 4px solid var(--white);
    transition: var(--transition-bounce);
    position: relative; z-index: 1;
}
.intro-media img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(8,63,135,0.22);
}

/* â”€â”€ Two-column paragraph pairs â”€â”€ */
.para-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
    align-items: start;
}
.para-pair p { margin-bottom: 0; }

/* â”€â”€ H3 two-column grid (consecutive H3 sections) â”€â”€ */
.h3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.h3-grid-item {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    border-right: 5px solid var(--primary-yellow);
    padding: 18px 18px 20px;
}
.h3-grid-item h3 {
    margin: 0 0 12px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    font-size: 1.1rem !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURE CARDS  (Ù„Ù…Ø§Ø°Ø§ Ù†Ø¬Ù…Ø© Ø§Ù„Ø¬Ù†ÙˆØ¨)
   Two-tone: blue gradient header + white body
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 28px 0 36px;
}
.feature-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(8,63,135,0.10);
    border: 1px solid rgba(8,63,135,0.07);
    transition: var(--transition);
    cursor: default;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(8,63,135,0.18);
    border-color: rgba(8,63,135,0.14);
}
/* Coloured header */
.fc-head {
    background: var(--gradient-primary);
    padding: 22px 14px 18px;
    text-align: center;
    position: relative;
}
.fc-num {
    position: absolute;
    top: 6px; left: 10px;
    font-size: 2rem; font-weight: 900;
    color: rgba(255,255,255,0.14);
    line-height: 1; pointer-events: none;
}
.fc-icon {
    width: 58px; height: 58px;
    background: rgba(255,255,255,0.14);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255,255,255,0.22);
    transition: var(--transition-bounce);
}
.fc-icon i { font-size: 1.5rem; color: var(--white); }
.feature-card:hover .fc-head { background: linear-gradient(135deg,#062d62,#1a5cb8); }
.feature-card:hover .fc-icon {
    background: var(--gradient-yellow);
    transform: scale(1.12) rotate(6deg);
    border-color: transparent;
}
.feature-card:hover .fc-icon i { color: var(--dark-navy); }
/* White body */
.fc-body { padding: 16px 14px 20px; text-align: center; }
.fc-text {
    font-size: 0.82rem; color: var(--text-body);
    line-height: 1.82; margin: 0;
}
@media (max-width: 991px) {
    .feature-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .feature-cards { grid-template-columns: 1fr; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESS STEPS FLOW
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.steps-flow {
    display: flex;
    align-items: stretch;
    margin: 32px 0 36px;
    position: relative;
}
.step-card {
    flex: 1;
    min-width: 0;
    background: var(--white);
    border: 1px solid rgba(8,63,135,0.09);
    border-radius: 18px;
    padding: 36px 14px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    box-shadow: var(--shadow-sm);
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(8,63,135,0.15);
}
.step-num {
    position: absolute;
    top: 0; right: 50%;
    transform: translateX(50%);
    width: 34px; height: 34px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 0 0 12px 12px;
    font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
    border-top: none;
}
.step-icon-wrap {
    width: 60px; height: 60px;
    background: var(--primary-yellow-light);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 16px auto 14px;
    border: 2px solid rgba(243,208,82,0.25);
    transition: var(--transition-bounce);
}
.step-icon-wrap i { font-size: 1.55rem; color: var(--deep-blue); transition: color 0.3s; }
.step-card:hover .step-icon-wrap {
    background: var(--gradient-yellow);
    transform: scale(1.12) rotate(6deg);
    box-shadow: var(--shadow-yellow);
    border-color: transparent;
}
.step-card:hover .step-icon-wrap i { color: var(--dark-navy); }
.step-title {
    font-weight: 800; font-size: 0.9rem;
    color: var(--dark-navy); margin-bottom: 10px;
    line-height: 1.4;
}
.step-desc {
    font-size: 0.8rem; color: var(--text-body);
    line-height: 1.75;
}
.step-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 0 5px; flex-shrink: 0;
    color: var(--primary-yellow);
    font-size: 1.1rem;
    animation: arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}
@media (max-width: 991px) {
    .steps-flow { flex-wrap: wrap; gap: 14px; }
    .step-card { flex: 0 0 calc(50% - 7px); }
    .step-arrow { display: none; }
}
@media (max-width: 480px) {
    .step-card { flex: 0 0 100%; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTENT ACCORDION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.acc-item {
    margin-bottom: 7px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8,63,135,0.07);
}
.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 20px 15px 16px;
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: right;
    direction: rtl;
    position: relative;
    transition: filter 0.2s;
}
.acc-header:hover { filter: brightness(1.12); }
.acc-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 5px; height: 100%;
    background: var(--primary-yellow);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.acc-title { flex: 1; text-align: right; line-height: 1.4; }
.acc-icon {
    font-size: 0.9rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.acc-item.acc-open .acc-icon { transform: rotate(180deg); }
.acc-body {
    overflow: hidden;
    transition: height 0.42s cubic-bezier(0.4,0,0.2,1);
    background: var(--white);
}
.acc-body-inner { padding: 22px 28px 28px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 60px 24px 30px;
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(243,208,82,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(26,92,184,0.10) 0%, transparent 50%);
    pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.footer-logo {
    font-size: 2rem; font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 12px;
    display: inline-block;
}
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 30px; }

.footer-links {
    display: flex; justify-content: center; gap: 8px;
    flex-wrap: wrap; margin-bottom: 30px;
}
.footer-links a {
    color: rgba(255,255,255,0.65); font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.10);
    transition: var(--transition);
}
.footer-links a:hover {
    background: rgba(243,208,82,0.15);
    color: var(--primary-yellow);
    border-color: rgba(243,208,82,0.3);
}

.social-icons-container {
    display: flex; justify-content: center; gap: 10px;
    flex-wrap: wrap; margin-bottom: 30px;
}
.social-icons-container a, .social-icons-container span.social-shape {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    background: rgba(255,255,255,0.07);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.12) !important;
    transition: var(--transition);
}
.social-icons-container a br, .social-icons-container span.social-shape br { display: none; }
.social-icons-container a:hover {
    background: var(--primary-yellow);
    color: var(--dark-navy) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
    border-color: var(--primary-yellow) !important;
}
.social-icons-container span.social-shape:hover {
    background: rgba(255,255,255,0.12); /* Subtle hover for shapes since they aren't clickable */
}
.social-icons-container a i, .social-icons-container span.social-shape i { font-size: 1rem; }
.social-icons-container svg { width: 15px; height: 15px; fill: currentColor; }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.10);
    margin: 20px 0;
}
.footer-bottom { font-size: 0.88rem; color: rgba(255,255,255,0.35); }
.footer-phone-link { color: var(--primary-yellow) !important; font-weight: 800; font-size: 1.1rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING WHATSAPP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.floating-whatsapp {
    position: fixed;
    bottom: 28px; left: 28px;
    background: var(--whatsapp); color: var(--white);
    width: 62px; height: 62px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    z-index: 9998;
    text-decoration: none;
    animation: pulseGreen 2.2s infinite;
    transition: var(--transition);
}
.floating-whatsapp:hover { background: #128C7E; transform: scale(1.1); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STICKY MOBILE CALL BAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sticky-call-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9997;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-call-bar a {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 50%; padding: 16px;
    font-weight: 800; font-size: 1rem;
    color: var(--white);
    text-decoration: none;
}
.sticky-bar-call { background: var(--gradient-primary); }
.sticky-bar-whatsapp { background: var(--whatsapp); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-section-wrapper { margin: 50px 0; }
.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px,1fr));
    gap: 20px; margin-top: 24px;
}
.blog-grid-container article {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-grid-container article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(8,63,135,0.12);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes pulseBlue {
    0%   { box-shadow: 0 0 0 0 rgba(8,63,135,0.50); }
    70%  { box-shadow: 0 0 0 14px rgba(8,63,135,0); }
    100% { box-shadow: 0 0 0 0 rgba(8,63,135,0); }
}
@keyframes pulseYellow {
    0%   { box-shadow: 0 0 0 0 rgba(243,208,82,0.60); }
    70%  { box-shadow: 0 0 0 14px rgba(243,208,82,0); }
    100% { box-shadow: 0 0 0 0 rgba(243,208,82,0); }
}
@keyframes pulseGreen {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.60); }
    70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes auroraGlow {
    0%   { transform: scale(1) translate(0,0); opacity: 0.8; }
    50%  { transform: scale(1.06) translate(10px,-12px); opacity: 1; }
    100% { transform: scale(0.96) translate(-8px,12px); opacity: 0.7; }
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 991px
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 24px 50px;
        text-align: center;
        gap: 40px;
    }
    .hero-image-wrap { order: -1; max-width: 480px; margin: 0 auto; }
    .hero-features { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .hero-subtitle { border: none; padding: 0; }
    .dark-section-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .dark-section-text h2::after { left: 50%; transform: translateX(-50%); right: auto; }
    .services-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
    .site-nav { display: none; }
    .premium-seo-intro { flex-direction: column; gap: 28px; }
    .intro-media { flex: 0 0 100%; width: 100%; }
    .page-content-inner { padding: 0 20px; }
    .para-pair { grid-template-columns: 1fr; gap: 0; }
    .h3-grid { grid-template-columns: 1fr; }
    .sticky-call-bar { display: flex; }
    .floating-whatsapp { bottom: 80px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 767px
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 767px) {
    .hero-title { font-size: 34px; }
    .hero-img-badge { width: 100px; height: 100px; bottom: -18px; left: -12px; }
    .hero-img-badge .badge-num { font-size: 22px; }
    .hero-img-badge .badge-txt { font-size: 11px; }
    .section-title { font-size: 30px; }
    .dark-section { padding: 60px 0; }
    .stats-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
    .stat-number { font-size: 22px; }
    .services-grid { grid-template-columns: 1fr; }
    .page-content-inner { padding: 30px 20px; border-radius: 18px; }
    .page-content-inner h1,
.page-content-inner .post-content h1 { font-size: 1.6rem; }
    .page-content-inner h2,
.page-content-inner .post-content h2 { font-size: 1.3rem; padding: 14px 16px; }
    .page-content-inner h3,
.page-content-inner .post-content h3 { font-size: 1.15rem; }
    .post-content .wp-block-table table { font-size: 0.85rem; }
    .post-content .wp-block-table thead tr th,
    .post-content .wp-block-table tbody td { padding: 10px 12px; }
    .dark-section-inner { padding: 0 20px; }
    .hero-wave svg { height: 40px; }
    .dark-wave svg { height: 40px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .trust-item { font-size: 12px; padding: 7px 12px; }
    .hero-trust-row { gap: 6px; }
}

/* ── Steps Section Wrapper ── */
.steps-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    border-radius: var(--radius-card);
    padding: 48px 36px 40px;
    margin: 50px 0;
    border: 1px solid rgba(8,63,135,0.08);
    position: relative;
    overflow: hidden;
}
.steps-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--deep-blue), var(--primary-yellow), var(--deep-blue));
    background-size: 200% 100%;
    animation: shimmerLine 3s linear infinite;
}
@keyframes shimmerLine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.steps-section-title {
    text-align: center;
    color: var(--deep-blue) !important;
    font-size: 1.7rem !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
    background: none !important;
    padding: 0 !important;
}
.steps-intro {
    text-align: center;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 36px;
    opacity: 0.85;
}

/* ── Modern Steps Timeline ── */
.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    margin: 40px 0 60px;
}
.modern-step {
    flex: 1;
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 30px 15px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(8,63,135,0.04);
    transition: var(--transition-bounce);
    overflow: hidden;
}
.modern-step::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0); transition: transform 0.4s;
}
.modern-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.modern-step:hover::before { transform: scaleX(1); }

.modern-step .step-icon-wrap {
    width: 65px; height: 65px;
    margin: 0 auto 20px;
    background: var(--light-blue);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--deep-blue);
    font-size: 1.6rem;
    position: relative;
    transition: var(--transition-bounce);
    transform: rotate(45deg);
}
.modern-step .step-icon-wrap i { transform: rotate(-45deg); transition: color 0.3s; }
.modern-step:hover .step-icon-wrap {
    background: var(--gradient-yellow);
    transform: rotate(0deg);
    border-radius: 50%;
    box-shadow: var(--shadow-yellow);
}
.modern-step:hover .step-icon-wrap i {
    color: var(--dark-navy);
    transform: rotate(0deg);
}

.step-badge {
    position: absolute;
    top: -10px; right: -10px;
    background: var(--dark-navy);
    color: var(--white);
    width: 26px; height: 26px;
    border-radius: 50%;
    font-size: 13px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
    transform: rotate(-45deg); /* Counter-rotate inside rhombus */
    transition: transform 0.4s;
}
.modern-step:hover .step-badge {
    transform: rotate(0deg);
}

.modern-step .step-title {
    font-size: 1.15rem; font-weight: 800; color: var(--dark-navy) !important;
    margin: 0 0 10px 0 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
}
.modern-step .step-desc {
    font-size: 0.95rem; color: var(--text-body); line-height: 1.7;
    margin: 0 !important;
}

.step-connector {
    display: flex; align-items: center; justify-content: center;
    color: rgba(8,63,135,0.2);
    font-size: 1.5rem;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .steps-container { flex-direction: column; align-items: center; gap: 20px; }
    .modern-step { width: 100%; max-width: 400px; padding: 20px; }
    .step-connector { display: none; }
}

/* â”€â”€ Step Phone Link Fix â”€â”€ */
.page-content-inner a.step-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: var(--deep-blue) !important;
    padding: 0 !important;
    margin: 5px 0 0 0 !important;
    border: none !important;
    box-shadow: none !important;
    animation: none !important;
    font-weight: 900;
    font-size: 1.15rem;
    text-decoration: none !important;
    transition: var(--transition-bounce);
}
.page-content-inner a.step-phone-link span {
    letter-spacing: 2px;
}
.page-content-inner a.step-phone-link i {
    color: var(--primary-yellow) !important;
    font-size: 1.1rem;
    margin-left: 8px;
    animation: none !important;
}
.page-content-inner a.step-phone-link:hover {
    color: var(--primary-yellow) !important;
    transform: scale(1.05);
}

/* â”€â”€ Modern Reviews Grid â”€â”€ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: 0 4px 15px rgba(8,63,135,0.03);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '\f10e'; /* fa-quote-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px; right: -5px; /* RTL quote mark top right */
    font-size: 5rem;
    color: var(--primary-yellow-light);
    opacity: 0.15;
    z-index: 0;
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243,208,82,0.4);
}
.review-card:hover::before {
    opacity: 0.3;
    transform: scale(1.1);
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.reviewer-avatar {
    width: 48px; height: 48px;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 900;
}
.reviewer-details h4 {
    margin: 0 !important;
    font-size: 1.05rem !important; font-weight: 800 !important; color: var(--dark-navy) !important;
    background: none !important; padding: 0 !important; border: none !important;
}
.review-stars {
    color: var(--primary-yellow);
    font-size: 0.75rem;
    margin-top: 5px;
    display: flex; gap: 2px;
}
.review-text {
    font-size: 0.95rem; color: var(--text-body); line-height: 1.8;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}
/* ── Reviews Section Wrapper ── */
.reviews-section {
    margin: 50px 0;
}
.reviews-section-title {
    text-align: center;
    font-size: 1.7rem !important;
    font-weight: 900 !important;
    color: var(--deep-blue) !important;
    margin-bottom: 8px !important;
    background: none !important; padding: 0 !important;
}
.reviews-section-sub {
    text-align: center;
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 36px;
    opacity: 0.8;
}

/* ── Review Card — rv-* classes ── */
.rv-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    position: relative; z-index: 1;
}
.rv-avatar {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 900;
}
.rv-meta {
    flex: 1;
    display: flex; flex-direction: column; gap: 3px;
}
.rv-name {
    font-size: 1rem; font-weight: 800; color: var(--dark-navy);
}
.rv-area {
    font-size: 0.82rem; color: var(--deep-blue); opacity: 0.75;
}
.rv-area i { margin-left: 4px; }
.rv-date {
    font-size: 0.78rem; color: var(--text-body); opacity: 0.6;
    white-space: nowrap; margin-top: 2px;
}
.rv-stars {
    color: var(--primary-yellow);
    font-size: 0.85rem;
    display: flex; gap: 3px;
    margin-bottom: 12px;
    position: relative; z-index: 1;
}
.rv-text {
    font-size: 0.93rem; line-height: 1.85; color: var(--text-body);
    margin: 0 !important;
    position: relative; z-index: 1;
}
.rv-verified {
    margin-top: 14px;
    font-size: 0.78rem; color: #22c55e; font-weight: 700;
    display: flex; align-items: center; gap: 5px;
    position: relative; z-index: 1;
}

/* ── Modern FAQ Accordion ── */
.frequently-asked-questions {
    margin: 30px 0 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.modern-faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(8,63,135,0.03);
}
.modern-faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: rgba(8,63,135,0.2);
}
.faq-question {
    padding: 20px 24px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-navy);
    cursor: pointer;
    list-style: none; /* remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition);
    border-radius: var(--radius-card);
}
.faq-question::-webkit-details-marker {
    display: none; /* Safari */
}
.faq-question:hover {
    background: rgba(243,208,82,0.05);
}
.modern-faq-item[open] .faq-question {
    background: var(--gradient-primary);
    color: var(--white);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-icon i {
    transition: transform 0.4s ease;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}
.modern-faq-item[open] .faq-icon i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 24px;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    background: var(--white);
    border-top: 1px dashed rgba(8,63,135,0.1);
    border-bottom-left-radius: var(--radius-card);
    border-bottom-right-radius: var(--radius-card);
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Routes Grid ── */
.routes-section {
    background: linear-gradient(160deg, #0a1128 0%, #0f1f4a 100%);
    border-radius: 24px;
    padding: 36px 32px 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.routes-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(243,208,82,0.10) 0%, transparent 50%),
                      radial-gradient(circle at 90% 20%, rgba(26,92,184,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.routes-section-title {
    font-size: 1.3rem !important; font-weight: 900 !important;
    color: var(--white) !important;
    margin-bottom: 8px !important;
    background: none !important; padding: 0 !important; border: none !important;
    position: relative; z-index: 1;
}
.routes-section-title::after {
    content: ''; display: block;
    width: 50px; height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px; margin-top: 8px;
}
.routes-intro {
    color: rgba(255,255,255,0.65); font-size: 0.92rem;
    margin: 0 0 28px; line-height: 1.7;
    position: relative; z-index: 1;
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    position: relative; z-index: 1;
}
.route-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-card);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: var(--transition-bounce);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.route-card::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 4px; height: 100%;
    background: var(--gradient-yellow);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    transform: scaleY(0);
    transition: transform 0.35s ease;
    transform-origin: bottom;
}
.route-card:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(243,208,82,0.30);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.route-card:hover::after { transform: scaleY(1); }
.route-endpoint {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    flex: 1; text-align: center;
}
.route-endpoint i {
    font-size: 1rem;
    margin-bottom: 2px;
}
.route-from i { color: var(--primary-yellow); }
.route-to i   { color: #60a5fa; }
.route-endpoint span {
    font-size: 0.88rem; font-weight: 800;
    color: var(--white); line-height: 1.3;
}
.route-endpoint .route-lbl {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.route-arrow-wrap {
    width: 34px; height: 34px;
    background: rgba(243,208,82,0.15);
    border: 1px solid rgba(243,208,82,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-yellow);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.route-card:hover .route-arrow-wrap {
    background: var(--gradient-yellow);
    color: var(--dark-navy);
    border-color: transparent;
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(243,208,82,0.40);
}

/* ── Neighborhoods Grid ── */
.neighborhoods-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 50%, #fffdf0 100%);
    border-radius: 24px;
    padding: 36px 32px 40px;
    margin: 40px 0;
    border: 1px solid rgba(8,63,135,0.07);
    box-shadow: 0 4px 24px rgba(8,63,135,0.05);
    position: relative;
    overflow: hidden;
}
.neighborhoods-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--primary-yellow));
    border-radius: 24px 24px 0 0;
}
.neighborhoods-section-title {
    font-size: 1.3rem !important; font-weight: 900 !important;
    color: var(--dark-navy) !important;
    margin-bottom: 8px !important;
    background: none !important; padding: 0 !important; border: none !important;
    display: flex; align-items: center; gap: 10px;
}
.neighborhoods-section-title::before {
    content: ''; display: inline-block;
    width: 5px; height: 24px;
    background: var(--primary-yellow);
    border-radius: 3px; flex-shrink: 0;
}
.neighborhoods-count {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.78rem; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    margin-right: 8px; vertical-align: middle;
}
.neighborhoods-intro {
    color: var(--text-body); font-size: 0.95rem;
    margin: 0 0 24px; opacity: 0.8; line-height: 1.7;
}
.neighborhoods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.nh-tag {
    background: rgba(255,255,255,0.85);
    color: var(--dark-navy);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid rgba(8,63,135,0.12);
    transition: var(--transition-bounce);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(8,63,135,0.05);
    animation-delay: var(--nh-delay, 0s);
}
.nh-tag::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nh-tag i, .nh-tag-text { position: relative; z-index: 1; }
.nh-tag i { color: var(--deep-blue); font-size: 0.8rem; transition: color 0.3s; }
.nh-tag:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 20px rgba(8,63,135,0.22);
    border-color: transparent;
}
.nh-tag:hover::before { opacity: 1; }
.nh-tag:hover i { color: var(--primary-yellow); }
/* Visual variety via nth-child tints */
.nh-tag:nth-child(3n+1) { border-color: rgba(243,208,82,0.35); background: rgba(255,252,235,0.9); }
.nh-tag:nth-child(3n+2) { border-color: rgba(8,63,135,0.15); }
.nh-tag:nth-child(3n)   { border-color: rgba(26,92,184,0.18); background: rgba(240,245,255,0.9); }
/* â”€â”€ Elegant List Blocks â”€â”€ */
.elegant-list-container {
    margin: 40px 0;
}
.elegant-list-intro {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}
.elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.elegant-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}
.elegant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 185, 0, 0.15);
    border-color: rgba(254, 185, 0, 0.5);
}
.elegant-icon {
    font-size: 24px;
    color: var(--primary-color);
    background: rgba(254, 185, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.elegant-card:nth-child(even) .elegant-icon {
    color: var(--dark-navy);
    background: rgba(10, 17, 40, 0.05);
}
.elegant-content {
    flex: 1;
}
.elegant-content p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}
.elegant-content strong {
    display: block;
    color: var(--dark-navy);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .elegant-grid {
        grid-template-columns: 1fr;
    }
}

/* â”€â”€ Content Images formatting â”€â”€ */
.wp-block-image {
    max-width: 600px;
    margin: 45px auto;
    text-align: center;
    position: relative;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wp-block-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(254, 185, 0, 0.15); /* Yellow glow on hover */
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.wp-block-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

@media (max-width: 768px) {
    .wp-block-image {
        max-width: 100%;
        margin: 30px 0;
        border-radius: 12px;
    }
    .wp-block-image img, .wp-block-image::after {
        border-radius: 12px;
    }
}








/* ── SENIOR UI/UX & FRONTEND EXPERT DESIGN (/home-2/) ── */
:root {
    --h2-primary-color: #0f172a;      /* 30% - Trust & Security (Deep Navy) */
    --h2-secondary-color: #f8fafc;    /* 60% - Space & Comfort (Soft Slate White) */
    --h2-card-bg: #ffffff;
    --h2-accent-color: #d97706;       /* 10% - Interactive CTA (Dark Golden Amber) */
    --h2-text-main: #334155;          /* AAA Text color */
    --h2-text-light: #f8fafc;         /* AAA Text on dark */
    
    --h2-shadow-soft: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
    --h2-shadow-hover: 0 20px 30px -5px rgba(15, 23, 42, 0.1), 0 10px 20px -8px rgba(15, 23, 42, 0.05);
    --h2-transition: all 0.3s ease-in-out;
}

.home-2-clean-section { padding: 0 !important; background: var(--h2-secondary-color) !important; }
.home-2-clean-inner { max-width: 100% !important; margin: 0 !important; padding: 0 !important; box-shadow: none !important; border:none !important; }
.home-2-clean-post { padding: 0 !important; }

/* ── 1. Hero Section ── */
.detailed-hero {
    background: var(--h2-primary-color);
    padding: 140px 20px 100px;
    text-align: center;
    position: relative;
    border-bottom: 5px solid var(--h2-accent-color);
}
.detailed-hero-content { max-width: 900px; margin: 0 auto; }
.d-badge {
    display: inline-flex; align-items: center;
    background: rgba(217, 119, 6, 0.15); color: #fcd34d;
    padding: 8px 24px; border-radius: 50px; font-size: 1rem; font-weight: 800;
    margin-bottom: 30px; border: 1px solid rgba(217, 119, 6, 0.3);
}
.d-badge svg { margin-left: 8px; }
.d-title {
    font-size: 3.5rem; font-weight: 900; margin-bottom: 25px;
    color: var(--h2-text-light) !important; line-height: 1.4;
}
.d-subtitle {
    font-size: 1.25rem; color: #cbd5e1 !important; line-height: 1.8;
    margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.btn-hero-solid {
    display: inline-flex; align-items: center;
    background: var(--h2-accent-color); color: #ffffff !important;
    padding: 16px 40px; font-size: 1.25rem; font-weight: 900;
    border-radius: 8px; text-decoration: none !important;
    transition: var(--h2-transition); box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}
.btn-hero-solid svg { margin-left: 10px; }
.btn-hero-solid:hover {
    transform: translateY(-4px); background: #b45309;
    box-shadow: 0 12px 25px rgba(217, 119, 6, 0.4); color: #fff !important;
}

/* ── 2. Services Wrapper ── */
.detailed-services-wrap { padding: 80px 20px; background: var(--h2-secondary-color); }
.d-service-row {
    display: flex; align-items: center; gap: 60px;
    max-width: 1200px; margin: 0 auto 60px; padding: 50px;
    background: var(--h2-card-bg); border-radius: 20px;
    box-shadow: var(--h2-shadow-soft); border: 1px solid rgba(15, 23, 42, 0.03);
    transition: var(--h2-transition);
}
.d-service-row:hover {
    box-shadow: var(--h2-shadow-hover); transform: translateY(-5px);
    border-color: rgba(217, 119, 6, 0.2);
}
.d-service-row.reverse { flex-direction: row-reverse; }

.d-service-icon-col { flex: 0 0 300px; display: flex; justify-content: center; }
.d-icon-shape {
    width: 220px; height: 220px; background: var(--h2-secondary-color);
    border-radius: 30px; display: flex; align-items: center; justify-content: center;
    color: var(--h2-primary-color); transition: var(--h2-transition);
    border: 2px solid rgba(15, 23, 42, 0.05);
}
.d-icon-shape svg { width: 80px; height: 80px; transition: var(--h2-transition); }
.d-service-row:hover .d-icon-shape {
    background: var(--h2-primary-color); border-color: var(--h2-primary-color);
    color: var(--h2-text-light);
}

.d-service-text-col { flex: 1; }
.d-service-text-col h2 {
    font-size: 2.2rem; color: var(--h2-primary-color) !important;
    font-weight: 900; margin-bottom: 20px; background: none !important; padding:0 !important; border:none !important;
}
.d-intro-text {
    font-size: 1.15rem; color: var(--h2-text-main) !important;
    line-height: 1.8; margin-bottom: 25px;
}
.d-features-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.d-features-list li {
    font-size: 1.1rem; color: var(--h2-text-main) !important; margin-bottom: 16px;
    line-height: 1.7; display: flex; align-items: flex-start;
    background: transparent !important; padding: 0 !important; border: none !important;
}
.d-features-list li::before { display: none !important; }
.d-chk {
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--h2-accent-color); flex-shrink: 0; margin-left: 12px; margin-top: 4px;
}
.d-features-list li .d-chk svg { width: 22px; height: 22px; }
.d-features-list li strong { color: var(--h2-primary-color) !important; font-weight: 800; margin-left: 6px; }

/* ── 3. Trust Banner ── */
.d-trust-banner { background: var(--h2-primary-color); padding: 60px 20px; }
.d-trust-inner {
    max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 30px;
}
.d-trust-banner svg { color: var(--h2-accent-color); }
.d-trust-inner h3 {
    font-size: 2.2rem; font-weight: 900; margin-bottom: 10px;
    color: var(--h2-text-light) !important; border:none !important; background:none !important; padding:0 !important;
}
.d-trust-inner p { font-size: 1.2rem; color: #cbd5e1 !important; line-height: 1.7; margin: 0; }

/* ── 4. Bottom CTA ── */
.d-bottom-action { background: var(--h2-secondary-color); padding: 100px 20px; text-align: center; }
.d-bottom-action h2 {
    font-size: 2.5rem; color: var(--h2-primary-color) !important;
    font-weight: 900; margin-bottom: 20px; border:none !important; background:none !important; padding:0 !important;
}
.d-bottom-action p {
    font-size: 1.25rem; color: var(--h2-text-main) !important;
    max-width: 700px; margin: 0 auto 40px; line-height: 1.8;
}
.btn-action-green {
    display: inline-flex; align-items: center; background: #059669; color: #ffffff !important;
    padding: 16px 40px; border-radius: 8px; font-size: 1.25rem; font-weight: bold;
    text-decoration: none !important; transition: var(--h2-transition);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2); margin: 0 10px 15px;
}
.btn-action-green svg { margin-left: 10px; }
.btn-action-green:hover { background: #047857; transform: translateY(-4px); box-shadow: 0 12px 25px rgba(5, 150, 105, 0.3); }

.btn-action-outline {
    display: inline-flex; align-items: center; background: transparent;
    color: var(--h2-primary-color) !important; padding: 14px 40px; border-radius: 8px;
    font-size: 1.25rem; font-weight: bold; text-decoration: none !important;
    border: 2px solid var(--h2-primary-color); transition: var(--h2-transition); margin: 0 10px 15px;
}
.btn-action-outline svg { margin-left: 10px; }
.btn-action-outline:hover { background: var(--h2-primary-color); color: #ffffff !important; transform: translateY(-4px); }

/* Responsiveness */
@media (max-width: 992px) {
    .d-service-row, .d-service-row.reverse { flex-direction: column; text-align: center; }
    .d-features-list li { text-align: right; }
    .d-icon-shape { width: 160px; height: 160px; }
    .d-icon-shape svg { width: 60px; height: 60px; }
    .d-trust-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .d-title { font-size: 2.2rem; }
    .d-service-text-col h2 { font-size: 1.8rem; }
    .d-service-row { padding: 30px 20px; gap: 30px; margin-bottom: 40px; }
    .btn-action-green, .btn-action-outline { display: flex; justify-content: center; margin: 15px auto; max-width: 320px; }
}


/* ── AWWWARDS PREMIUM UI & BENTO LAYOUT OVERRIDE ── */
/* Convert Services into a Bento Grid */
.detailed-services-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px;
    background: transparent !important;
}

/* Premium Card Base (The Bento Item) */
.d-service-row {
    display: flex;
    flex-direction: column !important; /* Stack vertically for standard grid items */
    align-items: flex-start !important;
    gap: 30px !important;
    padding: 40px !important;
    margin: 0 !important; /* Remove old margin */
    background: #ffffff !important;
    border-radius: 32px !important; /* Large soft radius */
    border: 1px solid rgba(0, 0, 0, 0.04) !important; /* Invisible border */
    /* Modern Soft Depth Shadow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02), 0 24px 50px -12px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Awwwards specific bezier */
    position: relative;
    overflow: hidden;
}

/* Bento Sizing: 1st and 5th card span full width to create a cool layout */
.d-service-row:nth-child(1),
.d-service-row:nth-child(5) {
    grid-column: 1 / -1;
    flex-direction: row !important;
    align-items: center !important;
}

/* Hover Mechanics */
.d-service-row:hover {
    transform: translateY(-8px) !important; /* Smooth lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03), 0 35px 60px -15px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(217, 119, 6, 0.15) !important;
}

/* Premium Icon Container with Glow & Gradient */
.d-service-icon-col {
    flex: 0 0 auto !important;
    width: 100%;
}
.d-service-row:nth-child(1) .d-service-icon-col,
.d-service-row:nth-child(5) .d-service-icon-col {
    width: 250px;
}

.d-icon-shape {
    width: 140px !important;
    height: 140px !important;
    border-radius: 28px !important;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(217, 119, 6, 0.02) 100%) !important;
    border: 1px solid rgba(217, 119, 6, 0.1) !important;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.d-service-row:nth-child(1) .d-icon-shape,
.d-service-row:nth-child(5) .d-icon-shape {
    width: 200px !important;
    height: 200px !important;
}

/* Glassmorphism Glow Effect */
.d-icon-shape::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.d-service-row:hover .d-icon-shape::before {
    opacity: 1; /* Glow intensifies on hover */
}

/* Icon Hover scaling */
.d-service-row:hover .d-icon-shape {
    transform: scale(1.05) !important;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(217, 119, 6, 0.05) 100%) !important;
}
.d-service-row:hover .d-icon-shape svg {
    color: var(--h2-accent-color) !important; /* Keep it amber, dont turn white */
    transform: scale(1.1);
}

/* Typography Enhancements */
.d-service-text-col {
    width: 100%;
}
.d-service-text-col h2 {
    font-size: 1.8rem !important;
    color: #111827 !important; /* Dark bold for title */
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 16px !important;
}
.d-service-row:nth-child(1) h2,
.d-service-row:nth-child(5) h2 {
    font-size: 2.2rem !important;
}
.d-intro-text {
    font-size: 1.1rem !important;
    color: #4B5563 !important; /* Highly readable gray */
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
}

/* Custom Checkmark Lists */
.d-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.d-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.05rem !important;
    color: #4B5563 !important;
    line-height: 1.6 !important;
}
.d-features-list li strong {
    color: #111827 !important; /* Pop the bold text */
}

/* Circular Soft Background for Checkmark */
.d-chk {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(217, 119, 6, 0.1) !important;
    color: #d97706 !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}
.d-chk svg {
    width: 14px !important;
    height: 14px !important;
}
.d-service-row:hover .d-chk {
    transform: scale(1.1) rotate(5deg);
    background: rgba(217, 119, 6, 0.15) !important;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .detailed-services-wrap {
        grid-template-columns: 1fr; /* Single column on mobile/tablet */
        gap: 30px;
    }
    .d-service-row:nth-child(1),
    .d-service-row:nth-child(5) {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .d-icon-shape {
        width: 120px !important;
        height: 120px !important;
    }
    .d-service-row:nth-child(1) .d-icon-shape,
    .d-service-row:nth-child(5) .d-icon-shape {
        width: 120px !important;
        height: 120px !important;
    }
}


/* 3D Image Scale effect */
.d-icon-shape {
    overflow: hidden !important;
}
.d-icon-shape img {
    padding: 20px !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.d-service-row:nth-child(1) .d-icon-shape img,
.d-service-row:nth-child(5) .d-icon-shape img {
    padding: 30px !important;
}
.d-service-row:hover .d-icon-shape img {
    transform: scale(1.15) !important;
}

/* ── UPGRADED VISUAL POLISH for home-2 ── */

/* Richer hero background with animated gradient */
.detailed-hero {
    background: linear-gradient(135deg, #0a0f2a 0%, #0d1f5c 45%, #0f2a7a 100%) !important;
    border-bottom: none !important;
    position: relative;
}
.detailed-hero::after {
    content: "";
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(243,208,82,0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(26,92,184,0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(8,63,135,0.25) 0%, transparent 55%);
}
.detailed-hero-content { position: relative; z-index: 2; }

/* Bento card top accent bar on hover */
.d-service-row::after {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #d97706, #f3d052, #d97706);
    background-size: 200% 100%;
    border-radius: 32px 32px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shimmerAccent 2s linear infinite;
}
@keyframes shimmerAccent {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.d-service-row:hover::after { opacity: 1; }

/* Trust banner enhanced */
.d-trust-banner {
    background: linear-gradient(135deg, #0a0f2a 0%, #0d1f5c 100%) !important;
    position: relative; overflow: hidden;
}
.d-trust-banner::after {
    content: "";
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 80% 50%, rgba(217,119,6,0.12) 0%, transparent 55%);
}
.d-trust-inner { position: relative; z-index: 1; }

/* Bottom action enhanced */
.d-bottom-action {
    background: linear-gradient(180deg, var(--h2-secondary-color) 0%, #eef2f9 100%) !important;
    border-top: 4px solid rgba(217,119,6,0.15) !important;
}

/* Wide cards text alignment fix */
.d-service-row:nth-child(1) .d-service-text-col,
.d-service-row:nth-child(5) .d-service-text-col {
    text-align: right;
}

/* Section background subtle grid pattern */
.detailed-services-wrap {
    background-image: radial-gradient(circle, rgba(15,23,42,0.04) 1px, transparent 1px) !important;
    background-size: 28px 28px !important;
}

/* ══════════════════════════════════════════
   COVERAGE SECTION — مدن المنطقة الجنوبية
   ══════════════════════════════════════════ */
.d-coverage-section {
    max-width: 1280px;
    margin: 0 auto 0;
    padding: 80px 20px 60px;
}
.d-coverage-header {
    text-align: center;
    margin-bottom: 48px;
}
.d-coverage-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(217,119,6,0.12); color: #d97706;
    border: 1px solid rgba(217,119,6,0.25);
    padding: 6px 18px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 700;
    margin-bottom: 16px;
}
.d-coverage-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem) !important;
    font-weight: 900 !important; color: var(--h2-primary-color) !important;
    margin: 0 0 14px !important;
    background: none !important; padding: 0 !important; border: none !important;
}
.d-coverage-header h2::after { display: none !important; }
.d-coverage-header p {
    color: var(--h2-text-main); font-size: 1.05rem; line-height: 1.8;
    max-width: 640px; margin: 0 auto;
}
.d-coverage-header p strong { color: var(--h2-primary-color); }

/* 4-column grid for regions */
.d-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

/* Region cards */
.d-region-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 22px;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 4px 20px rgba(15,23,42,0.05);
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.d-region-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, rgba(15,23,42,0.15), rgba(15,23,42,0.05));
    border-radius: 24px 24px 0 0;
    transition: background 0.3s ease;
}
.d-region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.10);
    border-color: rgba(217,119,6,0.18);
}
.d-region-card:hover::before {
    background: linear-gradient(90deg, #d97706, #f3d052);
}

/* Main branch (Jazan) card — special styling */
.d-region-main {
    background: linear-gradient(160deg, #0a0f2a 0%, #0d1f5c 100%) !important;
    border-color: rgba(217,119,6,0.30) !important;
    box-shadow: 0 8px 32px rgba(10,15,42,0.30) !important;
}
.d-region-main::before {
    background: linear-gradient(90deg, #d97706, #f3d052) !important;
}
.d-region-main .d-region-header h3 { color: #ffffff !important; }
.d-region-main .d-region-icon { background: rgba(217,119,6,0.20) !important; color: #f3d052 !important; }
.d-region-main .d-city-tag { background: rgba(255,255,255,0.08) !important; color: rgba(255,255,255,0.80) !important; border-color: rgba(255,255,255,0.12) !important; }
.d-region-main .d-city-tag i { color: rgba(217,119,6,0.80) !important; }
.d-region-main:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(10,15,42,0.40) !important; }

/* Region header */
.d-region-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px; flex-wrap: wrap;
}
.d-region-icon {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: rgba(217,119,6,0.10);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #d97706;
}
.d-region-header h3 {
    font-size: 0.95rem !important; font-weight: 800 !important;
    color: var(--h2-primary-color) !important; margin: 0 !important; flex: 1;
    background: none !important; padding: 0 !important; border: none !important;
    line-height: 1.3;
}
.d-region-header h3::after { display: none !important; }
.d-main-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(217,119,6,0.25); color: #f3d052;
    padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
    white-space: nowrap; width: 100%; justify-content: center; margin-top: 4px;
}

/* Cities pills */
.d-cities-wrap {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.d-city-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(15,23,42,0.05);
    border: 1px solid rgba(15,23,42,0.08);
    color: var(--h2-text-main);
    padding: 5px 12px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 500;
    transition: all 0.2s ease;
}
.d-city-tag:hover {
    background: rgba(217,119,6,0.12);
    border-color: rgba(217,119,6,0.25);
    color: #b45309;
}
.d-city-tag i { font-size: 0.65rem; color: #d97706; flex-shrink: 0; }

/* Main city highlight */
.d-city-main {
    background: rgba(217,119,6,0.22) !important;
    border-color: rgba(217,119,6,0.40) !important;
    color: #f3d052 !important;
    font-weight: 800 !important;
}
.d-city-main i { color: #f3d052 !important; }

/* Bottom info bar */
.d-coverage-cta {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
    background: rgba(217,119,6,0.08);
    border: 1px solid rgba(217,119,6,0.20);
    border-radius: 16px; padding: 16px 28px;
    font-size: 0.95rem; color: var(--h2-text-main);
}
.d-coverage-cta i { color: #d97706; font-size: 1.1rem; }
.d-coverage-cta span { font-weight: 600; }
.d-coverage-call {
    display: inline-flex; align-items: center;
    background: var(--h2-primary-color); color: #ffffff !important;
    padding: 8px 22px; border-radius: 50px; font-weight: 800; font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(10,15,42,0.25);
}
.d-coverage-call:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,15,42,0.35); }

/* Responsive */
@media (max-width: 1100px) {
    .d-coverage-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .d-coverage-grid { grid-template-columns: 1fr; }
    .d-coverage-section { padding: 48px 16px 40px; }
    .d-coverage-cta { flex-direction: column; text-align: center; }
}


/* ── SECURE FOOTER PAYMENTS ── */
.footer-payments-container {
    text-align: center;
    margin: 40px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}
.payment-title {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.payment-badge {
    background: #ffffff;
    padding: 0 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1), inset 0 -2px 0 rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    min-width: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.payment-badge:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2), inset 0 -2px 0 rgba(0,0,0,0.05);
}
.payment-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    transform: skewX(-20deg);
}
.payment-badge:hover::after {
    animation: paymentShine 1s ease-in-out forwards;
}
@keyframes paymentShine {
    100% { left: 200%; }
}
/* Master card CSS art */
.mc-circles { position: relative; width: 44px; height: 26px; }
.mc-red { position: absolute; left: 0; width: 26px; height: 26px; border-radius: 50%; background: #eb001b; z-index: 1;}
.mc-orange { position: absolute; left: 16px; width: 26px; height: 26px; border-radius: 50%; background: #f79e1b; z-index: 2; mix-blend-mode: multiply;}

@media (max-width: 768px) {
    .footer-payments { gap: 10px; }
    .payment-badge { height: 40px; padding: 0 12px; }
    .payment-badge span { font-size: 18px !important; }
    .mc-circles { width: 36px; height: 22px; }
    .mc-red, .mc-orange { width: 22px; height: 22px; }
    .mc-orange { left: 14px; }
}


/* ── NEW MODERN FOOTER GRID & MARQUEE ── */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    position: relative;
    border-top: none;
}

/* MARQUEE */
.footer-marquee-strip {
    background: #ffffff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
     /* Brand separator */
    direction: ltr; /* strict LTR to ensure left-to-right animation matches keyframes */
}
.footer-marquee-strip::before, .footer-marquee-strip::after {
    content: '';
    position: absolute; top:0; width: 100px; height: 100%; z-index: 2; pointer-events:none;
}
.footer-marquee-strip::before { left: 0; background: linear-gradient(to right, #0f172a, transparent); }
.footer-marquee-strip::after { right: 0; background: linear-gradient(to left, #0f172a, transparent); }

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: marquee-lr 18s linear infinite;
    padding-right: 70px;
}
@keyframes marquee-lr {
    0% { transform: translateX(-50%); } 
    100% { transform: translateX(0%); }
}
.footer-marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.9);
    /* For payment logos that have their own colors, we might want natural. If natural, we just use: filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
    cursor: pointer;
}
.marquee-track img:hover {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    transform: scale(1.15);
}

/* 3 COLUMN GRID */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    text-align: right;
}
.widget-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}
.widget-title::after {
    content: '';
    position: absolute; right:0; bottom:0;
    width: 50px; height: 3px; background: #d97706; border-radius:3px;
}
.footer-desc {
    line-height: 1.9;
    margin-top: 25px;
    font-size: 1.1rem;
    max-width: 90%;
}
.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-links-grid a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 1.1rem;
}
.footer-links-grid a::before {
    content: '\2190'; color: #d97706; font-size: 16px; font-weight:bold;
}
.footer-links-grid a:hover {
    color: #d97706;
}

.contact-widget-items {
    display: flex; flex-direction: column; gap: 15px;
}
.f-contact-link {
    color: #ffffff;
    background: rgba(255,255,255,0.04);
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: flex; align-items: center; gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.f-contact-link:hover {
    background: rgba(217, 119, 6, 0.15);
    color: #ffffff;
    border-color: rgba(217, 119, 6, 0.3);
    transform: translateY(-2px);
}
.f-contact-link i { color: #d97706; font-size:1.2rem; }
.f-work-hours {
    margin-top: 15px; font-size: 1.05rem; display:flex; gap:10px; line-height: 1.7; color:#94a3b8;
}
.f-work-hours i { color: #d97706; margin-top:5px; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-desc { max-width: 100%; }
}



.marquee-track svg {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.marquee-track svg:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}


/* --- Modern Transparent Marquee Edge Mask --- */
.footer-marquee-strip {
    background: transparent !important;
    border: none !important;
    /* This creates a flawless transparent fade at both edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
/* Hide the old solid color fades */
.footer-marquee-strip::before, .footer-marquee-strip::after {
    display: none !important;
}
.marquee-track img {
    height: 44px !important; /* Perfect size for the raw SVGs provide */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); /* Keep natural colors but give them a slight 3D pop off the navy background */
}
.marquee-track img:hover {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.4));
}


/* ====== Contained Trust Banner ====== */
.footer-trust-banner {
    background: rgba(255, 255, 255, 0.05); /* very light white */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 25px;
    max-width: 900px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    gap: 30px;
    backdrop-filter: blur(5px);
}
@media (max-width: 992px) {
    .footer-trust-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
}

.ftb-text {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}
@media (max-width: 992px) {
    .ftb-text {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-bottom: 15px;
        flex-direction: column;
        justify-content: center;
    }
}

.ftb-text > i {
    flex-shrink: 0;
}

.ftb-text strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 3px;
}
.ftb-text span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.ftb-marquee-container {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    /* Soft fade mask on the edges of the marquee area inside the box */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    
    /* Elegant track background */
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    border-radius: 50px;
    padding: 8px 0;
}

.ftb-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-rtl 25s linear infinite;
}

.ftb-marquee-track img {
    height: 38px !important;
    width: auto !important;
    max-width: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 40px; /* Instead of gap, guarantees perfect math */
}
.ftb-marquee-track img:hover {
    transform: scale(1.15) !important;
}


/* --- Footer Trust Banner --- */
.footer-trust-banner {
    background: rgba(255, 255, 255, 0.03); /* subtle white transparent */
    border: 1px solid rgba(255, 255, 255, 0.06); /* very soft white border */
    border-radius: 12px;
    padding: 16px 24px;
    max-width: 1050px; /* simple and not full width */
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    position: relative;
    direction: rtl; /* enforce RTL inside the banner */
}

@media (max-width: 900px) {
    .footer-trust-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

.ftb-text {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); 
    padding-left: 25px;
}

@media (max-width: 900px) {
    .ftb-text {
        border-left: none !important;
        padding-left: 0 !important;
        flex-direction: column;
    }
}

/* old shield-icon styles removed — icon replaced by ftb-decor-circle */

.ftb-text > div {
    display: flex;
    flex-direction: column;
    text-align: right;
}
@media (max-width: 900px) {
    .ftb-text > div { text-align: center; }
}

.ftb-text strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.ftb-text > div > span {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 4px;
}

.ftb-marquee-container {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    /* Soft fade mask on the edges of the marquee area inside the box */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    
    /* Elegant track background */
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    border-radius: 50px;
    padding: 8px 0;
}

.ftb-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-rtl 25s linear infinite;
}

.ftb-marquee-track img {
    height: 38px !important;
    width: auto !important;
    max-width: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 40px; /* Instead of gap, guarantees perfect math */
}

.ftb-marquee-track img.small-logo {
    height: 52px !important; /* Make first 3 logos bigger */
    max-width: 130px;
}

.ftb-marquee-track img:hover {
    transform: scale(1.1);
}


@keyframes marquee-rtl {
    0% { transform: translateX(0%); }
    100% { transform: translateX(25%); }
}

/* ── FTB Decorative Security Circle ── */
/* ── FTB Decorative Security Circle ── */
.ftb-decor-circle {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftb-decor-circle .ftb-decor-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(135deg, rgba(59,130,246,0.28) 0%, rgba(37,99,235,0.15) 100%);
    border: 1.5px solid rgba(59,130,246,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 24px rgba(59,130,246,0.25), inset 0 0 16px rgba(59,130,246,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ftb-decor-circle:hover .ftb-decor-inner {
    box-shadow: 0 0 36px rgba(59,130,246,0.45), inset 0 0 20px rgba(59,130,246,0.18);
    transform: scale(1.06);
}

.ftb-decor-circle .ftb-decor-inner i {
    font-size: 20px;
    color: #93c5fd;
    line-height: 1;
}

.ftb-decor-circle .ftb-decor-inner span {
    font-size: 9.5px;
    color: rgba(147,197,253,0.9);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
}

/* rotating dashed ring */
.ftb-decor-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: ftb-ring-spin 10s linear infinite;
    pointer-events: none;
}

.ftb-decor-ring circle {
    stroke: rgba(99,179,255,0.45);
}

@keyframes ftb-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .ftb-decor-circle { display: none; }
}

/* ── Elegant Locations Grid ── */
/* ── Elegant Locations Grid — Neighborhoods ── */
.elegant-locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 16px;
}
.elegant-locations-grid .location-item {
    background: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(8,63,135,0.12);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    color: var(--dark-navy);
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(8,63,135,0.05);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.elegant-locations-grid .location-item i {
    color: var(--deep-blue);
    font-size: 0.82rem;
    transition: color 0.3s;
}
.elegant-locations-grid .location-item:hover {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 22px rgba(8,63,135,0.22);
    border-color: transparent !important;
}
.elegant-locations-grid .location-item:hover i { color: var(--primary-yellow) !important; }
/* nth-child tints */
.elegant-locations-grid .location-item:nth-child(3n+1) { border-color: rgba(243,208,82,0.35); background: rgba(255,252,235,0.9); }
.elegant-locations-grid .location-item:nth-child(3n+2) { border-color: rgba(8,63,135,0.15); }
.elegant-locations-grid .location-item:nth-child(3n)   { border-color: rgba(26,92,184,0.18); background: rgba(240,245,255,0.9); }

/* ── Neighborhoods section wrapper (injected by JS) ── */
.neighborhoods-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 50%, #fffdf0 100%);
    border-radius: 24px;
    padding: 36px 32px 40px;
    margin: 40px 0;
    border: 1px solid rgba(8,63,135,0.07);
    box-shadow: 0 4px 24px rgba(8,63,135,0.05);
    position: relative; overflow: hidden;
}
.neighborhoods-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--primary-yellow));
    border-radius: 24px 24px 0 0;
}
.neighborhoods-section-title {
    font-size: 1.3rem !important; font-weight: 900 !important;
    color: var(--dark-navy) !important; margin-bottom: 8px !important;
    background: none !important; padding: 0 !important; border: none !important;
    display: flex; align-items: center; gap: 10px; position: relative; z-index: 1;
}
.neighborhoods-section-title::before {
    content: ''; display: inline-block; width: 5px; height: 24px;
    background: var(--primary-yellow); border-radius: 3px; flex-shrink: 0;
}
.neighborhoods-count {
    background: var(--gradient-primary); color: var(--white);
    font-size: 0.78rem; font-weight: 700;
    padding: 3px 10px; border-radius: 20px; margin-right: 4px;
}
.neighborhoods-intro {
    color: var(--text-body); font-size: 0.95rem;
    margin: 6px 0 24px; opacity: 0.8; line-height: 1.7;
    position: relative; z-index: 1;
}

/* ── Routes section wrapper (injected by JS) ── */
.routes-section {
    background: linear-gradient(160deg, #0a1128 0%, #0f1f4a 100%);
    border-radius: 24px;
    padding: 36px 32px 40px;
    margin: 40px 0;
    position: relative; overflow: hidden;
}
.routes-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(243,208,82,0.10) 0%, transparent 50%),
                      radial-gradient(circle at 90% 20%, rgba(26,92,184,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.routes-section-title {
    font-size: 1.3rem !important; font-weight: 900 !important;
    color: var(--white) !important; margin-bottom: 8px !important;
    background: none !important; padding: 0 !important; border: none !important;
    position: relative; z-index: 1;
}
.routes-section-title::after {
    content: ''; display: block; width: 50px; height: 3px;
    background: var(--primary-yellow); border-radius: 3px; margin-top: 8px;
}
.routes-intro {
    color: rgba(255,255,255,0.65); font-size: 0.92rem;
    margin: 0 0 28px; line-height: 1.7; position: relative; z-index: 1;
}
/* Routes grid new design */
.routes-section .routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px; position: relative; z-index: 1;
}
.routes-section .route-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-card);
    padding: 18px 14px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 8px;
    transition: var(--transition-bounce);
    backdrop-filter: blur(8px);
    position: relative; overflow: hidden;
}
.routes-section .route-card::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 4px; height: 100%;
    background: var(--gradient-yellow);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    transform: scaleY(0); transition: transform 0.35s ease; transform-origin: bottom;
}
.routes-section .route-card:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(243,208,82,0.30);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.routes-section .route-card:hover::after { transform: scaleY(1); }
.route-endpoint {
    display: flex; flex-direction: column;
    align-items: center; gap: 3px; flex: 1; text-align: center;
}
.route-endpoint i { font-size: 1rem; margin-bottom: 2px; }
.route-from i { color: var(--primary-yellow); }
.route-to i   { color: #60a5fa; }
.route-endpoint span { font-size: 0.85rem; font-weight: 800; color: var(--white); line-height: 1.3; }
.route-lbl { font-size: 0.67rem !important; font-weight: 500 !important; color: rgba(255,255,255,0.45) !important; }
.route-arrow-wrap {
    width: 32px; height: 32px;
    background: rgba(243,208,82,0.15);
    border: 1px solid rgba(243,208,82,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-yellow); font-size: 0.75rem;
    flex-shrink: 0; transition: var(--transition);
}
.routes-section .route-card:hover .route-arrow-wrap {
    background: var(--gradient-yellow); color: var(--dark-navy);
    border-color: transparent; transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(243,208,82,0.40);
}
@media (max-width: 767px) {
    .neighborhoods-section, .routes-section { padding: 24px 18px 28px; }
    .routes-section .routes-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .route-lbl { display: none !important; }
    .route-endpoint span { font-size: 0.78rem; }
}
@media (max-width: 480px) {
    .routes-section .routes-grid { grid-template-columns: 1fr; }
    .elegant-locations-grid .location-item { font-size: 0.85rem; padding: 8px 14px; }
}


/* ── FAQ Accordion Section ── */
.naql-faq-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 30px 0 50px;
}

.naql-faq-item {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.naql-faq-item.open {
    border-color: var(--primary-color, #1a5cb8);
    box-shadow: 0 6px 24px rgba(26, 92, 184, 0.1);
}

.naql-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    gap: 16px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy, #0a1128);
    transition: background 0.3s ease;
}

.naql-faq-question:hover {
    background: #f7f9fd;
}

.naql-faq-item.open .naql-faq-question {
    color: var(--primary-color, #1a5cb8);
    background: #f0f5ff;
}

.naql-faq-icon {
    font-size: 0.9rem;
    color: var(--primary-color, #1a5cb8);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.naql-faq-item.open .naql-faq-icon {
    transform: rotate(180deg);
}

.naql-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.naql-faq-answer p {
    padding: 0 24px 22px;
    margin: 0;
    color: #555e70;
    font-size: 1rem;
    line-height: 1.85;
    border-top: 1px solid #eef0f5;
    padding-top: 16px;
}

/* ══════════════════════════════════════════════════════
   CSS UPGRADES v4 — Focus, Motion, Mobile, Interactions
   ══════════════════════════════════════════════════════ */

/* ── 3. GPU acceleration for animated cards ── */
.service-card,
.review-card,
.modern-step,
.feature-card,
.route-card,
.nh-tag,
.stat-card,
.naql-faq-item {
    will-change: transform;
}

/* Slightly richer card hover: combine lift + shadow */
.service-card:hover   { transform: translateY(-10px) scale(1.01); }
.review-card:hover    { transform: translateY(-6px) scale(1.01); }
.feature-card:hover   { transform: translateY(-8px) scale(1.01); }

/* ── 4. :focus-visible — keyboard navigation ── */
a:focus-visible,
button:focus-visible,
.naql-faq-question:focus-visible,
.site-nav a:focus-visible,
.cta-btn:focus-visible,
.btn-whatsapp:focus-visible,
.hero-cta a:focus-visible {
    outline: 3px solid var(--primary-yellow);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Remove default outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* ── 5. prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration:   0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration:  0.01ms !important;
        scroll-behavior: auto !important;
    }
    .aos-init {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .floating, .pulseBlue, .pulseYellow, .pulseGreen, .auroraGlow, .shimmerLine {
        animation: none !important;
    }
}

/* ── 6. 480px Mobile breakpoints for new sections ── */
@media (max-width: 480px) {
    /* Steps */
    .steps-section {
        padding: 28px 16px 24px;
        margin: 32px 0;
    }
    .steps-section-title { font-size: 1.25rem !important; }
    .steps-intro { font-size: 0.9rem; }
    .steps-container { flex-direction: column; align-items: stretch; gap: 16px; }
    .step-connector { transform: rotate(90deg); margin: -4px auto; }
    .modern-step { padding: 22px 14px; }
    .modern-step .step-icon-wrap { width: 56px; height: 56px; font-size: 1.3rem; }
    .step-title { font-size: 1rem !important; }
    .step-desc  { font-size: 0.88rem; }

    /* Reviews */
    .reviews-section { margin: 32px 0; }
    .reviews-section-title { font-size: 1.25rem !important; }
    .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
    .review-card { padding: 18px 16px; }
    .rv-name  { font-size: 0.92rem; }
    .rv-text  { font-size: 0.87rem; }

    /* FAQ */
    .naql-faq-question { font-size: 0.95rem; padding: 14px 16px; gap: 10px; }
    .naql-faq-answer p { padding: 0 16px 16px; font-size: 0.92rem; }

    /* Feature cards */
    .feature-cards { grid-template-columns: 1fr; }

    /* Premium intro */
    .premium-seo-intro { grid-template-columns: 1fr; }
    .intro-media { display: none; }

    /* Neighborhoods */
    .nh-tag { font-size: 0.85rem; padding: 7px 14px; }

    /* Para pair */
    .para-pair { grid-template-columns: 1fr; gap: 0; }
}

/* ── Bonus: smooth image hover zoom ── */
.post-content figure img,
.intro-media img,
.dark-section-image img {
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.post-content figure:hover img,
.intro-media:hover img {
    transform: scale(1.03);
}

/* ── Bonus: scrollbar always styled ── */
* { scrollbar-width: thin; scrollbar-color: var(--deep-blue) var(--light-gray); }

/* ══════════════════════════════════════════════════════
   VISUAL UPGRADES v5 — Footer Wave + Glass + Polish
   ══════════════════════════════════════════════════════ */

/* ── Footer Wave Top ── */
.site-footer {
    padding-top: 0 !important;
    overflow: visible !important;
}
.site-footer::before {
    background-image:
        radial-gradient(circle at 15% 80%, rgba(243,208,82,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(26,92,184,0.12) 0%, transparent 45%);
}
.footer-wave-top {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin-bottom: 0;
}
.footer-wave-top svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--dark-navy);
}

/* ── Footer Grid Columns: Glass ── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
    text-align: right;
    margin-bottom: 48px;
}
.footer-widget {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 24px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.footer-widget:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(243,208,82,0.18);
}
.footer-widget h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-widget ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-widget ul li a {
    color: rgba(255,255,255,0.60);
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-right 0.25s ease;
    display: block;
}
.footer-widget ul li a:hover {
    color: var(--primary-yellow);
    padding-right: 6px;
}
.footer-desc {
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.9rem !important;
    line-height: 1.85 !important;
}

/* ── Social Icons Pill Style ── */
.social-icons-container a:hover {
    background: var(--gradient-yellow) !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: var(--shadow-yellow) !important;
}

/* ── Footer bottom bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}

.footer-copy {
    margin: 0;
    color: rgba(255,255,255,0.30);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

/* ── Developer / SEO Credit ── */
.footer-credit {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.22);
    transition: color 0.3s ease;
}
.footer-credit:hover {
    color: rgba(255,255,255,0.40);
}
.credit-label {
    color: inherit;
    white-space: nowrap;
}
.credit-logo {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.55;
    filter: grayscale(30%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    vertical-align: middle;
    flex-shrink: 0;
}
.credit-link:hover .credit-logo {
    opacity: 0.9;
    filter: grayscale(0%);
    transform: scale(1.15);
}
.credit-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.12);
    padding-bottom: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}
.credit-link:hover {
    color: rgba(243,208,82,0.60);
    border-color: rgba(243,208,82,0.25);
}
@media (max-width: 600px) {
    .footer-credit { font-size: 0.72rem; }
}

/* ── Services grid background pattern dots ── */
.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(8,63,135,0.06) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}
.services-section .section-inner { position: relative; z-index: 1; }

/* ── Service card gradient border on hover ── */
.service-card:hover {
    border-color: rgba(243,208,82,0.35) !important;
    box-shadow: 0 20px 60px rgba(8,63,135,0.14), 0 0 0 1px rgba(243,208,82,0.20) !important;
}

/* ── Dark section stat icon glow ring ── */
.stat-icon {
    position: relative;
    display: inline-block;
}
.stat-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,208,82,0.22) 0%, transparent 70%);
    animation: iconRingPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes iconRingPulse {
    0%,100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.25); }
}

/* ── Responsive footer grid ── */
@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-widget { padding: 20px 18px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .footer-wave-top svg { height: 40px; }
}

/* ── Responsive: Neighborhoods + Routes + Intro ── */
@media (max-width: 767px) {
    .premium-seo-intro { flex-direction: column-reverse; gap: 28px; padding: 28px 20px; }
    .intro-media { flex: unset; width: 100%; }
    .intro-media::before { display: none; }
    .neighborhoods-section { padding: 24px 18px 28px; }
    .routes-section { padding: 24px 18px 28px; }
    .routes-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .route-endpoint span { font-size: 0.8rem; }
    .route-lbl { display: none; }
}
@media (max-width: 480px) {
    .routes-grid { grid-template-columns: 1fr; }
    .route-card { padding: 14px 12px; }
    .neighborhoods-grid { gap: 8px; }
    .nh-tag { font-size: 0.85rem; padding: 8px 14px; }
}
