/* ============================================
   LIFE SAVER GROUP — CORPORATE PREMIUM THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;600&family=Cairo:wght@300;400;600;700&display=swap');

:root {
    --primary-blue:   #0f2557;
    --mid-blue:       #1a3a8f;
    --light-blue:     #2352c4;
    --primary-red:    #c0392b;
    --accent-gold:    #c9a84c;
    --accent-gold-lt: #e8c96e;
    --primary-white:  #ffffff;
    --off-white:      #f5f3ee;
    --light-gray:     #f0eff0;
    --dark-gray:      #2c2c2c;
    --text-muted:     #6b7280;
    --footer-bg:      #080f22;
    --footer-mid:     #0d1a3a;
    --card-radius:    18px;
    --shadow-soft:    0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover:   0 16px 48px rgba(15,37,87,0.18);
    --transition:     all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display:   'Playfair Display', 'Cairo', serif;
    --font-body:      'Cairo', 'Cormorant Garamond', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--off-white);
    color: var(--dark-gray);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--primary-blue);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,58,143,0.4) 0%, transparent 60%);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-logo-ring {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotateRing 2s linear infinite;
}

.ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 3;
}

.ring-progress {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 276;
    stroke-dashoffset: 200;
    animation: ringFill 2s ease-in-out infinite;
}

@keyframes rotateRing { to { transform: rotate(360deg); } }
@keyframes ringFill {
    0%   { stroke-dashoffset: 276; }
    60%  { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; opacity: 0.3; }
}

.loading-logo-center {
    width: 75px;
    height: 75px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,0.3);
    overflow: hidden;
}

.loading-logo-img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.loading-brand {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.loading-brand-life, .loading-brand-saver, .loading-brand-group {
    font-family: var(--font-display);
    color: white;
    letter-spacing: 0.05em;
}

.loading-brand-life { font-size: 28px; font-weight: 700; }
.loading-brand-saver { font-size: 28px; color: var(--accent-gold); font-weight: 700; }
.loading-brand-group { font-size: 14px; opacity: 0.7; letter-spacing: 0.3em; text-transform: uppercase; }

.loading-tagline {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    letter-spacing: 0.1em;
}

.loading-bar-wrap {
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-lt));
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 2px;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a1e4a 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold), var(--primary-red));
    background-size: 200% 100%;
    animation: shimmerLine 3s linear infinite;
}

@keyframes shimmerLine {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-ring-outer {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.25);
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

.logo-image {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-image { transform: scale(1.08); }

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.logo-accent { color: var(--accent-gold); }

.logo-text .tagline {
    font-size: 11.5px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    letter-spacing: 0.05em;
    unicode-bidi: plaintext;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.07);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(201,168,76,0.3);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 24px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-size: 12px;
    font-family: var(--font-body);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-lt));
    color: var(--primary-blue);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(201,168,76,0.4);
}

.lang-btn:hover:not(.active) {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ===== HERO — CORPORATE PREMIUM ===== */
.hero {
    min-height: 88vh;
    background: linear-gradient(135deg, #0a1d50 0%, #0f2557 45%, #0d1e48 100%);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

.hero-accent-bar {
    position: absolute;
    top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold) 30%, var(--accent-gold) 70%, transparent);
    opacity: 0.6;
}
[dir="rtl"] .hero-accent-bar { right: 0; left: auto; }
[dir="ltr"] .hero-accent-bar { left: 0; right: auto; }

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(192,57,43,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 2;
}

[dir="rtl"] .hero-inner { direction: rtl; }

.hero-content { position: relative; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    padding: 6px 16px 6px 10px;
    border-radius: 30px;
}

.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
    animation: eyebrowPulse 2.4s ease-in-out infinite;
}

@keyframes eyebrowPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.5; transform:scale(1.5); }
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -0.01em;
}

.hero-welcome {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.hero-brand-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 700;
    line-height: 0.95;
    color: white;
}

.hb-saver {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 400;
}

.hb-group {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(16px, 2.2vw, 26px);
    font-weight: 300;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin-top: 8px;
}

.hero-divider { margin: 22px 0; }
.hero-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}
[dir="rtl"] .hero-divider span { background: linear-gradient(270deg, var(--accent-gold), transparent); }

.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.9;
}

.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease;
    min-width: 90px;
}

.stat-item:last-child { border-right: none; }
[dir="rtl"] .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.07); }
[dir="rtl"] .stat-item:last-child { border-left: none; }
.stat-item:hover { background: rgba(201,168,76,0.07); }

.stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 5px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.stat-divider { display: none; }

/* Logo side */
.hero-logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-frame {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hlf-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.2);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: hlfSpin 20s linear infinite;
}

.hlf-ring-outer {
    width: 280px; height: 280px;
    border-color: rgba(201,168,76,0.12);
    border-style: dashed;
}

.hlf-ring-inner {
    width: 200px; height: 200px;
    border-color: rgba(255,255,255,0.08);
    animation-duration: 14s;
    animation-direction: reverse;
}

