/* ============================================================
   OPAL COMPANY — Tourism Portfolio Website
   styles.css
============================================================ */

/* ── ROOT VARIABLES ── */
:root {
    --navy:        #0d2137;
    --navy-light:  #1a3a5c;
    --gold:        #c9a84c;
    --gold-dark:   #a07830;
    --gold-light:  #e8c96a;
    --teal:        #16a085;
    --cream:       #f7f3ed;
    --cream-dark:  #ede8e0;
    --white:       #ffffff;
    --text-dark:   #1a1a2e;
    --text-mid:    #4a5568;
    --text-light:  #8896a8;

    /* Portfolio brand colors */
    --rove-green:  #1e7e4a;
    --rove-light:  #2ecc71;
    --crystal-blue: #1a3a8c;
    --crystal-light: #3a7bd5;
    --opal-gold:   #8b6914;
    --opal-light:  #c9a84c;

    --shadow-sm:   0 4px 16px rgba(13,33,55,0.08);
    --shadow-md:   0 10px 40px rgba(13,33,55,0.12);
    --shadow-lg:   0 20px 60px rgba(13,33,55,0.18);
    --radius:      16px;
    --radius-sm:   8px;
    --transition:  0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text { color: var(--gold); }

/* ── LOADING SCREEN ── */
#loader {
    position: fixed; inset: 0;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
}

.loader-o { color: var(--gold); }
.loader-pal { color: var(--white); }

.loader-subtitle {
    color: var(--gold);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    letter-spacing: 8px;
    margin-top: 4px;
}

.loader-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-top: 16px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 24px auto 0;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    animation: loadProgress 2.4s ease forwards;
}

@keyframes loadProgress { to { width: 100%; } }

/* ── NAVIGATION ── */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
    background: rgba(13,33,55,0.97);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-sub {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 5px;
    margin-top: 1px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

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

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1001;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--navy);
    z-index: 1002;
    padding: 30px 28px;
    display: flex; flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-close {
    align-self: flex-end;
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.mobile-close:hover { background: rgba(255,255,255,0.1); }

.mobile-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-top: 24px;
    margin-bottom: 36px;
}
.mobile-logo span { color: var(--gold); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu ul li a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.mobile-menu ul li a:hover {
    background: rgba(201,168,76,0.15);
    color: var(--gold);
}

.mobile-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 32px;
}
.mobile-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.mobile-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── HERO SECTION ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy);
    overflow: hidden;
}

#particleCanvas {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 75% 65% at 50% 38%, rgba(201,168,76,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(17,50,90,0.5) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 75%, rgba(10,35,65,0.5) 0%, transparent 70%),
        linear-gradient(165deg, rgba(4,14,28,0.97) 0%, rgba(11,28,50,0.80) 45%, rgba(15,42,70,0.95) 100%);
    z-index: 2;
}

/* Subtle dot-grid texture */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(201,168,76,0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    z-index: 1;
    pointer-events: none;
}

