/* CSS Variables - Elementor Ready */
:root {
    --primary-gold: #b07d23;
    --primary-gold-rgb: 176, 125, 35;
    --primary-gold-hover: #9a6c1e;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: #141414;
    --text-light: #F8F9FA;
    --text-muted: #A0AEC0;
    --border-color: rgba(var(--primary-gold-rgb), 0.2);
    --transition: all 0.3s ease-in-out;
    --section-padding: 100px 0;
    --font-primary: 'Tajawal', sans-serif;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --gradient-dark: linear-gradient(to bottom, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.9));

    /* Mode Variables */
    --hero-overlay: linear-gradient(to left, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    --hero-inner-overlay: linear-gradient(135deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.15) 100%);
    --bg-section-muted: #0d0d0d;
    --bg-why-us: linear-gradient(to left, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95));
    --bg-muted-rgba: rgba(255, 255, 255, 0.03);
    --footer-bg: #050505;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Chinese Font Support */
[lang="zh"] body, [lang="zh"] h1, [lang="zh"] h2, [lang="zh"] h3, [lang="zh"] h4, [lang="zh"] h5, [lang="zh"] h6 {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.parallax-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.parallax-img {
    width: 100%;
    height: 120%; /* Slightly taller for movement */
    object-fit: cover;
    transition: transform 0.1s linear; /* Smooth micro-movement */
}

/* Layout Utils */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: #0A0A0A;
}

.btn-gold:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--primary-gold-rgb), 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

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

/* Language Switcher */
/* Language Switcher Dropdown */
.lang-switch.dropdown {
    position: relative;
    display: inline-block;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.lang-switch.dropdown:hover {
    border-color: var(--primary-gold);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--primary-gold);
    padding: 8px 15px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.lang-btn i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang-switch.dropdown.active .lang-btn i:last-child {
    transform: rotate(180deg);
}

.lang-switch .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

[dir="ltr"] .lang-switch .dropdown-menu {
    right: auto;
    left: 0;
}

.lang-switch.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switch .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.lang-switch .dropdown-menu a:last-child {
    border-bottom: none;
}

.lang-switch .dropdown-menu a:hover {
    background: rgba(var(--primary-gold-rgb), 0.1);
    color: var(--primary-gold);
    padding-right: 25px;
}

[dir="ltr"] .lang-switch .dropdown-menu a:hover {
    padding-right: 20px;
    padding-left: 25px;
}

/* Mobile Language List */
.lang-mobile-list {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.lang-link-mobile {
    color: var(--primary-gold) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 1rem !important;
}

/* LTR Adjustments */
[dir="ltr"] .nav-links {
    flex-direction: row;
}

[dir="ltr"] .service-area {
    border-right: none;
    border-left: 4px solid var(--primary-gold);
    padding-left: 15px;
    padding-right: 0;
}

[dir="ltr"] .service-area li::before {
    left: -20px;
    right: auto;
}

[dir="ltr"] .about-image::before {
    left: -25px;
    right: auto;
    border-right: none;
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px 0 0 0;
}

[dir="ltr"] .footer-title::after {
    left: 0;
    right: auto;
}

/* --- Section: Header --- */
.section-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 15px 0;
}

.section-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 63px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-gold);
    cursor: pointer;
}

/* --- Slider Enhancements --- */
.hero-swiper {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 10s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 0;
}

/* --- Section: Hero --- */
.section-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #FFFFFF; /* Forced light color */
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 span {
    color: var(--primary-gold);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85); /* Lighter color */
    margin-bottom: 45px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
}

/* --- Inner Page & Service Hero --- */
.hero-inner {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-inner.hero-tall {
    height: 60vh;
    min-height: 400px;
    padding-top: 80px;
}

.hero-inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
    z-index: 0;
}

.hero-inner .container {
    position: relative;
    z-index: 10;
}

.hero-inner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-inner h1 span {
    color: var(--primary-gold);
}

.hero-inner p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Service Content Styles --- */
.section-content {
    padding: 80px 0;
}

