:root {
    --primary-color: #C9A84C;
    --secondary-color: #C9A84C;
    --accent-color: #C9A84C;
    --ps-blue: #0070D1;
    --text-color: #F5F3EE;
    --text-dark: #0D1B2A;
    --text-light: #a89e88;
    --text-muted: #7a6f5e;
    --bg-color: #0D1B2A;
    --bg-light: #122132;
    --bg-medium: #0a1520;
    --bg-dark: #060f19;
    --bg-card: #152438;
    --border-color: #1e3347;
    --error-color: #d94f4f;
    --success-color: #00d26a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-headline: 'Barlow Condensed', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-ar: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
    --font-family-ar-footer: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
    --max-width: 1140px;
    --header-height: 64px;
}

[data-theme="light"] {
    --primary-color: #C9A84C;
    --secondary-color: #C9A84C;
    --accent-color: #C9A84C;
    --ps-blue: #0070D1;
    --text-color: #0D1B2A;
    --text-dark: #0D1B2A;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg-color: #F5F3EE;
    --bg-light: #EDE9E1;
    --bg-medium: #E0DAD0;
    --bg-dark: #F5F3EE;
    --bg-card: #ffffff;
    --border-color: #d4cfc4;
}

[data-theme="light"] header {
    background-color: #0D1B2A;
    border-bottom-color: #1e3347;
}

[data-theme="light"] .logo {
    color: #F5F3EE;
}

[data-theme="light"] nav a {
    color: #F5F3EE;
}

[data-theme="light"] .mobile-menu-btn span {
    background-color: #F5F3EE;
}

[data-theme="light"] .hero-ps h1,
[data-theme="light"] .hero-content h1 {
    color: #ffffff;
}

[data-theme="light"] .category-card,
[data-theme="light"] .feature-card {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(13, 27, 42, 0.06);
}

[data-theme="light"] .category-card:hover,
[data-theme="light"] .feature-card:hover {
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.1);
    border-color: rgba(201, 168, 76, 0.22);
}

[data-theme="light"] footer {
    background-color: #0D1B2A;
}

[data-theme="light"] .page-header h1 {
    color: #ffffff;
}

[data-theme="light"] .product-category-section {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(13, 27, 42, 0.06);
}

[data-theme="light"] .category-header {
    background: linear-gradient(135deg, #EDE9E1 0%, #E0DAD0 100%);
}

[data-theme="light"] .products-list {
    background-color: #F5F3EE;
}

[data-theme="light"] .product-item {
    background-color: #ffffff;
}

[data-theme="light"] .contact-info {
    background-color: #ffffff;
    border-color: rgba(201, 168, 76, 0.18);
    box-shadow: 0 2px 10px rgba(13, 27, 42, 0.08);
}

[data-theme="light"] .contact-detail-row {
    border-bottom-color: var(--border-color);
}

[data-theme="light"] .contact-detail-row:first-child {
    border-top-color: var(--border-color);
}

[data-theme="light"] .contact-closing-note {
    color: var(--text-muted);
    opacity: 0.75;
}

[data-theme="light"] .about-list {
    background-color: #F5F3EE;
}

[data-theme="light"] .main-nav {
    background-color: #0D1B2A;
}


*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.reveal-up {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: var(--reveal-delay, 0s);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-up.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.products-catalog .reveal-up,
.products-catalog-heading .reveal-up {
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.products-catalog .reveal-up.is-visible,
.products-catalog-heading .reveal-up.is-visible {
    transform: none;
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .products-catalog .reveal-up,
    .products-catalog-heading .reveal-up,
    .products-catalog .reveal-up.is-visible,
    .products-catalog-heading .reveal-up.is-visible {
        transform: none;
        transition: none;
        transition-delay: 0s;
    }
}

.banner-scale {
    transform: scale(1.08);
    transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.banner-scale.is-visible {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .banner-scale,
    .banner-scale.is-visible {
        transform: none;
        transition: none;
    }
}

.banner-parallax-wrap {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 3rem;
    position: relative;
    will-change: transform;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
    margin: 0 auto;
    display: block;
}

[data-theme="light"] .section-divider {
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.22), transparent);
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    letter-spacing: -0.011em;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html[dir="rtl"] body {
    font-family: var(--font-family-ar);
    letter-spacing: 0;
}

a[href^="tel:"] {
    direction: ltr;
    unicode-bidi: embed;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    font-family: var(--font-family-ar);
    letter-spacing: 0;
}

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

header {
    background-color: #0D1B2A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: box-shadow 0.25s ease;
}

header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5F3EE;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-icon-white {
    display: block;
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #F5F3EE;
    margin-inline-start: 0.5rem;
    letter-spacing: -0.01em;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: rgba(245, 243, 238, 0.7);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
    font-size: 0.875rem;
    letter-spacing: 0;
}

nav a:hover,
nav a.active {
    color: #F5F3EE;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-controls {
    display: none;
}

.theme-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: #F5F3EE;
}

.theme-toggle:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.05);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

.theme-toggle .icon-moon {
    display: none;
}

[data-theme="light"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="light"] .theme-toggle .icon-moon {
    display: block;
}

.lang-switch {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0 0.75rem;
    height: 36px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F5F3EE;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    min-width: 40px;
    font-family: inherit;
    flex-shrink: 0;
}

.lang-switch:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #F5F3EE;
    margin: 5px 0;
    transition: 0.3s;
}