/* Pyramid decorations */
.hero-deco { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-pyramid {
    position: absolute;
    bottom: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.hero-pyramid-1 {
    right: -2%;
    width: 360px; height: 480px;
    background: linear-gradient(180deg, rgba(201,168,76,0.30) 0%, rgba(201,168,76,0.06) 80%, transparent 100%);
}
.hero-pyramid-2 {
    right: 14%;
    width: 220px; height: 310px;
    background: linear-gradient(180deg, rgba(232,201,106,0.22) 0%, rgba(201,168,76,0.04) 80%, transparent 100%);
}
.hero-pyramid-3 {
    left: -1%;
    width: 300px; height: 400px;
    background: linear-gradient(180deg, rgba(201,168,76,0.26) 0%, rgba(201,168,76,0.05) 80%, transparent 100%);
}
.hero-pyramid-4 {
    left: 13%;
    width: 170px; height: 230px;
    background: linear-gradient(180deg, rgba(201,168,76,0.16) 0%, rgba(201,168,76,0.03) 80%, transparent 100%);
}

/* Sparkle elements */
.hero-sparkle {
    position: absolute;
    color: var(--gold);
    animation: heroPop 3.5s ease-in-out infinite;
    pointer-events: none;
}
.hero-sparkle-a { top: 22%; left: 18%; font-size: 1rem; opacity: 0.45; animation-delay: 0s; }
.hero-sparkle-b { top: 38%; right: 22%; font-size: 0.65rem; opacity: 0.35; animation-delay: 1.2s; }
.hero-sparkle-c { top: 62%; left: 28%; font-size: 0.5rem; opacity: 0.28; animation-delay: 2.4s; }
@keyframes heroPop {
    0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
    50%       { opacity: 0.9; transform: scale(1) rotate(30deg); }
}

/* Glow orb behind hero content */
.hero-glow-orb {
    position: absolute;
    top: 44%; left: 50%;
    transform: translate(-50%, -50%);
    width: 680px; height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, rgba(201,168,76,0.04) 40%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
    50%       { transform: translate(-50%, -50%) scale(1.12); opacity: 0.75; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.38);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 50px;
    margin-bottom: 32px;
    box-shadow: 0 0 20px rgba(201,168,76,0.12), inset 0 0 12px rgba(201,168,76,0.05);
    animation: badgePulse 4s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 16px rgba(201,168,76,0.15), inset 0 0 12px rgba(201,168,76,0.05); }
    50%       { box-shadow: 0 0 32px rgba(201,168,76,0.30), inset 0 0 18px rgba(201,168,76,0.08); }
}

.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.hero-title .line1 {
    font-size: clamp(0.85rem, 2.2vw, 1.15rem);
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero-title .line1::before,
.hero-title .line1::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.55));
    flex-shrink: 0;
}
.hero-title .line1::after {
    background: linear-gradient(to left, transparent, rgba(201,168,76,0.55));
}

.hero-title .line2 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 60px rgba(201,168,76,0.12);
}

/* Animated gold shimmer on OPAL */
.hero-title .line2 .gold-text {
    background: linear-gradient(
        90deg,
        var(--gold-dark) 0%,
        var(--gold) 30%,
        #fff6c8 50%,
        var(--gold) 70%,
        var(--gold-dark) 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3.5s linear infinite;
}
@keyframes goldShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-title .line3 {
    font-size: clamp(0.95rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,33,55,0.55);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 20px 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-stat {
    text-align: center;
    padding: 0 32px;
}

.h-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 24px rgba(201,168,76,0.35);
}

.h-stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.h-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: 0.6;
}
.scroll-indicator span {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollAnim 1.8s ease infinite;
}
@keyframes scrollAnim {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ── HERO ANIMATIONS ── */
.animate-fade-down,
.animate-fade-up {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-fade-up { transform: translateY(30px); }
.animate-fade-down.go,
.animate-fade-up.go { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }
.delay-5 { transition-delay: 0.75s !important; }

/* ── AOS ANIMATIONS ── */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos].animated { opacity: 1; transform: translate(0); }

/* ── MARQUEE STRIP ── */
.marquee-strip {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, var(--gold-dark) 100%);
    overflow: hidden;
    padding: 15px 0;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35), 0 -2px 10px rgba(201,168,76,0.15);
}
.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
    pointer-events: none;
}
.marquee-strip::before { left: 0;  background: linear-gradient(to right, var(--gold-dark), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left,  var(--gold-dark), transparent); }

.marquee-track {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 16px;
}

.marquee-track .dot { color: var(--navy); opacity: 0.45; margin: 0 4px; }

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

/* Section tags / headers */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.title-underline {
    width: 50px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 28px;
}
.title-underline.centered { margin-left: auto; margin-right: auto; }

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

.section-desc {
    color: var(--text-mid);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* About visual */
.about-visual {
    display: flex;
    flex-direction: column;
}

.about-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 440px;
}

.about-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.about-icon-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-stack i { color: var(--gold); opacity: 0.8; font-size: 4rem; }

.icon-glow {
    position: absolute;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.3) 0%, transparent 70%);
}