.content-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.content-card h2 {
    color: var(--primary-gold);
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.content-card h3 {
    color: var(--primary-gold);
    font-size: 1.7rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-right: 4px solid var(--primary-gold);
    padding-right: 15px;
}

.content-card p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-area {
    margin-bottom: 40px;
    padding: 25px;
    background: var(--bg-muted-rgba);
    border-radius: 8px;
    border: 1px solid var(--bg-muted-rgba);
}

.service-area h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-area ul {
    list-style: none;
    padding-right: 25px;
}

.service-area li {
    margin-bottom: 10px;
    position: relative;
    color: var(--text-muted);
}

.service-area li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    right: -20px;
    font-weight: bold;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step-item {
    padding: 20px;
    background: rgba(var(--primary-gold-rgb), 0.05);
    border-radius: 8px;
    border: 1px solid rgba(var(--primary-gold-rgb), 0.1);
}

.step-item h5 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.importance-box {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(var(--primary-gold-rgb), 0.1), transparent);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* About Page Sections */
.about-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}
.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.about-section--centered {
    text-align: center;
}
.about-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.about-section-header--center {
    justify-content: center;
}
.about-section-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0;
}
.about-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--primary-gold-rgb), 0.15), rgba(var(--primary-gold-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-section-icon i {
    font-size: 1.2rem;
    color: var(--primary-gold);
}
.about-section-icon--gold {
    background: linear-gradient(135deg, var(--primary-gold), #c9922a);
}
.about-section-icon--gold i {
    color: #fff;
}
.about-section .neb-rich-text p {
    color: var(--text-muted);
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: 16px;
}
.about-section .neb-rich-text p:last-child {
    margin-bottom: 0;
}

.importance-item strong {
    color: var(--primary-gold);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-box {
    background: var(--bg-muted-rgba);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--bg-muted-rgba);
    margin-bottom: 25px;
}

.feature-box h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* --- Section: About --- */
.section-about {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-muted-rgba);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid var(--bg-muted-rgba);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--border-color);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.6rem;
}

.feature-item span {
    font-weight: 700;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    border-top: 4px solid var(--primary-gold);
    border-right: 4px solid var(--primary-gold);
    border-radius: 0 8px 0 0;
    z-index: -1;
}

/* --- Section: Practice Areas --- */
.section-services {
    padding: var(--section-padding);
    background-color: var(--bg-section-muted);
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 50px 35px;
    border-radius: 8px;
    border: 1px solid var(--bg-muted-rgba);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-gold);
    transition: var(--transition);
    z-index: 2;
}

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

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.read-more:hover {
    gap: 15px;
}

/* --- Section: Why Choose Us --- */
.section-why-us {
    padding: var(--section-padding);
    background: var(--bg-why-us), url('https://images.unsplash.com/photo-1505664173615-04f1bc9f5323?auto=format&fit=crop&q=80') fixed center/cover;
    border-top: 1px solid var(--bg-muted-rgba);
    border-bottom: 1px solid var(--bg-muted-rgba);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.why-item {
    padding: 30px;
    border-radius: 8px;
    background: var(--bg-muted-rgba);
    border: 1px solid var(--bg-muted-rgba);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    background: var(--bg-muted-rgba);
    border-color: var(--border-color);
}

.why-item i {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.why-item h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.why-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Section: Team --- */
.section-team {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--bg-muted-rgba);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-premium);
}

.team-image {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-info {
    padding: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-info h4 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.team-info span {
    color: var(--text-muted);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    color: var(--text-muted);
}

/* ── Team More Button (Hover Overlay) ─────────────────────────── */
.team-more-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-gold);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(176, 125, 35, 0.4);
    pointer-events: none;
}

.team-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

[dir="rtl"] .team-more-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .team-more-btn:hover i {
    transform: rotate(180deg) translateX(-3px);
}

