/* ============================================================
   BeeTravel - Public Pages
   Premium luxury hotel web app stylesheet
   Desktop-first, Inter font, amber/orange design system
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
    --bee-primary: #F59E0B;
    --bee-primary-dark: #D97706;
    --bee-primary-light: #FCD34D;
    --bee-primary-50: #FFFBEB;
    --bee-accent: #F97316;
    --bee-dark: #1E293B;
    --bee-darker: #0F172A;
    --bee-gray: #64748B;
    --bee-gray-light: #94A3B8;
    --bee-light: #F8FAFC;
    --bee-border: #E2E8F0;
    --bee-radius: 16px;
    --bee-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 6px rgba(0,0,0,.04);
    --bee-shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 20px 25px -5px rgba(0,0,0,.04);
    --bee-shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 25px 50px -12px rgba(0,0,0,.12);
    --bee-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --bee-navbar-height: 68px;
}

/* ============================================================
   2. KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes heroFloat {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    33%  { transform: translate(18px, -22px) rotate(4deg) scale(1.04); }
    66%  { transform: translate(-14px, 12px) rotate(-3deg) scale(0.97); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes heroFloatAlt {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    33%  { transform: translate(-20px, 16px) rotate(-5deg) scale(1.06); }
    66%  { transform: translate(12px, -10px) rotate(2deg) scale(0.95); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 14px rgba(245,158,11,.35); }
    50%       { box-shadow: 0 8px 30px rgba(245,158,11,.55); }
}

@keyframes meshMove {
    0%   { transform: translate(0, 0) scale(1); opacity: 1; }
    50%  { transform: translate(-3%, 2%) scale(1.08); opacity: 0.85; }
    100% { transform: translate(0, 0) scale(1); opacity: 1; }
}

@keyframes meshMoveAlt {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(4%, -3%) scale(1.06); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ============================================================
   3. BASE & TYPOGRAPHY
   ============================================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-feature-settings: 'cv11', 'ss01';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--bee-dark);
    background: #fff;
    line-height: 1.6;
    animation: fadeIn 0.4s ease-out;
}

/* ============================================================
   4. NAVBAR - Frosted glass effect
   ============================================================ */

.bee-public-navbar {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    padding: 0;
    height: var(--bee-navbar-height);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(226,232,240,.5), 0 4px 16px rgba(0,0,0,.04);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.bee-public-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.bee-public-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--bee-darker);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.3px;
    flex-shrink: 0;
    transition: var(--bee-transition);
}

.bee-public-navbar .navbar-brand:hover {
    color: var(--bee-primary-dark);
}

.bee-public-navbar .navbar-brand img {
    height: 36px;
    width: 36px;
    border-radius: 10px;
    object-fit: cover;
}

/* ---- Nav Links ---- */

.bee-public-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bee-public-nav a {
    position: relative;
    display: inline-block;
    padding: .5rem .875rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    color: var(--bee-gray);
    transition: var(--bee-transition);
    white-space: nowrap;
}

.bee-public-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.75rem);
    height: 2px;
    background: linear-gradient(90deg, var(--bee-primary), var(--bee-accent));
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.bee-public-nav a:hover,
.bee-public-nav a.active {
    color: var(--bee-primary-dark);
    background: rgba(245, 158, 11, 0.07);
}

.bee-public-nav a:hover::after,
.bee-public-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ---- Nav CTA Button ---- */

.bee-nav-login {
    display: inline-flex !important;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.25rem !important;
    background: linear-gradient(135deg, var(--bee-primary) 0%, var(--bee-accent) 100%) !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: .875rem !important;
    text-decoration: none !important;
    transition: var(--bee-transition) !important;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.32);
    white-space: nowrap;
    flex-shrink: 0;
}

.bee-nav-login::after {
    display: none !important;
}

.bee-nav-login:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45) !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--bee-primary-dark) 0%, var(--bee-accent) 100%) !important;
}

/* ============================================================
   5. HERO SECTION - Animated mesh gradient + floating shapes
   ============================================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 6rem;
    color: #fff;
    background: var(--bee-darker);
    isolation: isolate;
}

/* Mesh gradient layer 1 */
.hero-section::before {
    content: '';
    position: absolute;
    inset: -60%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(245, 158, 11, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 75% 70%, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 70% 80% at 50% 10%, rgba(30, 41, 59, 0.6) 0%, transparent 60%);
    animation: meshMove 14s ease-in-out infinite;
    z-index: 0;
}