@keyframes hlfSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hlf-circle {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: 2px solid rgba(201,168,76,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(201,168,76,0.04), 0 0 50px rgba(201,168,76,0.12);
    position: relative;
    z-index: 2;
}

.hlf-img {
    width: 62%; height: 62%;
    object-fit: contain;
    opacity: 0.95;
    animation: hlfPulse 4s ease-in-out infinite;
}

@keyframes hlfPulse {
    0%,100% { transform:scale(1); opacity:0.88; }
    50%      { transform:scale(1.06); opacity:1; }
}

.hlf-flags {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(10,29,80,0.85);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    z-index: 3;
}

.hlf-flag {
    font-size: 22px;
    transition: transform 0.3s ease;
    cursor: default;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.hlf-flag:hover { transform: scale(1.25) translateY(-3px); }

/* ===== CARDS SECTION ===== */
.cards-section {
    padding: 80px 0 90px;
    background: var(--off-white);
    position: relative;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 52px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-red));
    border-radius: 3px;
    margin: 12px auto 0;
}

.section-title p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Cards Grid */
.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card Base */
.card {
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, transparent 50%);
    border-radius: var(--card-radius);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card:hover .card-shine { opacity: 1; }

/* ===== CARD HEADER — clean flag only ===== */
.card-header {
    height: 170px;
    overflow: hidden;
    position: relative;
    background: #edeae2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -10px 24px rgba(0,0,0,0.07);
    pointer-events: none;
    z-index: 2;
}

.card-header-bg { display: none; }

/* Flag image: centred, no crop, full visibility */
.card-flag {
    display: block;
    max-width: 92%;
    max-height: 148px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.15));
}

.card:hover .card-flag { transform: scale(1.06) translateY(-3px); }

/* Hide old image structures */
.card-header .image-container { display: none !important; }
.card-country-tag { display: none !important; }
.card-shine { display: none !important; }

/* ===== CARD BODY ===== */
.card-body {
    padding: 20px 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 2px solid rgba(201,168,76,0.14);
}

.card-icon-accent { display: none !important; }

.card-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.card-body p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

/* Coming soon ribbon */
.coming-soon-ribbon {
    position: absolute;
    top: 14px;
    z-index: 10;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-lt));
    color: var(--primary-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 14px;
    box-shadow: 0 2px 10px rgba(201,168,76,0.4);
}

[dir="rtl"] .coming-soon-ribbon { left: 0; right: auto; border-radius: 0 12px 12px 0; }
[dir="ltr"] .coming-soon-ribbon { right: 0; left: auto; border-radius: 12px 0 0 12px; }

/* Egypt buttons */
.egypt-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 2px;
}

.egypt-buttons .btn.btn-premium {
    width: 100%;
    margin: 0;
    font-size: 11.5px;
    padding: 8px 14px;
}

/* Hide all old overlay/image elements */
.image-container { display: none !important; }
.image-text-overlay { display: none !important; }
.dual-text-overlay { display: none !important; }
.text-item { display: none !important; }
.flag-glow { display: none !important; }
.card-image { display: none !important; }

/* Image Text Overlay */

.image-text-overlay {
    position: absolute;
    background: rgba(201,168,76,0.95);
    color: var(--primary-blue);
    padding: 5px 14px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 6;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
    letter-spacing: 0.03em;
    top: 50%;
    transform: translateY(-50%);
}

[dir="rtl"] .card-header .image-container:hover .image-text-overlay {
    opacity: 1; visibility: visible;
    right: 12px; left: auto;
}

[dir="ltr"] .card-header .image-container:hover .image-text-overlay {
    opacity: 1; visibility: visible;
    left: 12px; right: auto;
}

/* Dual Text Overlay (Egypt) */
.dual-text-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 7px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 6;
}

[dir="rtl"] .card-2 .image-container:hover .dual-text-overlay {
    opacity: 1; visibility: visible;
    right: 12px; left: auto;
}

[dir="ltr"] .card-2 .image-container:hover .dual-text-overlay {
    opacity: 1; visibility: visible;
    left: 12px; right: auto;
}

.text-item {
    background: rgba(255,255,255,0.96);
    color: var(--primary-blue);
    padding: 7px 14px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    min-width: 165px;
    letter-spacing: 0.02em;
}

.text-item:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: scale(1.03);
}

/* Arrow helpers */
.en-arrow { display: none; }
.ar-arrow { display: inline-block; }

[dir="ltr"] .en-arrow { display: inline-block; }
[dir="ltr"] .ar-arrow { display: none; }

/* Card Body */
.card-body {
    padding: 18px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-icon-accent {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--accent-gold);
    border: 1.5px solid rgba(201,168,76,0.25);
    z-index: 4;
}

.card-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--primary-blue);
    font-weight: 700;
    text-align: center;
    margin: 12px 0 8px;
    letter-spacing: 0.01em;
}

.card-body p {
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

/* Premium Buttons */
.btn.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--mid-blue), var(--primary-blue));
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.04em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15,37,87,0.25);
}

.btn.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,37,87,0.35);
}

