/* =====================
   MASQUE FONT DECLARATION
   ===================== */
@font-face {
    font-family: 'Masque';
    src: url('assets/fonts/MASQUE__.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =====================
   ARABIC FONT DECLARATIONS
   ===================== */
@font-face {
    font-family: 'Cairo Play';
    src: url('assets/fonts/Cairo_Play/static/CairoPlay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kufam';
    src: url('assets/fonts/Kufam/static/Kufam-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Paytone One Font for EN, FR, PL */
@font-face {
    font-family: 'Paytone One';
    src: url('assets/fonts/Paytone_One/PaytoneOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =====================
   THEME VARIABLES
   ===================== */
:root {
    --color-primary: #ff3a3a;
    --color-corporate: #3a86ff;
    --color-dark-bg: #0a0a0a;
    --color-light-bg: #ffffff;
    --color-dark-text: #ffffff;
    --color-light-text: #0a0a0a;
    --hover-easing: cubic-bezier(0.23, 1, 0.32, 1);
    --return-easing: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}



/* =====================
   BASE
   ===================== */
html, body {
    height: 100%;
    min-height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-light-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}



p {
    line-height: 1.5em;
}

h1+p, p+p {
    margin-top: 10px;
}

/* =====================
   LOADING SCREEN
   ===================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-text {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    font-family: 'Varela Round', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.welcome-message {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.18);
    letter-spacing: 0.03em;
}

.welcome-desc {
    color: #f3f3f3;
    font-family: 'Raleway', sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0,0,0,0.13);
    letter-spacing: 0.01em;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Jumping Cube Loader Animation */
.loader {
    width: 48px;
    height: 48px;
    margin: auto;
    position: relative;
}

.loader:before {
    content: '';
    width: 48px;
    height: 5px;
    background: #f0808050;
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 50%;
    animation: shadow324 0.5s linear infinite;
}

.loader:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #f08080;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
    15% {
        border-bottom-right-radius: 3px;
    }

    25% {
        transform: translateY(9px) rotate(22.5deg);
    }

    50% {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75% {
        transform: translateY(9px) rotate(67.5deg);
    }

    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes shadow324 {
    0%, 100% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1);
    }
}

/* =====================
   NAVIGATION BAR
   ===================== */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.sticky-top {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

body.fixed-nav {
    padding-top: 76px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333 !important;
}

.brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #555 !important;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #667eea !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =====================
   CONTAINER
   ===================== */
.container {
    flex: 1 0 auto;
    padding: 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 3;
    /* min-height: 100vh; */
    min-height: 0;
}

/* =====================
   3D CARD SYSTEM
   ===================== */
.card-wrap {
    margin: 10px;
    transform: perspective(800px);
    transform-style: preserve-3d;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    opacity: 1;
    animation: fadeInUp 0.6s ease forwards;
}

.card-wrap:nth-child(1) { animation-delay: 0.1s; }
.card-wrap:nth-child(2) { animation-delay: 0.2s; }
.card-wrap:nth-child(3) { animation-delay: 0.3s; }
.card-wrap:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: perspective(800px) translateY(30px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: perspective(800px) translateY(0) rotateX(0deg);
    }
}

.card-wrap:hover {
    .card-info {
        transform: translateY(0);
    }
    .card-info p {
        opacity: 1;
    }
    .card-info, .card-info p {
        transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .card-info:after {
        transition: 5s cubic-bezier(0.23, 1, 0.32, 1);
        opacity: 1;
        transform: translateY(0);
    }
    .card-bg {
        transition: 
            0.6s cubic-bezier(0.23, 1, 0.32, 1),
            opacity 5s cubic-bezier(0.23, 1, 0.32, 1);
        opacity: 0.8;
    }
    .card {
        transition:
            0.6s cubic-bezier(0.23, 1, 0.32, 1),
            box-shadow 2s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow:
            rgba(255, 255, 255, 0.2) 0 0 40px 5px,
            rgba(255, 255, 255, 1) 0 0 0 1px,
            rgba(0, 0, 0, 0.66) 0 30px 60px 0,
            inset #333 0 0 0 5px,
            inset rgba(255, 255, 255, 0.5) 0 0 0 6px;
    }
}

.card {
    position: relative;
    flex: 0 0 240px;
    width: 240px;
    height: 320px;
    background-color: #333;
    overflow: hidden;
    border-radius: 10px;
    box-shadow:
        rgba(0, 0, 0, 0.66) 0 30px 60px 0,
        inset #333 0 0 0 5px,
        inset rgba(255, 255, 255, 0.5) 0 0 0 6px;
    transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border: 2px solid #fff;
}

.card-bg {
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition:
        1s cubic-bezier(0.445, 0.05, 0.55, 0.95),
        opacity 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    pointer-events: none;
}

.card-info {
    padding: 20px;
    position: absolute;
    bottom: 0;
    color: #fff;
    transform: translateY(40%);
    transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    
    p {
        opacity: 0;
        text-shadow: rgba(0, 0, 0, 1) 0 2px 3px;
        transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    
    * {
        position: relative;
        z-index: 1;
    }
    
    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
        background-blend-mode: overlay;
        opacity: 0;
        transform: translateY(100%);
        transition: 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    }
}

.card-info h1 {
    font-family: 'Masque', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: normal;
    text-shadow: rgba(0, 0, 0, 0.5) 0 10px 10px;
    margin-bottom: 0.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card-info p {
    font-family: 'Masque', Arial, sans-serif;
    font-size: 1.02rem;
    font-weight: normal;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-wrap.coming-soon {
    pointer-events: none;
    opacity: 0.7;
}

.card-wrap.coming-soon:hover {
    transform: none;
}

.card-wrap.coming-soon .card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.coming-soon-badge {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: rgba(255, 58, 58, 0.95) !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    z-index: 1000 !important;
    display: block !important;
    animation: pulse 2s infinite !important;
    box-shadow: 0 2px 8px rgba(255, 58, 58, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.card-wrap.coming-soon:hover .coming-soon-badge {
    animation: none;
    transform: scale(1.1);
}

.card-wrap.coming-soon:hover .card-info {
    transform: translateY(0);
}

.card-wrap.coming-soon:hover .card-info p {
    opacity: 1;
}

.card-wrap.coming-soon:hover .card-bg {
    opacity: 0.8;
}

.card-wrap.coming-soon:hover .card {
    box-shadow: rgba(255, 255, 255, 0.2) 0 0 40px 5px;
}

@media (max-width: 768px) {
    .coming-soon-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 40px;
        gap: 15px;
    }
    
    .card {
        flex: 0 0 200px;
        width: 200px;
        height: 280px;
    }
    
    .card-info h1 {
        font-size: 16px;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .card {
        flex: 0 0 160px;
        width: 160px;
        height: 240px;
    }
    
    .card-info h1 {
        font-size: 14px;
    }
    
    .card-info {
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card-wrap, .card, .card-bg, .card-info, .card-info p, .card-info:after {
        transition: none !important;
        animation: none !important;
    }
    
    .card-wrap:hover .card {
        transform: none !important;
    }
    

}

/* =====================
   LAYOUT
   ===================== */
.layout__split-screen {
    display: flex;
    height: 100vh;
}

/* =====================
   COMPONENTS
   ===================== */
.component__panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: 
        filter 0.6s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: filter, transform;
    border-radius: 12px;
    margin: 10px;
}
.component__panel {
    filter: brightness(0.9) contrast(1.1);
    transform: scale(1);
}
.layout__split-screen:hover .component__panel:not(:hover) {
    filter: blur(4px) brightness(0.6);
    transform: scale(0.98);
}
.component__panel:hover {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.01);
    z-index: 2;
}
.component__panel--photo {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
               url('https://images.unsplash.com/photo-1504208434309-cb69f4fe52b0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.component__panel--corporate {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
               url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -5%;
}
.component__panel-content {
    transition: none;
    will-change: auto;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
}
.component__panel:hover .component__panel-content {
    transform: translateY(-5px);
}
.component__panel-title, .component__panel-title--creative, .component__panel-title--corporate, .component__panel-subtitle {
    border: none;
    box-shadow: none;
    background: none;
    text-decoration: none;
}
.component__panel-title {
    color: #fff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.7);
    margin: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s;
}
.component__panel-title--corporate {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 500;
    font-size: 2.7rem;
    letter-spacing: 0.08em;
    text-align: right;
    white-space: pre;
    position: relative;
}
.typewriter-cursor {
    display: inline-block;
    width: 1ch;
    color: #fff;
    opacity: 1;
    animation: cursor-blink 0.7s steps(1) infinite;
    font-family: inherit;
    font-size: inherit;
    vertical-align: bottom;
}
@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.component__panel-title--creative {
    font-family: 'Space Mono', 'Courier New', monospace;
    font-weight: 400;
    font-size: 2.7rem;
    letter-spacing: 0.08em;
    text-align: left;
    white-space: pre;
    position: relative;
}
.wave-letter {
    display: inline-block;
    opacity: 1;
    transform: none;
    transition: opacity 0.2s, transform 0.2s;
}

/* Reduced motion: show instantly, no animation */
@media (prefers-reduced-motion: reduce) {
    .component__panel-title, .wave-letter {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .typewriter-cursor { animation: none !important; }
}

/* Mobile: fade-in titles instead of wave/typewriter */
@media (max-width: 700px) {
    .component__panel-title, .wave-letter {
        opacity: 1 !important;
        transform: none !important;
        transition: opacity 0.5s !important;
    }
    .typewriter-cursor { animation: none !important; }
}

.component__panel-subtitle {
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 1rem;
    color: var(--color-text);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.component__i-dot {
    display: inline-block;
    position: relative;
    height: 1em;
    width: 1em;
    vertical-align: middle;
    margin: 0 -0.1em;
}
.component__creative-dot {
    color: var(--color-primary);
    position: absolute;
    top: -0.7em;
    left: calc(50% - 0.13em);
    width: 0.25em;
    height: 0.25em;
    animation: orbit-tight 4s linear infinite;
    transform-origin: 0.13em 0.7em;
    font-size: 1em;
}
@keyframes orbit-tight {
    0% { transform: rotate(0deg) translateX(0.18em) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(0.18em) rotate(-360deg); }
}
.component__static-dot {
    color: var(--color-primary);
    position: absolute;
    top: -0.7em;
    left: calc(50% - 0.13em);
    width: 0.25em;
    height: 0.25em;
    font-size: 1em;
}

/* Corporate document trail effect */
.component__doc-trail {
    display: inline-block;
    position: absolute;
    left: 50%;
    width: 0.25em;
    height: 0.25em;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

/* Creative dot glow (for GSAP pulse) */
.component__creative-dot {
    box-shadow: 0 0 0 0 #ff3a3a;
    transition: box-shadow 0.2s;
}

/* Accessibility: reduced motion disables animation */
[data-reduced-motion="true"] .component__creative-dot,
[data-reduced-motion="true"] .component__static-dot,
[data-reduced-motion="true"] .component__doc-trail {
    animation: none !important;
    box-shadow: none !important;
    transition: none !important;
}

/* Minimalist Time Corner Styles */
.component__panel {
    position: relative;
}
.component__time-corner {
    position: absolute;
    top: 8px;
    z-index: 2;
    max-width: 160px;
    background: rgba(0,0,0,0.3);
    border-radius: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    margin: 0;
}
.component__time-corner--left {
    left: 8px;
    align-items: flex-start;
}
.component__time-corner--right {
    right: 8px;
    align-items: flex-end;
}
.component__tz-row {
    width: 100%;
    text-align: right;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
}
.component__time-corner--left .component__time-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.04em;
}
/* Remove old time display styles if not needed */
.component__time-display, .component__time-phase, .component__time-zone {
    display: none !important;
}
/* Responsive: stack panels vertically on small screens, keep time corners visible */
@media (max-width: 700px) {
    .layout__split-screen {
        flex-direction: column;
        height: auto;
    }
    .component__panel {
        margin: 10px 0;
        min-height: 40vh;
    }
    .component__time-corner {
        position: static;
        margin: 0.5rem auto 0.5rem 0.5rem;
        max-width: 95vw;
        width: auto;
        box-shadow: none;
    }
    .component__time-corner--right {
        align-items: flex-end;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    .component__time-corner--left {
        align-items: flex-start;
        margin-left: 0.5rem;
    }
}

/* =====================
   UTILITIES
   ===================== */
/* (Add utility classes here as needed) */
.component__panel-link {
    text-decoration: none;
    color: inherit;
    border: none;
    outline: none;
}
.component__panel-link:visited, .component__panel-link:active, .component__panel-link:focus, .component__panel-link:hover {
    color: inherit;
    text-decoration: none;
    border: none;
    outline: none;
}
.component__panel-subtitle {
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.panel-title-align {
    width: 50vw;
    margin-top: 2.2rem;
    margin-bottom: 1.2rem;
}
.panel-title-align--right {
    text-align: right;
    padding-right: 2vw;
}
.panel-title-align--left {
    text-align: left;
    padding-left: 2vw;
}
.panel-title-typewriter {
    text-align: left;
    margin: 0;
    padding: 0 0.5rem;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}
.panel-title-typewriter--creative {
    font-family: 'Space Mono', 'Courier New', monospace;
    font-weight: 400;
}
.panel-title-typewriter--corporate {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 500;
}
@media (max-width: 700px) {
    .panel-title-align {
        width: 100vw;
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
        text-align: center !important;
        padding: 0 !important;
    }
    .panel-title-typewriter {
        font-size: 1.5rem;
        padding: 0 0.2rem;
        text-align: center;
    }
}

/* =====================
   NAVIGATION
   ===================== */
.page-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-dark-text);
    text-decoration: none;
    border-radius: 25px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-back:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-back span {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-nav {
        top: 15px;
        left: 15px;
    }
    
    .nav-back {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .nav-back span {
        font-size: 16px;
    }
}



/* =====================
   INTRO SECTION
   ===================== */
.site-header {
    text-align: center;
    color: #fff;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}
.logo {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    color: #3a86ff;
    background: #fff2;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    margin-bottom: 0.5rem;
}
.logo-wrapper {
    position: absolute;
    top: 24px;
    left: 32px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.05);
}
.logo-wrapper .benyoritha {
    margin-top: 0.3em;
    margin-left: 0;
    font-size: 2.1rem;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.03em;
    font-family: 'Benyoritha', 'Playfair Display', serif;
    font-weight: normal;
    text-shadow: 0 2px 10px rgba(0,0,0,0.13);
}
#logo-3d {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 6px 24px 0 rgba(80,80,120,0.18), 0 1.5px 6px 0 rgba(80,80,120,0.10);
    transition: box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}
@font-face {
    font-family: 'Benyoritha';
    src: url('assets/fonts/Benyoritha-G334D.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.main-title {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
    margin: 0.2em 0 0.1em 0;
    letter-spacing: 0.04em;
    color: #fff;
}
.subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.02rem;
    font-weight: 400;
    color: #bfc9e0;
    margin-bottom: 0.5em;
}
.site-footer {
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    padding: 0.25rem 0;
    flex-shrink: 0;
    width: 100%;
    clear: both;
}
.site-footer a {
    color: #fff;
    margin: 0 0.5em;
    font-size: 1.3em;
    transition: color 0.2s;
    vertical-align: middle;
}
.site-footer a:hover {
    color: #3a86ff;
}
.site-footer span {
    margin-left: 1em;
    font-size: 0.98em;
}

/* =====================
   JOURNEY PAGE LANGUAGE-SPECIFIC FONTS
   ===================== */
/* Journey story headings - EN, FR, PL use Paytone One */
html[lang="en"] .journey-story h2,
html[lang="fr"] .journey-story h2,
html[lang="pl"] .journey-story h2 {
    font-family: 'Paytone One', 'Raleway', Arial, sans-serif !important;
}

/* Arabic journey headings use Cairo Play */
html[lang="ar"] .journey-story h2 {
    font-family: 'Cairo Play', 'Raleway', Arial, sans-serif !important;
}

/* Journey story paragraphs - EN, FR, PL use Paytone One */
html[lang="en"] .journey-story p,
html[lang="fr"] .journey-story p,
html[lang="pl"] .journey-story p {
    font-family: 'Paytone One', 'Raleway', Arial, sans-serif !important;
}

/* Arabic journey paragraphs use Kufam */
html[lang="ar"] .journey-story p {
    font-family: 'Kufam', 'Raleway', Arial, sans-serif !important;
}

/* Journey timeline dates - EN, FR, PL use Paytone One */
html[lang="en"] .timeline-date,
html[lang="fr"] .timeline-date,
html[lang="pl"] .timeline-date {
    font-family: 'Paytone One', 'Raleway', Arial, sans-serif !important;
}

/* Arabic timeline dates use Kufam */
html[lang="ar"] .timeline-date {
    font-family: 'Kufam', 'Raleway', Arial, sans-serif !important;
}

/* Journey navigation back - EN, FR, PL use Paytone One */
html[lang="en"] .nav-back,
html[lang="fr"] .nav-back,
html[lang="pl"] .nav-back {
    font-family: 'Paytone One', 'Raleway', Arial, sans-serif !important;
}

/* Arabic navigation back use Kufam */
html[lang="ar"] .nav-back {
    font-family: 'Kufam', 'Raleway', Arial, sans-serif !important;
}

#corporate-loading-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
#corporate-loading-overlay .loader {
    margin-bottom: 1.5rem;
}
#corporate-loading-overlay .welcome-message {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
}

.benyoritha {
    font-family: 'Benyoritha', 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: normal;
    letter-spacing: 0.03em;
    color: #fff;
    vertical-align: middle;
}

.benyoritha-letter {
    display: inline-block;
    transition: color 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                text-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}
.benyoritha-letter:hover {
    color: transparent;
    background: linear-gradient(90deg, #fffbe6 0%, #ffe066 20%, #ffd700 40%, #fffbe6 60%, #ffe066 80%, #ffd700 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
    animation: shiny-gold 1.2s linear forwards;
}
.benyoritha-letter.shiny-gold {
    color: transparent;
    background: linear-gradient(90deg, #fffbe6 0%, #ffe066 20%, #ffd700 40%, #fffbe6 60%, #ffe066 80%, #ffd700 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
    animation: shiny-gold 1.2s linear forwards;
}
@keyframes shiny-gold {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.logo-wrapper-right {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.logo-wrapper-right img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 24px 0 rgba(80,80,120,0.18), 0 1.5px 6px 0 rgba(80,80,120,0.10);
}
.logo-wrapper-right a {
    position: relative;
    display: flex;
    align-items: center;
}
.logo-link-overlay {
    position: relative;
    display: inline-block;
}
.logo-link-overlay .logo-home-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.3s;
    white-space: nowrap;
}
.logo-link-overlay:hover .logo-home-text,
.logo-link-overlay:focus .logo-home-text {
    opacity: 1;
    visibility: visible;
}
.photo-header {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2.2rem;
}
.photo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3em;
}
.photo-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #bfc9e0;
    margin-bottom: 0;
}

 