.about-lines {
    display: flex; flex-direction: column; gap: 8px;
    position: absolute; bottom: 32px; left: 32px; right: 32px;
}
.ab-line { height: 2px; background: rgba(201,168,76,0.18); border-radius: 2px; }

.frame-border-tl, .frame-border-br {
    position: absolute;
    width: 40px; height: 40px;
    border-color: var(--gold);
    border-style: solid;
}
.frame-border-tl { top: -10px; left: -10px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.frame-border-br { bottom: -10px; right: -10px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

.about-badge-float {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
}
.abf-inner { text-align: center; }
.abf-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.abf-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 1px;
    margin-top: 2px;
}

.about-badge-float2 {
    position: absolute;
    top: -16px; left: -16px;
    background: var(--navy);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}
.about-badge-float2 i { color: var(--gold); font-size: 0.9rem; }
.about-badge-float2 span { color: var(--white); font-size: 0.75rem; font-weight: 500; letter-spacing: 1px; }

.about-text { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }

.about-features {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 32px; margin-top: 24px;
}

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

.fi-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fi-icon i { color: var(--gold); font-size: 0.7rem; }
.feature-item span { color: var(--text-mid); font-size: 0.9rem; }

/* ── EGYPT NIGHT SCENE (About Visual) ── */
.about-egypt-scene {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    box-shadow: 0 24px 64px rgba(0,0,0,0.30);
}

/* Sky gradient */
.aes-sky {
    position: absolute;
    inset: 0;
    bottom: 20%;
    background: linear-gradient(180deg,
        #020b17 0%,
        #04122b 25%,
        #071a3e 55%,
        #0c2250 100%);
}

/* Stars via many tiny radial-gradients */
.aes-sky::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(1.5px 1.5px at  8% 10%, rgba(255,255,255,0.95) 0%, transparent 100%),
        radial-gradient(1px   1px   at 21%  6%, rgba(255,255,255,0.75) 0%, transparent 100%),
        radial-gradient(2px   2px   at 38%  4%, rgba(255,255,255,0.90) 0%, transparent 100%),
        radial-gradient(1px   1px   at 52% 14%, rgba(255,255,255,0.60) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 67%  8%, rgba(255,255,255,0.85) 0%, transparent 100%),
        radial-gradient(1px   1px   at 81% 13%, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 93%  5%, rgba(255,255,255,0.90) 0%, transparent 100%),
        radial-gradient(1px   1px   at 14% 24%, rgba(255,255,255,0.50) 0%, transparent 100%),
        radial-gradient(1px   1px   at 30% 32%, rgba(255,255,255,0.40) 0%, transparent 100%),
        radial-gradient(1px   1px   at 60% 28%, rgba(201,168,76,0.70) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 20%, rgba(255,255,255,0.65) 0%, transparent 100%),
        radial-gradient(1px   1px   at 46% 38%, rgba(255,255,255,0.35) 0%, transparent 100%),
        radial-gradient(1px   1px   at  4% 38%, rgba(255,255,255,0.50) 0%, transparent 100%),
        radial-gradient(1px   1px   at 88% 34%, rgba(255,255,255,0.45) 0%, transparent 100%);
}

/* Crescent moon */
.aes-moon {
    position: absolute;
    top: 11%; right: 17%;
    width: 54px; height: 54px;
    z-index: 2;
}
.aes-moon::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%, #fff8d6, #e8c96a 60%, #c9a84c);
    box-shadow: 0 0 22px rgba(232,201,106,0.55), 0 0 55px rgba(201,168,76,0.22);
}
.aes-moon::after {
    content: '';
    position: absolute;
    top: -3px; left: 10px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #030e1b; /* masks left side of moon to create crescent */
}

/* Pyramids */
.aes-pyramids {
    position: absolute;
    left: 4%; right: 4%;
    bottom: 20%;
    height: 63%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}
.aes-pyramid { clip-path: polygon(50% 0%, 0% 100%, 100% 100%); flex-shrink: 0; }

