@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ================================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Outfit", sans-serif;
    color: #0f172a;
}

/* ================================
   MAIN NAVBAR
================================ */
.main-nav {
    background-color: #ffffff;
    padding: 15px 40px;
    box-shadow: 0 4px 10px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Left */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px; /* Resize the logo here */
    width: auto;
    object-fit: contain;
}

/* Links Center */
.nav-center {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    position: relative;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.nav-center a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #f59e0b;
    transition: width 0.3s ease;
}

.nav-center a:hover {
    color: #f59e0b;
}

.nav-center a:hover::after {
    width: 100%;
}

/* Actions Right */
.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login, .btn-dashboard, .btn-logout {
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.btn-login:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.btn-dashboard {
    background-color: #0f172a;
    color: #ffffff;
}

.btn-dashboard:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-logout {
    background-color: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.btn-logout:hover {
    background-color: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
}

/* ================================
   MAIN CONTAINER
================================ */
.container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ================================
   CARDS
================================ */
.card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    margin-bottom: 40px;
    border: 1px solid #f1f5f9;
}

/* ================================
   FORMS
================================ */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #09223b;
    box-shadow: 0 0 0 2px rgba(9,34,59,0.15);
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Outfit", sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #475569;
    border: 2px solid #cbd5e1;
}

.btn-outline:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.btn-success {
    background-color: #28a745;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-warning {
    background-color: #ffc107;
    color: #ffffff;
}

.btn-warning:hover {
    background-color: #e0a800;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* ================================
   ALERTS
================================ */
.error {
    background-color: #ffe6e6;
    color: #b30000;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.success {
    background-color: #e6ffe6;
    color: #006600;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* ================================
   TABLES
================================ */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

table th,
table td {
    padding: 14px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

table th {
    background-color: #09223b;
    color: #ffffff;
}

table tr:hover {
    background-color: #f5f7fa;
}

/* ================================
   DOCUMENT BUTTONS
================================ */
.doc-btn {
    background-color: #0a1f44;
    color: #ffd700;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px;
    font-size: 13px;
}

.doc-btn:hover {
    background-color: #09223b;
    color: #fff;
}

/* ================================
   ACTION BUTTONS (ACCEPT/DECLINE)
================================ */
.action-btn {
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    margin-right: 5px;
}

.action-btn.accept { background-color: #27ae60; }
.action-btn.accept:hover { background-color: #1e8449; }

.action-btn.decline { background-color: #c0392b; }
.action-btn.decline:hover { background-color: #922b21; }

/* ================================
   MODALS
================================ */
#walkInModal,
#docModal {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#walkInModal > div,
#docModal > div {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    max-height: 90%;
    overflow-y: auto;
    width: 90%;
    max-width: 650px;
    position: relative;
}

/* Close button */
#walkInModal button,
#docModal button {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

#walkInModal button:hover,
#docModal button:hover {
    background: #c82333;
}

/* ================================
   RESPONSIVE
================================ */
@media(max-width:768px){
    .container { margin: 20px auto; padding: 0 10px; }
    .card { padding: 20px; }
    table th, table td { padding: 10px; font-size: 13px; }
    .btn { padding: 8px 12px; font-size: 13px; }
    .doc-btn, .action-btn { font-size: 11px; padding: 4px 8px; }
    
    .hero-premium h1 { font-size: 2.5rem; }
    .hero-premium p { font-size: 1rem; }
    .features-premium { grid-template-columns: 1fr; }
    .header-container { flex-direction: column; gap: 15px; }
}

/* ================================
   LANDING PAGE PREMIUM BLOCKS
================================ */
.top-strip {
    background: linear-gradient(90deg, #090e17 0%, #1e293b 50%, #090e17 100%);
    text-align: center;
    padding: 25px 20px;
    font-family: "Outfit", sans-serif;
    border-bottom: 3px solid #f59e0b;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Beautiful light sweeping animation */
.top-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: sweepingLight 5s infinite;
}

@keyframes sweepingLight {
    0% { left: -150%; }
    30% { left: 200%; }
    100% { left: 200%; }
}

.top-strip h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    
    /* 3D Metallic Gold Gradient */
    background: linear-gradient(
        to bottom, 
        #fffbeb 0%, 
        #fde047 20%, 
        #f59e0b 48%, 
        #78350f 50%, 
        #fcd34d 100%
    );
    background-size: 100% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Thick 3D Drop Shadow */
    filter: drop-shadow(0px 1px 0px #451a03) 
            drop-shadow(0px 3px 0px #270f00) 
            drop-shadow(0px 8px 10px rgba(0,0,0,0.8));
            
    animation: metallicShine 4s linear infinite;
    position: relative;
    z-index: 2;
}

@keyframes metallicShine {
    0% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

.top-strip p {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}

.hero-premium {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('/assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 120px 40px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.35rem;
    color: #e2e8f0;
    margin-bottom: 35px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* STATS COUNTER */
.stats-premium {
    display: flex;
    justify-content: space-around;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
    margin-bottom: 80px;
    margin-top: -100px; /* pull up into hero */
    position: relative;
    z-index: 20;
    border: 1px solid #f1f5f9;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    display: inline-block;
    font-size: 3.5rem;
    color: #f59e0b;
    margin-bottom: 0px;
}

.stat-box span {
    font-size: 2.5rem;
    color: #f59e0b;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.stat-box p {
    color: #475569;
    font-size: 1.15rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.about-premium {
    text-align: center;
    padding: 60px 40px;
}

.about-premium h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-premium p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 24px auto;
}

.about-premium .btn {
    margin-top: 16px;
}

.features-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f8fafc;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-box .icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 16px;
    background: #f1f5f9;
    border-radius: 50%;
    line-height: 1;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #0f172a;
}

.feature-box p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* ================================
   FOOTER
================================ */
.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    padding: 40px 20px;
    text-align: center;
    font-family: "Outfit", sans-serif;
    margin-top: auto;
    border-top: 4px solid #f59e0b;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-text strong {
    color: #fcd34d;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 8px;
}

/* ================================
   GALLERY PREMIUM
================================ */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}
.gallery-header h2 {
    font-size: 2.8rem;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    font-weight: 800;
}
.gallery-header p {
    font-size: 1.2rem;
    color: #64748b;
}
.gallery-grid {
    column-count: 3;
    column-gap: 25px;
}
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 600px) { .gallery-grid { column-count: 1; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 25px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-icon {
    background: #fcd34d;
    color: #0f172a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 15px rgba(24cd, 211, 77, 0.4);
}
.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* Lightbox Modal */
#lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
#lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out;
}
#lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255,255,255,0.6);
    font-size: 45px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}
#lightbox-close:hover {
    color: #fff;
}
@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