.team-card:hover .team-more-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.team-more-btn:hover {
    background: #fff;
    color: var(--primary-gold);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.team-more-btn:hover i {
    transform: translateX(3px);
}

[dir="rtl"] .team-more-btn:hover i {
    transform: rotate(180deg) translateX(-3px);
}

.team-social a:hover {
    color: var(--primary-gold);
}

/* --- Section: Testimonials --- */
.section-testimonials {
    padding: var(--section-padding);
    background-color: var(--bg-section-muted);
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.testimonial-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.testimonial-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
}

.swiper-slide-active.testimonial-slide {
    opacity: 1;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(var(--primary-gold-rgb), 0.15);
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 35px;
    line-height: 1.8;
    color: var(--text-light);
}

.testimonial-author h5 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bg-muted-rgba);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background-color: rgba(var(--primary-gold-rgb), 0.5);
}

.dot.active {
    background-color: var(--primary-gold);
    transform: scale(1.2);
}

/* --- Section: CTA --- */
.section-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-gold), #b5952f);
    text-align: center;
}

.section-cta h2 {
    color: var(--bg-dark);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-cta p {
    color: rgba(10, 10, 10, 0.8);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 700;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta .btn {
    background-color: #0A0A0A;
    color: var(--primary-gold);
    padding: 15px 40px;
    font-size: 1.2rem;
}

.section-cta .btn:hover {
    background-color: #222;
    color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

/* --- Section: Footer --- */
.section-footer {
    background-color: var(--footer-bg);
    padding: 100px 0 30px;
    border-top: 1px solid var(--bg-muted-rgba);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-about img {
    height: 70px;
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-muted-rgba);
    color: var(--primary-gold);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-gold);
}

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

.footer-links a {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.footer-links a::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(-5px);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 1.1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 6px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--bg-muted-rgba);
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- Animations --- */
@keyframes fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        border-top: 1px solid var(--bg-muted-rgba);
    }
    
    .nav-links.show {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-features { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .section-title h2 { font-size: 2rem; }
    .testimonial-text { font-size: 1.2rem; }
}

/* ================================================================
   Extra page-specific styles added for WordPress theme
   ================================================================ */

/* ── Inner Hero (about / service / contact pages) ── */
.hero-inner {
    position: relative;
    height: 45vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 85px;
}
.hero-inner-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-inner-overlay);
}
.hero-inner .container { position: relative; z-index: 2; }

/* ── Content Section ── */
.section-content { padding: 80px 0; }
.content-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-muted-rgba);
    border-radius: 12px;
    padding: 50px;
}
.content-card h2 { font-size: 2rem; color: var(--primary-gold); margin-bottom: 20px; }
.content-card h3 { font-size: 1.5rem; color: var(--text-light); margin: 40px 0 16px; border-bottom: 2px solid var(--primary-gold); padding-bottom: 10px; display: inline-block; }
.content-card p  { color: var(--text-muted); line-height: 2; font-size: 1.05rem; margin-bottom: 20px; }

.service-area    { background: var(--bg-muted-rgba); border-right: 3px solid var(--primary-gold); border-radius: 0 8px 8px 0; padding: 24px 28px; margin: 30px 0; }
[dir="ltr"] .service-area { border-right: none; border-left: 3px solid var(--primary-gold); border-radius: 8px 0 0 8px; }
.service-area h4 { color: var(--primary-gold); font-size: 1.2rem; margin-bottom: 14px; }
.service-area ul { list-style: none; padding: 0; }
.service-area ul li { color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--bg-muted-rgba); display: flex; gap: 10px; align-items: flex-start; line-height: 1.7; }
.service-area ul li::before { content: '\f054'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--primary-gold); font-size: .8rem; margin-top: 4px; flex-shrink: 0; }
[dir="ltr"] .service-area ul li::before { content: '\f053'; }

.steps-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; margin-top: 20px; }
.step-item     { background: var(--bg-muted-rgba); border: 1px solid var(--bg-muted-rgba); border-radius: 10px; padding: 24px; }
.step-item h5  { color: var(--primary-gold); margin-bottom: 10px; font-size: 1.05rem; }
.step-item p   { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin: 0; }