main {
    flex: 1;
    margin-top: var(--header-height);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    height: 44px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    letter-spacing: 0;
    font-family: inherit;
}

.btn-primary {
    background-color: #C9A84C;
    color: #0D1B2A;
}

.btn-primary:hover {
    background-color: #d4b560;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    filter: brightness(1.08);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.2);
}

.btn-primary:focus-visible {
    outline: 2px solid #C9A84C;
    outline-offset: 2px;
}

.btn-outline {
    background-color: transparent;
    color: rgba(245, 243, 238, 0.8);
    border: 1px solid rgba(245, 243, 238, 0.2);
}

.btn-outline:hover {
    border-color: rgba(245, 243, 238, 0.4);
    color: #F5F3EE;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.btn-outline:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-lg {
    padding: 0.75rem 2rem;
    height: 48px;
    font-size: 0.9rem;
}


section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-family-headline);
    font-size: 2.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0.625rem auto 0;
    line-height: 1.6;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.section-overline {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.section-header--left {
    text-align: left;
}

html[dir="rtl"] .section-header--left {
    text-align: right;
}

.section-header--left p {
    margin-left: 0;
    margin-right: 0;
}

.section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.divider-line {
    padding: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.2) 50%, transparent 100%);
}

[data-theme="light"] .divider-line {
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.12) 50%, transparent 100%);
}