/* Mesh gradient layer 2 */
.hero-section::after {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 55% 45% at 80% 20%, rgba(252, 211, 77, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 65% 55% at 10% 75%, rgba(249, 115, 22, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 55% 85%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: meshMoveAlt 18s ease-in-out infinite;
    z-index: 0;
}

/* Floating geometric shape 1 */
.hero-section .hero-shape-1 {
    position: absolute;
    top: 10%;
    right: 8%;
    width: 160px;
    height: 160px;
    border-radius: 38% 62% 65% 35% / 44% 44% 56% 56%;
    background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(249,115,22,.1));
    border: 1px solid rgba(245,158,11,.2);
    animation: heroFloat 11s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Floating geometric shape 2 */
.hero-section .hero-shape-2 {
    position: absolute;
    bottom: 12%;
    left: 6%;
    width: 110px;
    height: 110px;
    border-radius: 62% 38% 30% 70% / 55% 45% 55% 45%;
    background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(245,158,11,.08));
    border: 1px solid rgba(249,115,22,.15);
    animation: heroFloatAlt 13s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Floating geometric shape 3 */
.hero-section .hero-shape-3 {
    position: absolute;
    top: 55%;
    right: 20%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(252, 211, 77, 0.12);
    border: 1px solid rgba(252,211,77,.2);
    animation: heroFloat 9s ease-in-out infinite 2s;
    z-index: 1;
    pointer-events: none;
}

/* ---- Hero Content ---- */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease-out both;
}

.hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
    animation: fadeInUp 0.7s ease-out 0.1s both;
    object-fit: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    line-height: 1.08;
    color: #fff;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--bee-primary-light) 0%, var(--bee-primary) 40%, var(--bee-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

/* ---- Hero Buttons ---- */

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2.25rem;
    background: linear-gradient(135deg, var(--bee-primary) 0%, var(--bee-accent) 100%);
    color: #fff;
    border: none;
    border-radius: var(--bee-radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: -0.1px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--bee-transition);
    box-shadow: 0 4px 18px rgba(245,158,11,.4);
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,158,11,.5);
    color: #fff;
    animation: none;
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2.25rem;
    background: transparent;
    color: rgba(255,255,255,.88);
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: var(--bee-radius);
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    transition: var(--bee-transition);
    backdrop-filter: blur(8px);
}

.hero-btn-outline:hover {
    border-color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.08);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
   5b. HERO TRUST BADGES
   ============================================================ */

.hero-badges {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.25rem;
    animation: fadeInUp 0.7s ease-out 0.55s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.65);
    font-size: .78rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: var(--bee-transition);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 158, 11, 0.35);
    color: rgba(255, 255, 255, 0.85);
}

.hero-badge svg {
    opacity: .7;
    color: var(--bee-primary-light);
}

/* ============================================================
   5c. HOW IT WORKS SECTION
   ============================================================ */

.how-section {
    padding: 5.5rem 0;
    background: #fff;
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bee-border), transparent);
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 250px;
}

.how-step-number {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bee-primary), var(--bee-accent));
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.4);
    z-index: 2;
}

.how-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: var(--bee-light);
    border: 1.5px solid var(--bee-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--bee-primary-dark);
    transition: var(--bee-transition);
}

.how-step:hover .how-step-icon {
    background: linear-gradient(135deg, rgba(245,158,11,.1), rgba(249,115,22,.06));
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.how-step-title {
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--bee-darker);
    margin-bottom: .5rem;
}

.how-step-text {
    font-size: .88rem;
    color: var(--bee-gray);
    line-height: 1.65;
}

.how-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bee-border);
    padding-top: 24px;
    flex-shrink: 0;
}

/* ============================================================
   6. FEATURES SECTION - Premium cards with gradient border
   ============================================================ */

.features-section {
    padding: 6rem 0;
    background: var(--bee-light);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bee-border), transparent);
}

/* ---- Section Headers ---- */

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bee-darker);
    text-align: center;
    margin-bottom: .625rem;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--bee-gray);
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ---- Features Grid ---- */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ---- Feature Card ---- */