.feature-box   { background: linear-gradient(135deg, rgba(194,155,60,.12), transparent); border: 1px solid rgba(194,155,60,.25); border-radius: 10px; padding: 24px 28px; margin: 16px 0; }
.feature-box h4{ color: var(--primary-gold); margin-bottom: 8px; }
.feature-box p { color: var(--text-muted); margin: 0; line-height: 1.8; }

.importance-box      { margin-top: 20px; }
.importance-item     { background: var(--bg-muted-rgba); border-right: 3px solid var(--primary-gold); padding: 20px 24px; border-radius: 0 8px 8px 0; }
[dir="ltr"] .importance-item { border-right: none; border-left: 3px solid var(--primary-gold); border-radius: 8px 0 0 8px; }
.importance-item strong { display: block; color: var(--text-light); margin-bottom: 8px; }
.importance-item p    { margin: 0; color: var(--text-muted); line-height: 1.7; }

/* ── Contact Page ── */
.section-contact { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--bg-muted-rgba);
    border-radius: 12px;
    padding: 40px;
}
.contact-info h3 { color: var(--primary-gold); font-size: 1.6rem; margin-bottom: 30px; }
.contact-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px;
    background: rgba(194,155,60,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-gold); font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item h4 { color: var(--text-light); margin: 0 0 4px; font-size: 1rem; }
.contact-item p  { color: var(--text-muted); margin: 0; line-height: 1.7; font-size: .95rem; }
.contact-item a  { color: var(--text-muted); }

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-muted-rgba);
    border-radius: 12px;
    padding: 40px;
}
.contact-form-card h3 { color: var(--primary-gold); font-size: 1.6rem; margin-bottom: 30px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; color: var(--text-muted); margin-bottom: 8px; font-size: .95rem; }
.contact-form .form-control {
    width: 100%; padding: 13px 18px;
    background: var(--bg-muted-rgba);
    border: 1px solid var(--bg-muted-rgba);
    border-radius: 8px; color: var(--text-light);
    font-size: 1rem; transition: border-color .3s;
    box-sizing: border-box;
}
.contact-form .form-control:focus { outline: none; border-color: var(--primary-gold); }
.contact-form textarea.form-control { resize: vertical; }

/* ── Service Section Block ── */
.service-section-block h2 { font-size: 1.6rem; color: var(--primary-gold); margin-bottom: 16px; }
.service-section-content  { color: var(--text-muted); line-height: 2; }

/* ── Map ── */
.map-section iframe { box-shadow: 0 15px 40px rgba(0,0,0,.5); }

/* ── btn-sm ── */
.btn-sm { padding: 8px 20px !important; font-size: .9rem !important; }

/* ── Language Switcher (WordPress version) ── */
.lang-switch .lang-link {
    padding: 7px 16px;
    border: 1px solid rgba(194,155,60,.5);
    border-radius: 20px;
    color: var(--primary-gold);
    font-size: .9rem;
    font-weight: 500;
    transition: all .3s;
    white-space: nowrap;
}
.lang-switch .lang-link:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* ── LTR Footer title underline ── */
[dir="ltr"] .footer-title::after { left: 0; right: auto; }
[dir="ltr"] .about-image::before {
    left: -25px; right: auto;
    border-right: none;
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px 0 0 0;
}
[dir="ltr"] .footer-links a::before { content: '\f105'; }

/* ── Map placeholder fallback ── */
.map-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--bg-muted-rgba);
    border-radius: 12px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder-inner {
    text-align: center;
    padding: 40px;
}

/* ================================================================
   REDESIGN PATCH — All new UI improvements
   ================================================================ */