.hero-ps {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 3rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0D1B2A;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.hero-left {
    text-align: left;
}

html[dir="rtl"] .hero-left {
    text-align: right;
}

.hero-eyebrow {
    display: none;
    margin-bottom: 1.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.08em;
}

.hero-ps h1 {
    font-family: var(--font-family-headline);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    color: #F5F3EE;
    line-height: 0.95;
}

.hero-title-accent {
    color: var(--accent-color);
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(245, 243, 238, 0.9);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 0.95rem;
    margin: 0 0 2.5rem 0;
    color: rgba(245, 243, 238, 0.5);
    font-weight: 400;
    line-height: 1.7;
    max-width: 440px;
}

html[dir="rtl"] .hero-subtitle {
    margin: 0 0 2.5rem 0;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

html[dir="rtl"] .hero-cta {
    justify-content: flex-end;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-credentials {
    width: 100%;
    max-width: 340px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
}

.credential-item {
    text-align: left;
    padding: 1.75rem 1.25rem;
    background: rgba(13, 27, 42, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

html[dir="rtl"] .credential-item {
    text-align: right;
}

.credential-value {
    display: block;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.credential-label {
    display: block;
    font-size: 0.62rem;
    color: rgba(245, 243, 238, 0.38);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    line-height: 1.4;
}

.who-we-serve {
    padding: 5.625rem 0 5.625rem;
    background-color: var(--bg-light);
}

.who-we-serve .section-header {
    margin-bottom: 2.25rem;
}

.who-we-serve .section-header h2 {
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--text-color);
}

.serve-cards-wrap {
    position: relative;
}

.serve-cards-wrap::before {
    content: '';
    position: absolute;
    inset: -2rem -3rem;
    background: radial-gradient(ellipse 75% 110% at 50% 50%, rgba(201, 168, 76, 0.055) 0%, transparent 68%);
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.serve-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background-color 0.3s ease;
}

.serve-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

[data-theme="light"] .serve-card:hover {
    border-color: rgba(201, 168, 76, 0.22);
    box-shadow: 0 10px 28px rgba(13, 27, 42, 0.1);
}

.serve-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.serve-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0;
}

.serve-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: gap 0.2s ease;
}

.serve-card-link:hover {
    gap: 0.5rem;
}

.categories-section {
    padding: 5.625rem 0 5rem;
    background-color: var(--bg-color);
}

.categories-section .section-header {
    margin-bottom: 2.25rem;
}

.categories-section .section-header h2 {
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--text-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.category-card {
    background-color: #192e45;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem 2rem;
    min-height: 160px;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background-color 0.3s ease, color 0.3s ease;
    text-align: left;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

html[dir="rtl"] .category-card {
    text-align: right;
    align-items: flex-end;
}

.category-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.category-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.category-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.features-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.features-section .section-header h2 {
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 1.75rem 0 3rem;
    background: var(--bg-color);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 3.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-card);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.65s ease-out, transform 0.65s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
    font-family: var(--font-family-headline);
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cta-main {
    font-size: 1rem;
    color: rgba(245, 243, 238, 0.60);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

[data-theme="light"] .cta-main {
    color: rgba(13, 27, 42, 0.55);
}

.cta-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    line-height: 1.5;
}

.cta-content .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

[data-theme="light"] .cta-content .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.18);
}

.page-header {
    background: #0D1B2A;
    color: white;
    padding: 4rem 0 2.25rem;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
    pointer-events: none;
}


.page-header .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.page-header .page-subtitle {
    font-size: 0.95rem;
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    line-height: 1.5;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.75);
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-credentials-col h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.about-credentials-col p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.credential-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    border-inline-start: 2px solid var(--primary-color);
}

.credential-badge-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.credential-badge-text strong {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.credential-badge-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-map-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.35rem;
}

.about-map-col p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

#world-map {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.map-legend {
    display: none;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C9A84C;
    flex-shrink: 0;
}

.about-map-section {
    padding: 4rem 0 5rem;
    background-color: var(--bg-color);
}

.map-section .section-header {
    margin-bottom: 2rem;
}

.about-map-inner {
    max-width: 860px;
    margin: 0 auto;
}

.about-map-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

.about-map-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    opacity: 0.85;
}

.about-intro {
    padding: 3.5rem 0 4.5rem;
    background-color: var(--bg-color);
}

.about-intro p {
    max-width: 680px;
    margin: 0 auto 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-cards-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background-color 0.3s ease, color 0.3s ease;
}

.about-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .about-card:hover {
    border-color: rgba(201, 168, 76, 0.18);
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.08);
}

.about-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-positioning-section {
    padding: 4rem 0 3.5rem;
    background-color: var(--bg-color);
}

.about-positioning-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.about-metrics {
    padding: 3rem 0;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.about-metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--border-color);
}

.about-metric-item:last-child {
    border-right: none;
}

.about-metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.about-approach {
    padding: 4rem 0;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.operations-section .section-header {
    text-align: center;
}

.about-approach-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about-approach-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, background-color 0.3s ease, color 0.3s ease;
}

.about-approach-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .about-approach-card:hover {
    border-color: rgba(201, 168, 76, 0.18);
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.08);
}

.about-approach-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.about-approach-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.about-closing {
    padding: 4.5rem 0;
    background-color: var(--bg-color);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.final-statement {
    margin-bottom: 4rem;
}

.about-closing-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-disclaimer-section {
    padding: 0 0 4rem;
    background-color: var(--bg-color);
}

.about-disclaimer-text {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

#world-map .jvm-tooltip {
    background-color: #C9A84C;
    color: #0D1B2A;
    font-family: var(--font-family);
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    border: none;
}

html[dir="rtl"] #world-map .jvm-tooltip {
    font-family: var(--font-family-ar);
}

.products-hero {
    position: relative;
    width: 100%;
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: left;
    overflow: hidden;
}