.feature-card {
    position: relative;
    background: #fff;
    border-radius: var(--bee-radius);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: var(--bee-transition);
    box-shadow: var(--bee-shadow);
    isolation: isolate;
    overflow: hidden;
}

/* Gradient border via pseudo-element */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--bee-radius);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--bee-primary), var(--bee-accent));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bee-primary), var(--bee-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 var(--bee-radius) var(--bee-radius);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bee-shadow-xl);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

/* ---- Feature Card Icon ---- */

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(245,158,11,.12) 0%, rgba(249,115,22,.08) 100%);
    border: 1px solid rgba(245,158,11,.18);
    transition: var(--bee-transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, rgba(245,158,11,.2) 0%, rgba(249,115,22,.15) 100%);
    transform: scale(1.08) rotate(-3deg);
    border-color: rgba(245,158,11,.35);
}

.feature-card-title {
    font-size: .95rem;
    font-weight: 650;
    color: var(--bee-darker);
    margin-bottom: .375rem;
    position: relative;
    z-index: 1;
}

.feature-card-text {
    font-size: .82rem;
    color: var(--bee-gray);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ============================================================
   7. CTA SECTION - Gradient background with decorative elements
   ============================================================ */

.cta-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(150deg, var(--bee-darker) 0%, #1a1a30 45%, var(--bee-dark) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

/* Decorative radial glow */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(245,158,11,.15) 0%, transparent 65%);
    animation: meshMove 12s ease-in-out infinite;
    z-index: 0;
}

/* Decorative top border line */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,.5), transparent);
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .875rem;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.58);
    margin-bottom: 2.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-section .hero-btn-primary,
.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2.25rem;
    background: linear-gradient(135deg, var(--bee-primary) 0%, var(--bee-accent) 100%);
    color: #fff;
    border: none;
    border-radius: var(--bee-radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: var(--bee-transition);
    box-shadow: 0 4px 20px rgba(245,158,11,.4);
}

.cta-section .hero-btn-primary:hover,
.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(245,158,11,.55);
    color: #fff;
}

/* ============================================================
   7b. STATS SECTION
   ============================================================ */

.stats-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(150deg, var(--bee-darker) 0%, #1a1a30 50%, var(--bee-dark) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(ellipse 50% 40% at 25% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 75% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 55%);
    animation: meshMove 16s ease-in-out infinite;
    z-index: 0;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1.5rem 1rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, var(--bee-primary-light) 0%, var(--bee-primary) 40%, var(--bee-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bee-primary), var(--bee-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 2px;
}

.stat-label {
    display: block;
    margin-top: .625rem;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

/* ============================================================
   7c. SCROLL REVEAL ANIMATIONS
   ============================================================ */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   8. PUBLIC PAGES - General content pages (About, Contact, etc.)
   ============================================================ */

.public-page {
    padding: 3.5rem 0 5rem;
    min-height: 60vh;
    animation: fadeInUp 0.5s ease-out both;
}

.public-page h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bee-darker);
    margin-bottom: 1.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.public-page h2 {
    font-size: 1.5rem;
    font-weight: 650;
    color: var(--bee-darker);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.public-page p {
    color: var(--bee-gray);
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* ---- Page Card ---- */

.public-page .page-card {
    background: #fff;
    border: 1px solid var(--bee-border);
    border-radius: var(--bee-radius);
    padding: 2.25rem;
    box-shadow: var(--bee-shadow);
    max-width: 620px;
    transition: box-shadow 0.25s ease;
}

.public-page .page-card:hover {
    box-shadow: var(--bee-shadow-lg);
}

/* ---- Form Controls ---- */

.public-page .form-label {
    font-size: .875rem;
    font-weight: 500;
    color: var(--bee-dark);
    margin-bottom: .375rem;
    display: block;
}

.public-page .form-control {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--bee-border);
    border-radius: 10px;
    font-size: .9rem;
    font-family: inherit;
    color: var(--bee-dark);
    background: #fff;
    padding: .5rem .875rem;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    appearance: none;
    -webkit-appearance: none;
}

.public-page textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding-top: .75rem;
    line-height: 1.6;
}

.public-page .form-control::placeholder {
    color: var(--bee-gray-light);
}

.public-page .form-control:focus {
    border-color: var(--bee-primary);
    box-shadow: 0 0 0 3.5px rgba(245, 158, 11, 0.14);
    outline: none;
    background: var(--bee-primary-50);
}

.public-page .form-control:hover:not(:focus) {
    border-color: var(--bee-gray-light);
}

/* ---- Form Submit Button ---- */

.public-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: linear-gradient(135deg, var(--bee-primary) 0%, var(--bee-accent) 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: .9rem;
    padding: .625rem 1.75rem;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.32);
    transition: var(--bee-transition);
    cursor: pointer;
}