.btn.btn-premium:hover::before { opacity: 1; }

.btn-red-premium {
    background: linear-gradient(135deg, var(--primary-red), #8b0000) !important;
    box-shadow: 0 4px 14px rgba(192,57,43,0.3) !important;
}

.btn-red-premium:hover {
    box-shadow: 0 8px 24px rgba(192,57,43,0.45) !important;
}

.btn-green-premium {
    background: linear-gradient(135deg, #1a7a4f, #0a4a2f) !important;
    box-shadow: 0 4px 14px rgba(26,122,79,0.3) !important;
}

.btn-green-premium:hover {
    box-shadow: 0 8px 24px rgba(26,122,79,0.45) !important;
}

.btn-disabled {
    background: linear-gradient(135deg, #ccc, #aaa) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    color: #888 !important;
    opacity: 0.8;
}

.btn-disabled:hover { transform: none !important; box-shadow: none !important; }

/* Egypt dual buttons */
.egypt-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 4px;
}

.egypt-buttons .btn.btn-premium {
    width: 100%;
    margin: 0;
    font-size: 11px;
    padding: 8px 14px;
}

/* Coming Soon ribbon */
.card-coming-soon {
    opacity: 0.9;
}

.coming-soon-ribbon {
    position: absolute;
    top: 16px;
    z-index: 10;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-lt));
    color: var(--primary-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 14px;
    box-shadow: 0 2px 10px rgba(201,168,76,0.4);
    border-radius: 0 12px 12px 0;
}

[dir="rtl"] .coming-soon-ribbon { left: 0; right: auto; border-radius: 0 12px 12px 0; }
[dir="ltr"] .coming-soon-ribbon { right: 0; left: auto; border-radius: 12px 0 0 12px; }

/* ===== FOOTER ===== */
footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.75);
    position: relative;
    margin-top: 20px;
}

.footer-top-wave {
    width: 100%;
    height: 60px;
    overflow: hidden;
    background: var(--off-white);
    line-height: 0;
}

.footer-top-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-body {
    padding: 60px 0 40px;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(201,168,76,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(26,58,143,0.15) 0%, transparent 50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

/* Footer Brand */
.footer-brand-col {}

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

.footer-logo-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(201,168,76,0.4);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.fb-life, .fb-saver, .fb-group { display: block; }
.fb-life  { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; }
.fb-saver { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent-gold); }
.fb-group { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 3px; }

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-countries {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-flag {
    font-size: 20px;
    opacity: 0.7;
    transition: var(--transition);
    cursor: default;
}

.footer-flag:hover { opacity: 1; transform: scale(1.2); }

/* Footer Links */
.footer-col-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

[dir="rtl"] .footer-links a:hover { transform: translateX(-4px); }

.footer-links a i {
    font-size: 10px;
    color: var(--accent-gold);
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links a:hover i { opacity: 1; }

/* Footer Contact */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-icon i {
    font-size: 11px;
    color: var(--accent-gold);
}

/* Social Buttons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(201,168,76,0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-line {
    width: 40px;
    height: 1px;
    background: rgba(201,168,76,0.25);
}

/* ===== FADE IN ANIMATION ===== */
@keyframes fadeInUp {
    from { opacity:0; transform: translateY(30px); }
    to   { opacity:1; transform: translateY(0); }
}

.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin: 0 auto;
    }
    .hero-logo-frame { width: 240px; height: 240px; }
    .hlf-ring-outer  { width: 228px; height: 228px; }
    .hlf-ring-inner  { width: 162px; height: 162px; }
    .hlf-circle      { width: 114px; height: 114px; }
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand-col { grid-column: 1 / -1; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }
    .hero-content   { order: 2; }
    .hero-logo-side { order: 1; }
    .hero-eyebrow   { justify-content: center; }
    .hero-stats     { margin: 0 auto; }
    .hero-sub       { margin-left: auto; margin-right: auto; }
    .hero-divider   { display: flex; justify-content: center; }
}

@media (max-width: 700px) {
    .hero { padding: 70px 0 60px; min-height: auto; }
    .hero-brand-line { font-size: 40px; }
    .hero-logo-frame { width: 200px; height: 200px; }
    .hlf-ring-outer  { width: 190px; height: 190px; }
    .hlf-ring-inner  { width: 136px; height: 136px; }
    .hlf-circle      { width: 96px; height: 96px; }
    .hlf-flags       { gap: 7px; padding: 6px 12px; }
    .hlf-flag        { font-size: 18px; }

    .cards-container {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .header-content { flex-direction: column; padding: 12px 0; gap: 10px; }
    .logo { flex-direction: column; text-align: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand-col { grid-column: auto; }
    .lang-text { display: none; }
}

@media (max-width: 480px) {
    .hero-brand-line { font-size: 34px; }
    .hero-sub { font-size: 13px; }
    .stat-num { font-size: 22px; }
    .stat-item { padding: 12px 18px; min-width: 76px; }
    .hero-stats { flex-wrap: wrap; justify-content: center; border-radius: 14px; }
}
