/* =============================================
   Landing Page Styles
   ============================================= */

.landing-page {
    background: #fff;
}

.landing-page .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* ============ Navbar Admin Hidden Dot ============ */
.nav-admin-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-admin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #94a3b8;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.nav-admin-wrap:hover .nav-admin-icon {
    background: rgba(59,130,246,0.2);
    color: #60a5fa;
}

.nav-admin-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.nav-admin-wrap:hover .nav-admin-menu {
    /* handled by JS */
}

.nav-admin-menu a {
    display: block;
    padding: 9px 18px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.15s, color 0.15s;
}

.nav-admin-menu a:hover {
    background: rgba(59,130,246,0.12);
    color: #fff;
}

.nav-admin-menu a.text-danger {
    color: #f87171 !important;
}

.nav-admin-menu a.text-danger:hover {
    background: rgba(239,68,68,0.1);
    color: #fca5a5 !important;
}

.nav-admin-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 4px 0;
}


.landing-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #fff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ Hero Company Name Overlay ============ */
.hero-company-name {
    font-family: 'Dancing Script', cursive;
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    background: linear-gradient(90deg, #fff 0%, #93c5fd 60%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-company-name::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    margin-top: 6px;
    border-radius: 2px;
}

/* ============ Hero Slider ============ */
.hero-slider-section {
    margin-top: 56px;
}

.hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
}

.hero-slider-section .carousel-indicators {
    z-index: 3;
}

.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    z-index: 3;
    width: 5%;
}

/* ============ Footer Slider ============ */
.footer-slider-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.footer-slide-image {
    max-height: 200px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer-slider-section .carousel-control-prev,
.footer-slider-section .carousel-control-next {
    width: 5%;
}

.footer-slider-section .carousel-item {
    padding: 20px 0;
}

/* ============ Feature Cards ============ */
.feature-card {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

section {
    scroll-margin-top: 80px;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 80vh;
    }
    
    .hero-company-name {
        font-size: 2.4rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-slide-image {
        max-height: 150px;
    }

    .landing-footer-brand {
        font-size: 2rem;
    }
}

/* ============ Footer ============ */
.landing-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    padding: 48px 0 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.landing-footer-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    display: inline-block;
}

.landing-footer-tagline {
    font-size: 0.9rem;
    color: #64748b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.landing-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.landing-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.landing-footer-links a:hover {
    color: #60a5fa;
}

.landing-footer-copy {
    font-size: 0.8rem;
    color: #475569;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
    margin-top: 8px;
}