.products-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('public/assets/playstation/01-MAIN-HEADER/HOME_PAGE_HEADER.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: brightness(1.14) contrast(1.06);
    z-index: 0;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 0.08) 0%,
        rgba(10, 10, 10, 0.10) 40%,
        rgba(10, 10, 10, 0.32) 70%,
        rgba(10, 10, 10, 0.42) 100%);
    z-index: 1;
}

.products-sticky-nav {
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.products-sticky-nav .container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-sticky-nav .container::-webkit-scrollbar {
    display: none;
}

.products-sticky-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.5rem 0.9rem;
    color: rgba(245, 243, 238, 0.55);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.products-sticky-nav a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid rgba(201, 168, 76, 0.5);
}

.products-sticky-nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

[data-theme="light"] .products-sticky-nav {
    background-color: #0D1B2A;
    border-bottom-color: #1e3347;
}

[data-theme="light"] .products-sticky-nav a {
    color: rgba(245, 243, 238, 0.6);
}

[data-theme="light"] .products-sticky-nav a:hover {
    color: var(--primary-color);
}

.product-category-section {
    margin-bottom: 2.5rem;
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.category-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #152438 0%, #0a1520 100%);
    border-bottom: 1px solid var(--border-color);
}

.category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--bg-card);
}

.category-info h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.category-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    padding: 0;
    background-color: var(--border-color);
}

.product-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-item:hover {
    background-color: var(--bg-card);
}

.product-image {
    width: 100%;
    max-width: 160px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: var(--bg-card);
}

.product-content {
    width: 100%;
}

.product-item h3 {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-item p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.55;
    text-align: left;
}

html[dir="rtl"] .product-item p {
    text-align: right;
}

.category-quote-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(201, 168, 76, 0.04);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    flex-wrap: wrap;
}

.category-quote-prompt p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

[data-theme="light"] .btn-quote {
    border-color: rgba(201, 168, 76, 0.2);
}

.btn-quote:hover {
    background-color: var(--primary-color);
    color: #0D1B2A;
    border-color: var(--primary-color);
}

.products-note-box {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.products-note-box p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* ─── Products Catalog Redesign ─── */


.products-catalog {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding-bottom: 5rem;
}

.products-catalog-heading {
    padding: 0.5rem 0 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.products-catalog-heading .section-overline {
    display: block;
    margin-bottom: 0.5rem;
}

.products-catalog-heading h1 {
    font-family: var(--font-family-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #F5F3EE;
    letter-spacing: -0.01em;
    line-height: 1;
    margin: 0 0 0.625rem;
}

.products-catalog-heading p {
    font-size: 0.95rem;
    color: rgba(245, 243, 238, 0.40);
    max-width: 500px;
    line-height: 1.6;
    margin: 0 auto;
}

.products-catalog-ecosystem-tag {
    font-size: 0.7rem;
    font-weight: 600;
    font-variant: small-caps;
    letter-spacing: 0.14em;
    color: rgba(245, 243, 238, 0.4);
    text-transform: uppercase;
    margin: 0.5rem auto 0.9rem;
    max-width: 500px;
    line-height: 1;
}

[data-theme="light"] .products-catalog-ecosystem-tag {
    color: rgba(13, 27, 42, 0.38);
}

[data-theme="light"] .products-catalog-heading h1 {
    color: #0D1B2A;
}

[data-theme="light"] .products-catalog-heading p {
    color: rgba(13, 27, 42, 0.45);
}

[data-theme="light"] .products-catalog {
    background: #F0EDE6;
}

#consoles,
#controllers,
#audio,
#accessories,
#storage {
    scroll-margin-top: 124px;
}

.products-catalog-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: transparent;
}

[data-theme="light"] .products-catalog-section {
    border-bottom-color: rgba(13, 27, 42, 0.08);
}

.products-catalog-section:last-of-type {
    border-bottom: none;
}

.products-catalog-header {
    text-align: center;
    margin-bottom: 22px;
}

.products-catalog-header .section-overline {
    display: block;
    margin-bottom: 0.5rem;
}

.products-catalog-header h2 {
    font-family: var(--font-family-headline);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #F5F3EE;
    margin: 0;
}

[data-theme="light"] .products-catalog-header h2 {
    color: #0D1B2A;
}

.products-catalog-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(245, 243, 238, 0.5);
    text-align: center;
    line-height: 1.6;
    margin: 0.6rem 0 0;
    letter-spacing: 0.01em;
}