/* ── Light Mode Variables ─────────────────────────────────────── */
html.mode-light {
    --bg-dark:      #f4f4f4;
    --bg-darker:    #e8e8e8;
    --bg-card:      #ffffff;
    --text-light:   #1a1a2e;
    --text-muted:   #555;
    --border-color: rgba(0,0,0,.1);
    --hero-overlay: linear-gradient(to left, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
    --hero-inner-overlay: linear-gradient(135deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.15) 100%);
    --bg-section-muted: #ffffff;
    --bg-why-us: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
    --bg-muted-rgba: rgba(0, 0, 0, 0.04);
    --footer-bg: #f4f4f4;
}
html.mode-light body { background: var(--bg-dark); color: var(--text-light); }
html.mode-light .section-header { background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(0,0,0,.08); }
html.mode-light .nav-links a { color: var(--text-light); }
html.mode-light .section-footer { background: var(--bg-darker); border-top: 1px solid rgba(0,0,0,0.05); }
html.mode-light .footer-title, 
html.mode-light .footer-contact li, 
html.mode-light .footer-about p,
html.mode-light .footer-links a,
html.mode-light .footer-bottom { color: var(--text-light); }
html.mode-light .footer-section-title { border-bottom-color: rgba(0,0,0,0.1); }
html.mode-light .social-links a { border-color: rgba(0,0,0,0.1); }

/* ── Header Actions ───────────────────────────────────────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
/* Hide CTA on mobile */
@media (max-width: 768px) {
    .header-cta { display: none !important; }
}

/* Mobile hamburger spans */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all .3s;
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
}

/* ── Mobile Nav fix — both LTR and RTL stack vertically ──────── */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 85px;
        right: 0; left: 0;
        background: var(--bg-darker, #0f0f0f);
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 12px 0;
        transform: translateY(-110%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        z-index: 9999;
        box-shadow: 0 8px 30px rgba(0,0,0,.4);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 13px 24px;
        border-bottom: 1px solid var(--bg-muted-rgba);
        font-size: 1rem;
    }
    .lang-link-mobile { display: block !important; color: var(--primary-gold) !important; font-weight: 600; }
}
/* Hide the lang-link-mobile on desktop */
.lang-link-mobile { display: none; }

/* ── About — Centered Text Only ──────────────────────────────── */
.section-about { padding: 80px 0; background: var(--bg-card); }
.about-centered { text-align: center; max-width: 860px; margin: 0 auto; }
.about-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.about-divider {
    width: 60px; height: 3px;
    background: var(--primary-gold);
    margin: 0 auto 30px;
    border-radius: 2px;
}
.about-para {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 20px;
}
.about-features-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(194,155,60,.1);
    border: 1px solid rgba(194,155,60,.3);
    border-radius: 30px;
    color: var(--primary-gold);
    font-size: .9rem;
}

/* ── Services — Circles ──────────────────────────────────────── */
.section-services { padding: 80px 0; }
.services-circles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    margin-top: 50px;
    text-align: center;
}
@media (max-width: 768px) {
    .services-circles-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 480px) {
    .services-circles-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
}
.service-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform .3s;
}
.service-circle-item:hover { transform: translateY(-6px); }
.service-circle-icon {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: box-shadow .3s, transform .3s;
}
.service-circle-item:hover .service-circle-icon {
    box-shadow: 0 12px 32px rgba(194,155,60,.45);
    transform: scale(1.08);
}
.service-circle-name {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    max-width: 140px;
    line-height: 1.4;
}

/* ── Parallax Banner ─────────────────────────────────────────── */
.parallax-banner {
    height: 420px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
@media (max-width: 768px) {
    /* Fixed attachment broken on iOS */
    .parallax-banner {
        background-attachment: scroll;
        height: 260px;
    }
}
.parallax-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
}

/* ── Hero Slider Enhancements ────────────────────────────────── */
@keyframes kenBurns {
    0%   { transform: scale(1)    translate(0,0); }
    100% { transform: scale(1.12) translate(-2%, -2%); }
}
.hero-slide.swiper-slide-active .hero-bg {
    animation: kenBurns 8s ease-out forwards;
}
.hero-line {
    width: 0; height: 3px;
    background: var(--primary-gold);
    margin-bottom: 20px;
    border-radius: 2px;
    transition: width .8s .2s ease;
}
.swiper-slide-active .hero-line { width: 60px; }
[dir="ltr"] .hero-line { margin-right: auto; }