/* Left (small) */
.aes-pyr-left {
    width: 24%; height: 56%;
    background: linear-gradient(180deg, #a07228 0%, #6b4510 45%, #3a1f06 100%);
    z-index: 1;
}
/* Center (tallest — Great Pyramid) */
.aes-pyr-center {
    width: 44%; height: 100%;
    background: linear-gradient(175deg,
        #d4a83a 0%,
        #c9a84c 15%,
        #a07828 40%,
        #6b4510 68%,
        #3a1e06 88%,
        #1e0d02 100%);
    z-index: 3;
    filter: drop-shadow(0 -8px 18px rgba(201,168,76,0.20));
}
/* Right (medium) */
.aes-pyr-right {
    width: 30%; height: 74%;
    background: linear-gradient(180deg, #b08828 0%, #7a5215 45%, #422008 100%);
    z-index: 2;
}

/* Sandy ground */
.aes-sand {
    position: absolute;
    bottom: 14%; left: 0; right: 0;
    height: 7%;
    background: linear-gradient(180deg, #8b6220 0%, #6a4810 60%, #48290a 100%);
}

/* Nile water */
.aes-water {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 16%;
    background: linear-gradient(180deg, #0d2848 0%, #07172d 55%, #030c1a 100%);
    overflow: hidden;
}
.aes-water::before {
    content: '';
    position: absolute;
    top: 28%; left: -20%; right: -20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35) 35%, rgba(201,168,76,0.65) 50%, rgba(201,168,76,0.35) 65%, transparent);
    animation: waterShimmer 3.5s ease-in-out infinite;
}
.aes-water::after {
    content: '';
    position: absolute;
    top: 60%; left: -20%; right: -20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 40%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0.15) 60%, transparent);
    animation: waterShimmer 4.5s ease-in-out 1.2s infinite;
}
@keyframes waterShimmer {
    0%, 100% { transform: translateX(-8%) scaleX(0.85); opacity: 0.6; }
    50%       { transform: translateX(8%)  scaleX(1);    opacity: 1; }
}

/* Top-left badge (Award Winning) */
.aes-badge-tl {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 10;
    background: rgba(10,26,52,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.32);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.aes-badge-tl i { color: var(--gold); font-size: 0.85rem; }

/* Bottom-right badge (20+ Years) */
.aes-badge-br {
    position: absolute;
    bottom: 18%; right: 14px;
    z-index: 10;
    background: var(--gold);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(201,168,76,0.40);
    transform: translateY(18px);
}
.aes-badge-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.aes-badge-text {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.35;
    margin-top: 4px;
}

/* Mini stat cards below the scene */
.about-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}
.ams-card {
    background: var(--navy);
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    border: 1px solid rgba(201,168,76,0.15);
    transition: border-color var(--transition), transform var(--transition);
}
.ams-card:hover { border-color: rgba(201,168,76,0.38); transform: translateY(-3px); }
.ams-card i { color: var(--gold); font-size: 1.1rem; margin-bottom: 6px; }
.ams-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.ams-label {
    display: block;
    font-size: 0.66rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ── STATS SECTION ── */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: var(--navy);
    overflow: hidden;
}

.stats-overlay {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 44px 24px;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-item::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 2px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), transparent);
    border-radius: 2px;
}
.stat-item:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.06);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(201,168,76,0.25);
    box-shadow: 0 0 20px rgba(201,168,76,0.12);
}
.stat-icon i { color: var(--gold); font-size: 1.3rem; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── PORTFOLIO SECTION ── */
.portfolio-section {
    padding: 100px 0;
    background: var(--cream);
}

/* ── Hub badge + cascade connector ── */
.portfolio-hub-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.portfolio-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--navy) 0%, #142c4a 100%);
    border: 2px solid var(--gold);
    border-radius: 60px;
    padding: 16px 36px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 40px rgba(13,33,55,0.35), 0 0 0 6px rgba(201,168,76,0.08);
    transition: box-shadow 0.4s ease;
}
.portfolio-hub-badge:hover {
    box-shadow: 0 12px 50px rgba(13,33,55,0.45), 0 0 0 10px rgba(201,168,76,0.10);
}