[data-theme="light"] .products-catalog-subtitle {
    color: rgba(13, 27, 42, 0.5);
}

.products-catalog-section picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.products-section-banner {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin-bottom: 0;
    filter: brightness(0.88);
    will-change: transform;
}

.products-section-banner--contain {
    object-fit: contain;
    max-height: 380px;
    background: rgba(10, 10, 10, 0.35);
    padding: 0;
}

[data-theme="light"] .products-section-banner--contain {
    background: rgba(240, 237, 230, 0.5);
}

.products-section-banner--cover {
    object-fit: cover;
    object-position: center 38%;
    height: 340px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.9);
    margin-top: 0;
}

#consoles .products-section-banner {
    height: 420px;
    object-fit: cover;
    object-position: center 42%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    filter: brightness(0.96) contrast(1.06);
}

#controllers .products-section-banner {
    height: 400px;
    object-fit: contain;
    object-position: center center;
    background: rgba(10, 10, 10, 0.9);
    padding: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    filter: brightness(0.96) contrast(1.06);
}

#storage .products-section-banner {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    max-height: none;
    background: none;
    filter: brightness(0.88) contrast(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

#audio .products-section-banner {
    height: 540px;
    object-fit: contain;
    object-position: center 30%;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    filter: brightness(0.96) contrast(1.06);
}

#accessories .products-section-banner {
    background: rgba(4, 4, 4, 0.58);
    filter: brightness(0.82) contrast(1.07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 1.5rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 20px 18px;
    cursor: default;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    will-change: transform;
}

[data-theme="light"] .product-card {
    background: #ffffff;
    border-color: rgba(13, 27, 42, 0.12);
    box-shadow: 0 2px 8px rgba(13, 27, 42, 0.08);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    border-color: rgba(201, 168, 76, 0.4);
}

[data-theme="light"] .product-card:hover {
    border-color: rgba(201, 168, 76, 0.18);
    box-shadow: 0 14px 44px rgba(13, 27, 42, 0.14), 0 0 0 1px rgba(201, 168, 76, 0.18);
}

.card-inner {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card-img {
    width: 100%;
    max-height: 170px;
    height: 170px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
    will-change: transform;
}

.product-card-img--earbuds {
    max-height: 170px;
    height: 170px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

[data-theme="light"] .product-card-img {
    filter: drop-shadow(0 4px 12px rgba(13, 27, 42, 0.12));
}

.product-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #F5F3EE;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.4;
    margin: 10px 0 0;
}

[data-theme="light"] .product-card-title {
    color: #0D1B2A;
}

.short-desc {
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(245, 243, 238, 0.65);
    text-align: center;
    margin: 8px 0 6px;
    width: 100%;
    max-height: 4.65em;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.product-card:hover .short-desc {
    max-height: 9.3em;
}

[data-theme="light"] .short-desc {
    color: rgba(13, 27, 42, 0.65);
}

.card-footnote {
    font-size: 0.67rem;
    line-height: 1.4;
    color: rgba(245, 243, 238, 0.38);
    margin: 2px 0 0;
    font-style: italic;
    text-align: center;
    width: 100%;
}

[data-theme="light"] .card-footnote {
    color: rgba(13, 27, 42, 0.38);
}

.products-section-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(245, 243, 238, 0.5);
    text-transform: uppercase;
    margin: 0.35rem 0 0;
}

[data-theme="light"] .products-section-tagline {
    color: rgba(13, 27, 42, 0.45);
}

.products-section-intro {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 243, 238, 0.7);
    max-width: 760px;
    margin: 0.625rem auto 0;
    text-align: center;
}

[data-theme="light"] .products-section-intro {
    color: rgba(13, 27, 42, 0.65);
}

.products-section-intro-note {
    font-size: 0.72rem;
    color: rgba(245, 243, 238, 0.4);
    font-style: italic;
    margin: 0.35rem 0 0;
    text-align: center;
}

[data-theme="light"] .products-section-intro-note {
    color: rgba(13, 27, 42, 0.38);
}

.products-section-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #C9A84C;
    text-transform: uppercase;
    margin: 0.5rem 0 0;
}

.products-footnotes {
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 1rem;
    margin-bottom: 0;
}