.public-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45);
    color: #fff;
}

.public-page .btn-primary:active {
    transform: translateY(0);
}

/* ============================================================
   9. FOOTER - Dark premium footer
   ============================================================ */

.bee-footer {
    background: var(--bee-darker);
    color: rgba(255, 255, 255, 0.45);
    padding: 2.75rem 0;
    font-size: .85rem;
    border-top: 1px solid rgba(255,255,255,.04);
}

.bee-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.bee-footer-brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: -0.2px;
}

.bee-footer-brand img {
    height: 28px;
    width: 28px;
    border-radius: 7px;
    object-fit: cover;
    opacity: .75;
}

.bee-footer a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.bee-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.bee-footer-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bee-footer-links a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

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

.bee-footer-copy {
    text-align: right;
    font-size: .85rem;
}

/* ---- Navbar Extras ---- */
.bee-nav-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem 1rem;
    background: var(--bee-dark);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all .25s;
}

.bee-nav-logout-btn:hover {
    background: var(--bee-darker);
    transform: translateY(-1px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--bee-navbar-height) + 1rem);
}

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

.bee-nav-login-mobile {
    font-size: .85rem !important;
    padding: .4rem 1rem !important;
}

.hamburger-btn {
    display: none;
}

.mobile-drawer {
    display: none;
}

/* ---- Hero Shapes Container ---- */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* ---- CTA Content ---- */
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

/* ---- About Page Stats ---- */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bee-light);
    border-radius: var(--bee-radius);
    transition: all .25s;
}

.about-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bee-shadow);
}

.about-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bee-primary), var(--bee-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .35rem;
}

.about-stat-label {
    font-size: .85rem;
    color: var(--bee-gray);
    font-weight: 500;
}

/* ============================================================
   10. ERROR PAGE - Large animated gradient error code
   ============================================================ */

.error-page {
    text-align: center;
    padding: 6rem 1.5rem 5rem;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out both;
}

.error-page-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -4px;
    background: linear-gradient(135deg, var(--bee-primary-light) 0%, var(--bee-primary) 40%, var(--bee-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    display: block;
}

.error-page h2 {
    font-size: 1.625rem;
    font-weight: 650;
    color: var(--bee-darker);
    margin-bottom: .875rem;
    letter-spacing: -0.3px;
}

.error-page p {
    color: var(--bee-gray);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
    max-width: 420px;
    line-height: 1.7;
}

.error-page .btn-back {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .75rem 1.75rem;
    background: linear-gradient(135deg, var(--bee-primary), var(--bee-accent));
    color: #fff;
    border: none;
    border-radius: var(--bee-radius);
    font-weight: 600;
    font-family: inherit;
    font-size: .95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--bee-transition);
    box-shadow: 0 4px 14px rgba(245,158,11,.35);
}

.error-page .btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,.48);
    color: #fff;
}

/* ============================================================
   11. BREADCRUMBS
   ============================================================ */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem;
    background-color: var(--bee-light);
    border: 1px solid var(--bee-border);
    border-radius: 10px;
    padding: .625rem 1rem;
    margin-bottom: 1.5rem;
    font-size: .85rem;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--bee-gray);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--bee-gray-light);
    margin-right: .375rem;
    font-weight: 300;
}