.phb-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201,168,76,0.18);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,0.3);
}
.phb-icon i { color: var(--gold); font-size: 1.2rem; }

.phb-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    line-height: 1;
}

.phb-sub {
    display: block;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Cascade connector lines */
.hub-cascade {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hc-vline {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.4));
}

.hc-hbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 66.5%;
    height: 2px;
    background: rgba(201,168,76,0.35);
    position: relative;
}

.hc-dot {
    display: block;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: -1px;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.hc-drops {
    display: flex;
    justify-content: space-between;
    width: 66.5%;
}

.hc-drop {
    display: block;
    width: 2px;
    height: 28px;
    background: rgba(201,168,76,0.35);
}

/* Row-2 connector (hidden on mobile) */
.companies-grid-row2-connector {
    display: none;
}

/* ── Companies Grid ── */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Company Card ── */
.comp-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.cc-top {
    padding: 28px 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cc-top-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1.5px solid rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center;
}
.cc-top-icon i { color: var(--white); font-size: 1.3rem; }

.cc-top-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    user-select: none;
}

.cc-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Company logo */
.cc-logo {
    height: 52px;
    max-width: 150px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 14px;
    border-radius: 6px;
}

/* Logo on dark background — add light bg pill */
.cc-logo-dark {
    background: var(--navy);
    padding: 6px 12px;
    border-radius: 8px;
    max-width: 170px;
    height: 48px;
}

.cc-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.2;
}

.cc-tagline {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.4;
}

.cc-desc {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.cc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.cc-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 50px;
    background: color-mix(in srgb, var(--tc) 10%, transparent);
    color: var(--tc);
    border: 1px solid color-mix(in srgb, var(--tc) 20%, transparent);
}

/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 10%, white)) {
    .cc-tag { background: rgba(100,100,100,0.08); color: var(--text-mid); border-color: rgba(100,100,100,0.2); }
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--lc, var(--navy));
    text-transform: uppercase;
    padding: 10px 0;
    border-top: 1px solid var(--cream-dark);
    transition: gap var(--transition), opacity var(--transition);
    margin-top: auto;
}
.cc-link:hover { gap: 14px; opacity: 0.8; }

/* ── TEAM SECTION ── */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

/* CEO card */
.team-ceo {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--navy);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-ceo::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.tceo-avatar {
    position: relative;
    flex-shrink: 0;
    width: 110px; height: 110px;
}

.tceo-ring {
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(201,168,76,0.4);
}

.tceo-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 2px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
}
.tceo-inner i { color: var(--gold); font-size: 2.5rem; }

.tceo-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.tceo-name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
}

.tceo-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 620px;
}

.tceo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tceo-tags span {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 50px;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: default;
}

.team-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.tc-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    border: 2px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    transition: background var(--transition), border-color var(--transition);
}
.tc-avatar i { color: var(--gold); font-size: 1.3rem; }

.team-card:hover .tc-avatar {
    background: rgba(201,168,76,0.18);
    border-color: rgba(201,168,76,0.4);
}

.tc-role {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.tc-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
    transition: color var(--transition);
}
.team-card:hover .tc-name { color: var(--white); }

.tc-desc {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.65;
    transition: color var(--transition);
}
.team-card:hover .tc-desc { color: rgba(255,255,255,0.6); }

/* ── WHY CHOOSE US ── */
.why-section {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    transition: all 0.4s ease;
    cursor: default;
}

.why-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: background var(--transition);
}
.why-icon i { font-size: 1.4rem; color: var(--gold); }

.why-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color var(--transition);
}
.why-card:hover h4 { color: var(--gold); }

.why-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    transition: color var(--transition);
}
.why-card:hover p { color: rgba(255,255,255,0.65); }

/* ── CONTACT SECTION ── */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--navy);
    margin-bottom: 12px;
}