[data-theme="light"] .products-footnotes {
    border-top-color: rgba(13, 27, 42, 0.08);
}

.products-footnotes p {
    font-size: 0.72rem;
    line-height: 1.6;
    color: rgba(245, 243, 238, 0.4);
    margin: 0 0 0.25rem;
}

[data-theme="light"] .products-footnotes p {
    color: rgba(13, 27, 42, 0.45);
}

.products-engagement {
    text-align: center;
    padding: 1.75rem 0 2.5rem;
}

.products-engagement h3 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.products-engagement > p {
    font-size: 0.95rem;
    color: rgba(245, 243, 238, 0.50);
    margin: 0 0 1.5rem;
}

[data-theme="light"] .products-engagement > p {
    color: rgba(13, 27, 42, 0.6);
}

.products-engagement-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0;
}

.products-engagement-contacts a {
    font-size: 1rem;
    color: rgba(201, 168, 76, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.products-engagement-contacts a:hover {
    color: #C9A84C;
    text-decoration: underline;
}

[data-theme="light"] .products-engagement-contacts a {
    color: #C9A84C;
}

[dir="rtl"] .short-desc,
[dir="rtl"] .card-footnote {
    text-align: center;
}

.products-quote-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.products-quote-row .btn-quote {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    padding: 0.625rem 1.75rem;
}

.contact-section-main {
    padding: 60px 0 80px;
}

.contact-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem 2.5rem;
    background-color: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.contact-info h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-size: 14px;
    opacity: 0.8;
}

.business-metadata {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-weight: 500;
    opacity: 0.75;
    line-height: 1.5;
    max-width: 260px;
}

.contact-details {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    color: var(--text-light);
}

.contact-detail-row:first-child {
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-scope-list {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-scope-list li {
    font-size: 13px;
    color: var(--text-light);
    padding-inline-start: 0.75rem;
    position: relative;
    opacity: 0.8;
    margin-bottom: 6px;
}

.contact-scope-list li::before {
    content: '–';
    position: absolute;
    inset-inline-start: 0;
    color: var(--primary-color);
    opacity: 0.7;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 170, 90, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 8px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.18s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-detail-row:hover .contact-icon {
    transform: translateY(-1px);
    border-color: rgba(200, 170, 90, 0.28);
    background: rgba(200, 170, 90, 0.10);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

[data-theme="light"] .contact-icon {
    background: rgba(200, 170, 90, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-details strong {
    color: var(--text-color);
    font-size: 0.85rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.85rem;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-closing-section {
    padding: 2.25rem 0 3.5rem;
    text-align: center;
}

.contact-closing-note {
    font-size: 0.875rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
    opacity: 0.75;
}

.b2b-note {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.65;
    max-width: 640px;
    margin: 50px auto 0;
    color: var(--text-light);
}

.trade-only {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 8px;
    color: var(--text-light);
}

@media (prefers-reduced-motion: reduce) {
    .contact-info,
    .contact-icon {
        transition: none !important;
        transform: none !important;
    }
}


footer {
    background-color: #0D1B2A;
    color: #F5F3EE;
    padding: 2.5rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1.5rem;
}

.footer-brand {
    padding-inline-end: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    color: #F5F3EE;
}

.footer-logo-icon {
    height: 36px;
    width: 36px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #F5F3EE;
}

.footer-brand p {
    color: rgba(245, 243, 238, 0.4);
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-links,
.footer-contact {
    padding-inline-start: 1.5rem;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.06);
}

html[dir="rtl"] .footer-links,
html[dir="rtl"] .footer-links h4,
html[dir="rtl"] .footer-links ul,
html[dir="rtl"] .footer-links li,
html[dir="rtl"] .footer-links a,
html[dir="rtl"] .footer-contact,
html[dir="rtl"] .footer-contact h4,
html[dir="rtl"] .footer-contact p,
html[dir="rtl"] .footer-contact a,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-brand p,
html[dir="rtl"] .footer-brand a,
html[dir="rtl"] .footer-brand span {
    font-family: var(--font-family-ar-footer) !important;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(245, 243, 238, 0.5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(245, 243, 238, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(245, 243, 238, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(245, 243, 238, 0.2);
    max-width: 600px;
    margin: 0 auto 0.5rem;
    line-height: 1.5;
    text-align: center;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(245, 243, 238, 0.3);
}

.section-default {
    padding: 4rem 0;
}

.section-compact {
    padding: 3rem 0;
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .phone-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .country-dropdown-btn {
        border-radius: 6px;
        border-right: 1px solid var(--border-color);
        width: 100%;
    }

    .phone-number-input {
        border-radius: 6px !important;
    }

    html[dir="rtl"] .country-dropdown-btn {
        border-radius: 6px;
        border-left: 1px solid var(--border-color);
        border-right: 1px solid var(--border-color);
    }

    html[dir="rtl"] .phone-number-input {
        border-radius: 6px !important;
        border-right: 1px solid var(--border-color);
    }

    .country-dropdown-list {
        min-width: 100%;
    }
}

html[dir="rtl"] nav a.active::after {
    left: 0;
    right: 0;
}

@media print {
    header, footer, .hero-buttons, .lang-toggle {
        display: none;
    }

    main {
        margin-top: 0;
    }
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.who-we-serve,
.categories-section,
.features-section,
.cta-section,
.about-intro,
.about-metrics,
.about-approach,
.about-cards-section,
.about-closing,
.about-disclaimer-section,
.products-section {
    transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #audio .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-metric-item:nth-child(2) {
        border-right: none;
    }

    .about-metric-item:nth-child(3) {
        border-top: 1px solid var(--border-color);
    }

    .about-metric-item:nth-child(4) {
        border-top: 1px solid var(--border-color);
    }

    .about-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content {
        gap: 3rem;
    }

    .hero-ps h1 {
        font-size: 3.75rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: #0D1B2A;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        padding-top: 1.25rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-ps {
        min-height: unset;
        padding: 4rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

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

    html[dir="rtl"] .hero-left {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    html[dir="rtl"] .hero-cta {
        justify-content: center;
    }

    .hero-ps h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-credentials {
        max-width: 100%;
    }

    .page-header {
        min-height: 160px;
        padding: 4rem 0 3rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header .page-subtitle {
        font-size: 0.9rem;
    }

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

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

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

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

    .footer-brand {
        padding-inline-end: 0;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        border-inline-start: none;
        padding-inline-start: 0;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.875rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .about-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .category-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .category-image {
        height: 160px;
        max-width: 100%;
    }

    .products-list {
        grid-template-columns: 1fr;
    }

    .product-item p {
        text-align: center;
    }

    .category-quote-prompt {
        flex-direction: column;
        text-align: center;
    }

    .products-hero {
        min-height: 156px;
    }

    .products-hero-bg {
        background-size: contain;
        background-position: center center;
        background-color: #003087;
    }

    .products-sticky-nav a {
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
        font-weight: 600;
    }

    #world-map {
        height: 260px;
    }

    .map-legend {
        gap: 0.6rem 1rem;
    }

    .about-metrics-grid {
        grid-template-columns: 1fr;
    }

    .about-metric-item {
        border-right: none;
        border-top: 1px solid var(--border-color);
        padding: 1.25rem 0;
    }

    .about-metric-item:first-child {
        border-top: none;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-catalog-section {
        padding: 40px 0;
    }

    .products-section-banner {
        border-radius: 8px;
    }

    #consoles .products-section-banner {
        height: 220px;
        object-fit: cover;
        object-position: center 42%;
    }

    #controllers .products-section-banner {
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }

    #audio .products-section-banner {
        height: 240px;
        object-fit: contain;
    }

    #storage .products-section-banner {
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }

    #accessories .products-section-banner {
        height: 200px;
        object-fit: contain;
    }

    .product-card-img {
        height: 140px;
        max-height: 140px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-hero {
        min-height: 120px;
    }

    #consoles .products-section-banner {
        height: 170px;
        object-fit: cover;
        object-position: center 42%;
    }

    #controllers .products-section-banner {
        height: 160px;
        object-fit: cover;
        object-position: center center;
    }

    #audio .products-section-banner {
        height: 190px;
        object-fit: contain;
    }

    #storage .products-section-banner {
        height: 160px;
        object-fit: cover;
        object-position: center center;
    }

    #accessories .products-section-banner {
        height: 160px;
        object-fit: contain;
    }

    .product-card-img {
        height: 120px;
        max-height: 120px;
    }
}