/* ── Footer Redesign ─────────────────────────────────────────── */
.footer-map-strip { line-height: 0; }

.section-footer {
    background: var(--bg-darker, #0a0a0a);
    padding: 60px 0 0;
}
.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--bg-muted-rgba);
}
@media (max-width: 768px) {
    .footer-main-grid { grid-template-columns: 1fr; gap: 36px; }
}
.footer-logo { max-height: 80px; margin-bottom: 18px; }
.footer-about-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: .95rem; }
.footer-section-title {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(194,155,60,.3);
}
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: .95rem;
    line-height: 1.6;
}
.footer-contact-list li i {
    color: var(--primary-gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}
.footer-contact-list a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-contact-list a:hover { color: var(--primary-gold); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(194,155,60,.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-gold);
    font-size: 1rem;
    transition: all .3s;
}
.social-links a:hover { background: var(--primary-gold); color: #fff; border-color: var(--primary-gold); }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,.35);
    font-size: .85rem;
}

/* ── Admin Toggle Switch ──────────────────────────────────────── */
.neb-toggle-label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.neb-toggle-switch {
    position: relative; width: 44px; height: 24px;
    background: #ccc; border-radius: 12px; flex-shrink: 0;
    transition: background .25s;
}
.neb-toggle-label input { position: absolute; opacity: 0; width: 0; }
.neb-toggle-label input:checked + .neb-toggle-switch { background: #2271b1; }
.neb-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: left .25s;
}
.neb-toggle-label input:checked + .neb-toggle-switch::after { left: 23px; }

.neb-radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.neb-radio { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 1rem; }

/* ── Bug Fixes for Redesign ────────────────────────────────────── */
.footer-logo { max-height: 80px !important; width: auto !important; max-width: 100%; margin-bottom: 18px; }
@media (max-width: 768px) {
    .header-actions .lang-switch { display: none !important; }
}
.lang-link-mobile { display: none; }
@media (max-width: 768px) {
    .lang-link-mobile { display: block !important; }
}

/* --- Section: Stats --- */
.section-stats {
    padding: 80px 0;
    background-color: var(--bg-darker);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; }
}
.stat-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-gold);
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.2;
}
.stat-label {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

/* ── Partners Slider (Contact Page) ──────────────────────────────── */
.section-partners {
    padding: 60px 0;
    background: var(--bg-darker);
    overflow: hidden;
}
.partners-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.partners-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0;
    flex: 1;
}
.partners-track::-webkit-scrollbar { display: none; }
.partner-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-gold);
}
.partner-logo {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.partner-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}
.partner-contact {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.partners-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}
.partners-arrow:hover {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
}
[dir="ltr"] .partners-track { direction: ltr; }
[dir="rtl"] .partners-track { direction: rtl; }
@media (max-width: 768px) {
    .partner-card { flex: 0 0 180px; padding: 18px 14px; }
    .partner-logo { width: 70px; height: 70px; }
    .partners-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .partner-card { flex: 0 0 160px; }
    .partners-arrow { display: none; }
}

/* ── Single post with no Featured Image: no empty hero band ─────────────── */
.section-content--no-hero { padding-top: 145px; }
body.single .content-card .post-title {
    color: var(--primary-gold);
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* ── Single post content: let images fill the content width ─────────────── */
body.single .content-card .neb-rich-text img,
body.single .content-card .neb-rich-text figure,
body.single .content-card .neb-rich-text .wp-block-image,
body.single .content-card .neb-rich-text .wp-block-cover {
    width: 100%;
    max-width: 100%;
    height: auto;
}
body.single .content-card .neb-rich-text figure img,
body.single .content-card .neb-rich-text .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
body.single .content-card .neb-rich-text figure {
    margin-left: 0;
    margin-right: 0;
}
