/* ================================================================
   WithIbrahim — Landing Page  (recreated from _Reference/index.html)
================================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #fff; color: #0a0f1e; overflow-x: hidden; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 52px;
    background: rgba(0,8,28,0.45);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 20px; color: #fff;
    letter-spacing: 1px; text-transform: uppercase;
}
.btn-ar {
    background: rgba(255,255,255,0.1); color: #fff;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 22px;
    padding: 9px 22px; font-size: 13px; font-weight: 600;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: background .2s;
}
.btn-ar:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('/images/Hero.jpg');
    background-size: cover;
    background-position: center top;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.06); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(0,10,40,0.72) 0%,
        rgba(0,20,70,0.45) 50%,
        rgba(0,10,40,0.75) 100%
    );
}
.hero-body {
    position: relative; z-index: 2;
    padding: 0 52px; max-width: 820px;
}
.hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 11vw, 140px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 44px;
}
.hero-h1 .line-where    { display: block; color: #fff; }
.hero-h1 .line-memories { display: block; color: #00C2E0; }
.hero-h1 .line-begin    { display: block; color: #fff; }
.hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: #0057B8; color: #fff;
    border: none; border-radius: 32px;
    padding: 17px 40px; font-size: 16px; font-weight: 700;
    cursor: pointer; letter-spacing: 0.3px; text-decoration: none;
    box-shadow: 0 10px 32px rgba(0,87,184,0.55);
    transition: all .2s;
}
.hero-cta:hover {
    background: #1A8FE3; transform: translateY(-2px); color: #fff;
    box-shadow: 0 14px 40px rgba(0,87,184,0.65);
}

/* ─── BEYOND EXPECTATIONS ────────────────────────────────────── */
.beyond { padding: 100px 52px; background: #f0f5ff; }
.beyond-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: #0057B8; margin-bottom: 20px;
}
.section-label::before {
    content: ''; width: 28px; height: 2px;
    background: #0057B8; border-radius: 2px; flex-shrink: 0;
}
.beyond-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(44px, 5.5vw, 70px);
    text-transform: uppercase; line-height: 0.95; color: #0a0f1e;
    margin-bottom: 52px;
}
.beyond-h2 .bl { color: #0057B8; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
    border-radius: 20px; overflow: hidden;
    position: relative; height: 420px; cursor: pointer;
}
.card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.card:hover img { transform: scale(1.07); }
.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,8,40,0.92) 0%, rgba(0,8,40,0.05) 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
}
.card-sub {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #00C2E0; margin-bottom: 6px;
}
.card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px; font-weight: 900; text-transform: uppercase;
    color: #fff; line-height: 1; margin-bottom: 8px;
}
.card-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.55; }

/* ─── MOMENTS & FEEDBACK ─────────────────────────────────────── */
.moments { padding: 100px 52px; background: #001a55; }
.moments-inner { max-width: 1200px; margin: 0 auto; }
.moments-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: #00C2E0; margin-bottom: 20px;
}
.moments-label::before {
    content: ''; width: 28px; height: 2px;
    background: #00C2E0; border-radius: 2px; flex-shrink: 0;
}
.moments-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(42px, 5vw, 64px);
    text-transform: uppercase; line-height: 1; margin-bottom: 52px;
}
.moments-h2 .w    { color: #fff; }
.moments-h2 .cyan { color: #00C2E0; }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 22px; padding: 32px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.3s, background 0.3s;
}
.tcard:hover { transform: translateY(-5px); background: rgba(255,255,255,0.11); }
.stars { display: flex; gap: 3px; }
.stars span { color: #F5C842; font-size: 18px; }
.tquote {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,0.88); font-style: italic; flex: 1;
}
.tdivider { height: 1px; background: rgba(255,255,255,0.1); }
.tauthor { display: flex; align-items: center; gap: 12px; }
.tavatar {
    width: 44px; height: 44px; border-radius: 50%; background: #0057B8;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800; color: #fff;
}
.tname { font-size: 14px; font-weight: 700; color: #fff; }
.tloc  { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: #060c1c; padding: 64px 52px 36px; }
.footer-top {
    display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 52px; margin-bottom: 52px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800; font-size: 18px; color: #fff;
    letter-spacing: 1px; text-transform: uppercase;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 230px; }
.fcol-title {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 18px;
}
.flinks { display: flex; flex-direction: column; gap: 11px; }
.flinks a { font-size: 14px; color: rgba(255,255,255,0.58); text-decoration: none; transition: color .2s; }
.flinks a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
}
.fcopy { font-size: 13px; color: rgba(255,255,255,0.26); }
.fflags { font-size: 20px; display: flex; gap: 8px; }
.flove { font-size: 13px; color: rgba(255,255,255,0.26); }
.flove span { color: #e74c3c; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .hero-body { padding: 0 20px; }
    .beyond { padding: 64px 20px; }
    .cards { grid-template-columns: 1fr; }
    .moments { padding: 64px 20px; }
    .tcards { grid-template-columns: 1fr; }
    footer { padding: 48px 20px 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