.breadcrumb-item > a {
    text-decoration: none;
    color: var(--bee-primary-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-item > a:hover {
    color: var(--bee-accent);
}

.breadcrumb-item.active {
    color: var(--bee-dark);
    font-weight: 500;
}

/* ============================================================
   12. ALERTS
   ============================================================ */

.alert {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    border-radius: var(--bee-radius);
    border: 1px solid transparent;
    font-size: .9rem;
    padding: 1rem 1.25rem;
    line-height: 1.55;
    animation: fadeInUp 0.35s ease-out both;
}

.alert-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-danger,
.alert-error {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #9f1239;
}

.alert-warning {
    background: var(--bee-primary-50);
    border-color: rgba(245,158,11,.3);
    color: #92400e;
}

.alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

/* ============================================================
   13. UTILITIES & HELPERS
   ============================================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--bee-primary), var(--bee-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bee-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bee-border), transparent);
    margin: 2rem 0;
}

/* ============================================================
   14. RESPONSIVE - Mobile adaptations
   ============================================================ */

@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-section { padding: 5.5rem 0 5rem; }
}

@media (max-width: 767.98px) {
    :root {
        --bee-navbar-height: 60px;
    }

    .bee-public-nav {
        display: none;
    }

    .bee-mobile-nav {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .bee-public-navbar .navbar-brand {
        font-size: 1.05rem;
    }

    .bee-footer-inner {
        flex-direction: column;
        gap: .75rem;
        text-align: center;
    }

    .bee-footer-copy {
        text-align: center;
    }

    .hero-section {
        padding: 3.5rem 0 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.8px;
    }

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

    .hero-logo {
        width: 86px;
        height: 86px;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: .75rem;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }

    .hero-section .hero-shape-1 {
        width: 100px;
        height: 100px;
        right: 4%;
    }

    .hero-section .hero-shape-2 {
        width: 70px;
        height: 70px;
    }

    .hero-section .hero-shape-3 {
        display: none;
    }

    /* How Section Mobile */
    .how-section {
        padding: 3.5rem 0;
    }

    .how-steps {
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }

    .how-step {
        max-width: 100%;
    }

    .how-step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .how-step-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .features-section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: .95rem;
    }

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

    /* Stats Mobile */
    .stats-section {
        padding: 3.5rem 0;
    }

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

    .stat-value {
        font-size: 2.25rem;
    }

    .stat-plus {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 3.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .public-page {
        padding: 2rem 0 3.5rem;
    }

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

    .public-page .page-card {
        padding: 1.5rem;
    }

    .error-page {
        padding: 4rem 1.5rem;
    }

    .error-page-code {
        font-size: 6rem;
        letter-spacing: -2px;
    }

    .bee-footer .container {
        flex-direction: column;
        gap: .875rem;
        text-align: center;
    }

    .bee-footer-copy {
        text-align: center;
    }

    .bee-footer-links {
        justify-content: center;
    }

    /* Hamburger Menu */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        border-radius: 8px;
        transition: background .2s;
    }

    .hamburger-btn:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .hamburger-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--bee-dark);
        border-radius: 2px;
        transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

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

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

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

    /* Mobile Drawer */
    .mobile-drawer {
        position: fixed;
        top: var(--bee-navbar-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--bee-border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 1rem 1.5rem 1.5rem;
        z-index: 1029;
        transform: translateY(-110%);
        transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
        list-style: none;
        margin: 0;
    }

    .mobile-drawer.open {
        transform: translateY(0);
    }

    .mobile-drawer li {
        list-style: none;
    }

    .mobile-drawer a {
        display: flex;
        align-items: center;
        gap: .5rem;
        padding: .875rem 1rem;
        border-radius: 12px;
        text-decoration: none;
        font-size: .95rem;
        font-weight: 500;
        color: var(--bee-dark);
        transition: all .2s;
    }

    .mobile-drawer a:hover,
    .mobile-drawer a.active {
        background: rgba(245, 158, 11, 0.08);
        color: var(--bee-primary-dark);
    }

    .mobile-drawer .drawer-cta {
        margin-top: .5rem;
        padding-top: .75rem;
        border-top: 1px solid var(--bee-border);
    }

    .mobile-drawer .drawer-cta a {
        justify-content: center;
        background: linear-gradient(135deg, var(--bee-primary), var(--bee-accent));
        color: #fff;
        font-weight: 600;
    }

    .mobile-drawer .drawer-cta a:hover {
        background: linear-gradient(135deg, var(--bee-primary-dark), var(--bee-accent));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .error-page-code {
        font-size: 5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