.ci-desc { color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.contact-item { display: flex; align-items: center; gap: 16px; }

.ci-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ci-icon i { color: var(--gold); font-size: 1rem; }

.ci-text { display: flex; flex-direction: column; }
.ci-text strong { color: var(--navy); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; }
.ci-text span   { color: var(--text-mid); font-size: 0.9rem; }

/* Company quick links */
.contact-companies-list { margin-bottom: 28px; }

.contact-companies-list h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.ccl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    transition: all var(--transition);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
}
.ccl-item:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); transform: translateX(4px); }

.ccl-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rove-bg    { background: rgba(30,126,74,0.12); }
.rove-bg i  { color: var(--rove-green); font-size: 0.85rem; }
.crystal-bg { background: rgba(26,58,140,0.12); }
.crystal-bg i { color: var(--crystal-blue); font-size: 0.85rem; }
.opalboat-bg{ background: rgba(139,105,20,0.12); }
.opalboat-bg i { color: var(--opal-gold); font-size: 0.85rem; }

.ccl-item span { flex: 1; }
.ccl-arrow { color: var(--text-light); font-size: 0.75rem; margin-left: auto; }

/* Social buttons */
.ci-social { display: flex; gap: 10px; }

.cis-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}
.cis-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.cis-btn.facebook  { background: #1877f2; }
.cis-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.cis-btn.twitter   { background: #1da1f2; }
.cis-btn.youtube   { background: #ff0000; }

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 24px; }

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    background: var(--white);
}

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(13,33,55,0.3);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: var(--white); }
.footer-top { padding: 80px 0 50px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h4,
.footer-contact h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.fc-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom p i { color: var(--gold); margin: 0 2px; }

/* ── UTILITIES ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px; left: 28px;
    display: flex; align-items: center; gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 500;
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float i { font-size: 1.2rem; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }

.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 500;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 400px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .companies-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-hbar, .hc-drops { width: 50%; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }

    /* ── Hero mobile fixes ── */
    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 7px 14px;
        gap: 7px;
        max-width: calc(100vw - 48px);
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-title .line2 { letter-spacing: 2px; }
    .hero-title .line3 { font-size: 0.95rem; letter-spacing: 0.5px; }
    .hero-desc { font-size: 0.9rem; }

    .about-section,
    .portfolio-section,
    .team-section,
    .why-section,
    .contact-section { padding: 70px 0; }

    /* Team responsive */
    .team-ceo { flex-direction: column; text-align: center; gap: 28px; padding: 36px 24px; }
    .tceo-desc { max-width: 100%; }
    .tceo-tags { justify-content: center; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

    /* Hub cascade on mobile: hide complex connector, simpler view */
    .hc-hbar, .hc-drops { width: 80%; }

    /* Companies grid: single column on mobile */
    .companies-grid { grid-template-columns: 1fr; }
    .companies-grid-row2-connector { display: none; }

    /* Hub badge responsive */
    .portfolio-hub-badge { padding: 14px 24px; gap: 12px; }
    .phb-name { font-size: 1.1rem; letter-spacing: 2px; }
    .phb-sub { font-size: 0.6rem; letter-spacing: 1px; }

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

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { padding: 48px 0 36px; }

    .about-egypt-scene { aspect-ratio: 16 / 11; }
    .aes-badge-br { transform: translateY(14px); }
    .about-mini-stats { gap: 10px; }
    .ams-card { padding: 16px 12px; }
    .ams-num { font-size: 1.4rem; }
}

@media (max-width: 600px) {
    .companies-grid { grid-template-columns: 1fr; }
    .hc-hbar, .hc-drops { display: none; }
    .hc-vline { height: 24px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero stats compact */
    .hero-stat { padding: 0 12px; }
    .h-stat-num { font-size: 1.5rem; }
    .h-stat-label { font-size: 0.62rem; letter-spacing: 1px; }
    .h-stat-divider { height: 28px; }

    /* Hero buttons stack */
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom .container { justify-content: center; text-align: center; }

    /* Company cards smaller padding */
    .cc-body { padding: 18px; }
    .cc-top { padding: 22px 18px 14px; }
    .cc-top-num { font-size: 2.8rem; }
}
