/* assets/css/styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --dark-green: #1a472a;
    --dark-blue: #082f49;
    --accent: #d97706;
    --light-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Header & Navigation */
.main-header {
    background-color: var(--dark-green);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 0.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Login Icon */
.login-icon {
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
    background-color: var(--dark-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.login-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-icon:hover::before {
    left: 100%;
}

.login-icon:hover {
    background-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Main Website Content */
.hero {
    background: linear-gradient(rgba(26, 71, 42, 0.85), rgba(8, 47, 73, 0.85)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    color: var(--accent);
    font-style: italic;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.hero h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.scroll-down-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    margin-top: 2rem;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.scroll-down-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.scroll-down-button:hover::before {
    left: 100%;
}

.scroll-down-button:hover {
    background-color: #b45309;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--dark-green), var(--accent));
    border-radius: 2px;
}

/* Why Choose Likileng */
.why-choose-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.why-choose-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 5px solid var(--dark-green);
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--dark-green), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-green), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.5s;
}

.why-choose-item:hover .why-choose-icon {
    transform: rotateY(180deg);
}

.why-choose-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    line-height: 1.4;
    overflow: visible;
    white-space: normal;
    min-height: 3rem;
    font-weight: 700;
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--dark-blue), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

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

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-blue), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.5s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Apply Now Button */
.apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    background-color: #b45309;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.apply-button.disabled {
    background-color: #9ca3af !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.apply-button.disabled::before {
    display: none !important;
}

.apply-button.disabled:hover {
    background-color: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

.application-status-banner {
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #92400e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.application-status-banner.closed {
    background-color: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
}

/* Gallery Preview Section */
.gallery-preview-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.gallery-preview-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all-gallery {
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.view-all-gallery:hover::before {
    left: 100%;
}

.view-all-gallery:hover {
    background-color: #b45309;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.gallery-scroll-container {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gallery-scroll-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    height: 100%;
    animation: scrollGallery 40s linear infinite;
    gap: 20px;
    padding: 0 20px;
}

.gallery-scroll-track.paused {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s, box-shadow 0.5s;
    background-color: #f0f0f0;
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 15px 12px 10px;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.4s;
    font-weight: 600;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.gallery-control-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-control-btn:hover {
    background-color: var(--accent);
    transform: scale(1.1);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 6 - 20px * 6));
    }
}

/* Admin Panel Container */
.admin-container {
    display: none;
    min-height: 100vh;
    background-color: #f1f5f9;
}

.admin-container.active {
    display: block;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 250px;
    background-color: var(--dark-blue);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding-top: 1.5rem;
    overflow-y: auto;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease;
    z-index: 100;
}

/* Admin Hamburger */
.admin-hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 10px 15px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
}

.admin-logo {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.admin-logo h2 {
    font-size: 1.2rem;
    font-weight: 700;
}

.admin-logo span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.admin-nav {
    padding: 0 1rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.admin-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s;
}

.admin-nav a:hover::before,
.admin-nav a.active::before {
    left: 100%;
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.admin-nav i {
    width: 20px;
    text-align: center;
}

/* Admin Main Content */
.admin-main {
    margin-left: 250px;
    padding: 2rem;
}

.admin-header {
    background: linear-gradient(to right, var(--dark-green), var(--dark-blue));
    color: white;
    padding: 1.8rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.admin-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
    border-left: 5px solid var(--dark-green);
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.stat-icon.blue {
    background: linear-gradient(135deg, var(--dark-blue), #1e40af);
}

.stat-icon.green {
    background: linear-gradient(135deg, var(--dark-green), #166534);
}

.stat-icon.amber {
    background: linear-gradient(135deg, var(--accent), #b45309);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-info p {
    color: var(--text-light);
    margin-top: 5px;
    font-size: 0.95rem;
}

/* Admin Accounts Management (inside modal) */
.admin-accounts-section {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    border-top: 5px solid var(--dark-green);
}

.admin-accounts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.admin-accounts-header h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-admin-btn {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-admin-btn:hover {
    background: linear-gradient(to right, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.admin-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.admin-account-card {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
    transition: var(--transition);
}

.admin-account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.account-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.account-role {
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.account-details {
    margin-bottom: 15px;
}

.account-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.account-detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.account-detail-value {
    color: var(--text-dark);
    font-weight: 600;
}

.account-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.account-action-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.account-action-btn.edit {
    background-color: #3b82f6;
    color: white;
}

.account-action-btn.edit:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.account-action-btn.reset {
    background-color: #10b981;
    color: white;
}

.account-action-btn.reset:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.account-action-btn.delete {
    background-color: #ef4444;
    color: white;
}

.account-action-btn.delete:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}

.account-action-btn:disabled {
    background-color: #cbd5e1;
    color: #64748b;
    cursor: not-allowed;
    transform: none;
}

/* Activity Log Styles (inside modal) */
.activity-log-container {
    background-color: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--dark-green);
    max-height: 500px;
    overflow-y: auto;
}

.activity-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.activity-log-header h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.activity-filter {
    padding: 8px 15px;
    background-color: #f1f5f9;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.activity-filter:hover,
.activity-filter.active {
    background-color: var(--dark-blue);
    color: white;
}

.activity-log {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    padding: 15px;
    border-radius: 10px;
    background-color: #f8fafc;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.activity-item:hover {
    background-color: #f1f5f9;
    transform: translateX(5px);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.activity-user {
    font-weight: 700;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-user::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.activity-time {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.activity-action {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.activity-details {
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: #f1f5f9;
    padding: 8px;
    border-radius: 5px;
    margin-top: 5px;
}

.activity-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.activity-type.gallery {
    background-color: #dbeafe;
    color: #1e40af;
}

.activity-type.about {
    background-color: #dcfce7;
    color: #166534;
}

.activity-type.announcement {
    background-color: #fef3c7;
    color: #92400e;
}

.activity-type.admin {
    background-color: #fce7f3;
    color: #9d174d;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.4s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-modal:hover {
    background-color: var(--light-gray);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal h2 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(8, 47, 73, 0.1);
}

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

.form-group .error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group .error.show {
    display: block;
}

.submit-button {
    width: 100%;
    background: linear-gradient(to right, var(--accent), #b45309);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery Management CRUD Styles */
.gallery-crud-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gallery-action-btn {
    background: linear-gradient(to right, var(--dark-green), #166534);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.gallery-action-btn:hover::before {
    left: 100%;
}

.gallery-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.gallery-action-btn.delete {
    background: linear-gradient(to right, #ef4444, #dc2626);
}

.gallery-action-btn.edit {
    background: linear-gradient(to right, #3b82f6, #2563eb);
}

.gallery-action-btn.add {
    background: linear-gradient(to right, #10b981, #059669);
}

/* Gallery Selection and Batch Operations Styles */
.gallery-item.selected {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    transform: scale(1.02);
}

.gallery-select-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    z-index: 25;
    cursor: pointer;
    accent-color: var(--accent);
    display: block;
}

/* Make admin gallery item actions always visible */
#adminGalleryGrid .gallery-item-actions {
    opacity: 1 !important;
    display: flex !important;
    position: absolute;
    top: 10px;
    right: 10px;
    gap: 5px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 5px;
}

/* Batch operations toolbar */
.batch-operations-toolbar {
    display: none;
    background: linear-gradient(to right, var(--dark-green), var(--dark-blue));
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.batch-operations-toolbar.show {
    display: flex;
}

.selected-count {
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

.batch-action-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.batch-action-btn:hover {
    background: #b45309;
    transform: translateY(-2px);
}

.batch-action-btn.delete-all {
    background: #ef4444;
}

.batch-action-btn.delete-all:hover {
    background: #dc2626;
}

.select-all-container {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.select-all-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* Adjust gallery item layout for selection */
.full-gallery-item {
    position: relative;
}

.full-gallery-item .gallery-select-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 25;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.full-gallery-item:hover .gallery-select-checkbox {
    opacity: 1;
}

/* Ensure admin gallery grid items show actions */
#adminGalleryGrid .full-gallery-item {
    position: relative;
    overflow: visible;
}

/* Mobile adjustments for batch operations */
@media (max-width: 768px) {
    .batch-operations-toolbar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .select-all-container {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .gallery-item-action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

.gallery-item-action-btn {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
}

.gallery-item-action-btn:hover {
    background-color: var(--accent);
    transform: scale(1.1);
}

.gallery-item-action-btn.delete {
    background-color: rgba(239, 68, 68, 0.8);
}

.gallery-item-action-btn.delete:hover {
    background-color: #ef4444;
}

.gallery-item-action-btn.edit {
    background-color: rgba(59, 130, 246, 0.8);
}

.gallery-item-action-btn.edit:hover {
    background-color: #3b82f6;
}

/* Add Image Modal */
.add-image-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-preview {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: none;
    margin-top: 10px;
    border: 2px dashed #cbd5e1;
}

.image-preview.visible {
    display: block;
}

/* Admin Simple Content Editor */
.simple-editor {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    min-height: 200px;
    overflow-y: auto;
}

.simple-editor:focus {
    outline: none;
    border-color: var(--dark-blue);
}

.editor-toolbar {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.editor-btn {
    background-color: var(--dark-blue);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.editor-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.editor-btn.active {
    background-color: var(--accent);
}

.formatting-example {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
    padding: 10px;
    background-color: #f1f5f9;
    border-radius: 5px;
    border-left: 3px solid var(--accent);
}

.section-editor {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.section-title-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.remove-section-btn {
    background-color: #fee2e2;
    color: #dc2626;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remove-section-btn:hover {
    background-color: #fecaca;
    transform: rotate(90deg);
}

.add-section-btn {
    background: linear-gradient(to right, #10b981, #059669);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.add-section-btn:hover {
    background: linear-gradient(to right, #059669, #047857);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: linear-gradient(to right, var(--dark-blue), var(--dark-green));
    color: white;
    padding: 3rem 1rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
    padding: 0 10px;
}

.footer-section {
    flex: 1;
    min-width: 0;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0.7rem;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    white-space: nowrap;
}

.footer-contact-item i {
    width: 18px;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-item span {
    white-space: normal;
    word-break: break-word;
    font-size: 0.95rem;
}

.footer-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.hours-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hours-day {
    color: rgba(255, 255, 255, 0.9);
}

.hours-time {
    color: var(--accent);
    font-weight: 600;
    margin-left: 10px;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.dev-credit {
    margin-top: 5px;
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.dev-credit a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.dev-credit a:hover {
    text-decoration: underline;
    color: white;
}

/* Back to Website Button */
.back-to-site {
    background: linear-gradient(to right, var(--accent), #b45309);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: button;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 1rem auto;
    width: calc(100% - 2rem);
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.back-to-site::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.back-to-site:hover::before {
    left: 100%;
}

.back-to-site:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(to right, #d1fae5, #a7f3d0);
    border-radius: 15px;
    color: #065f46;
    margin-top: 1rem;
    border-left: 5px solid #10b981;
    animation: fadeIn 0.5s ease-out;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #10b981;
}

/* Notification Toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark-blue);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background-color: #10b981;
}

.toast.error {
    background-color: #ef4444;
}

/* Image lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

/* Full Gallery Modal Styles */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 20px;
}

.full-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
    height: 180px;
    position: relative;
}

.full-gallery-item:hover {
    transform: scale(1.05);
}

.full-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 8px;
    font-size: 0.85rem;
    text-align: center;
}

/* Announcements Styles */
.announcement-item {
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--dark-green);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.announcement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.announcement-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-title::before {
    content: '📢';
    font-size: 1rem;
}

.announcement-date {
    background: var(--accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.announcement-text {
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.announcement-highlight {
    background: linear-gradient(to right, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 600;
    color: #92400e;
    margin-top: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.announcement-highlight::before {
    content: '💡';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* About Us Modal Styles */
.about-us-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.about-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border-left: 5px solid var(--dark-blue);
}

.about-section h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.about-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.document-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.document-item {
    background-color: #f1f5f9;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.document-item:hover {
    background-color: #e2e8f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-blue), var(--dark-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.document-info h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 700;
}

.document-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.upload-document-btn {
    background: linear-gradient(to right, var(--accent), #b45309);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.upload-document-btn:hover {
    background: linear-gradient(to right, #b45309, #92400e);
    transform: translateY(-2px);
}

/* Admin Account Modal */
.admin-account-modal .modal-content {
    max-width: 500px;
}

.password-strength {
    margin-top: 5px;
    height: 5px;
    background-color: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: width 0.3s;
    background-color: #ef4444;
}

.password-strength-bar.weak {
    width: 33%;
    background-color: #ef4444;
}

.password-strength-bar.medium {
    width: 66%;
    background-color: #f59e0b;
}

.password-strength-bar.strong {
    width: 100%;
    background-color: #10b981;
}

/* Applications Review Modal */
.applications-review-modal .modal-content {
    max-width: 800px;
    max-height: 80vh;
}

.applications-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.applications-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px 8px 0 0;
}

.applications-tab.active {
    color: var(--dark-blue);
    background-color: #f1f5f9;
    border-bottom: 3px solid var(--accent);
}

.applications-tab:hover:not(.active) {
    color: var(--accent);
    background-color: #f8fafc;
}

.applications-list {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 10px;
}

.application-item {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #3b82f6;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.application-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.application-item.pending {
    border-left-color: #f59e0b;
}

.application-item.accepted {
    border-left-color: #10b981;
}

.application-item.rejected {
    border-left-color: #ef4444;
}

.application-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.application-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.application-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.application-status.pending {
    background-color: #fef3c7;
    color: #92400e;
}

.application-status.accepted {
    background-color: #d1fae5;
    color: #065f46;
}

.application-status.rejected {
    background-color: #fee2e2;
    color: #991b1b;
}

.application-details {
    margin-bottom: 15px;
}

.application-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.application-detail-label {
    color: var(--text-light);
    font-weight: 500;
    min-width: 150px;
}

.application-detail-value {
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
}

.application-documents {
    background-color: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.documents-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.documents-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.document-preview {
    width: 80px;
    height: 100px;
    background-color: #e2e8f0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.document-preview:hover {
    background-color: #cbd5e1;
    transform: translateY(-3px);
}

.document-icon {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.document-name {
    font-size: 0.7rem;
    color: var(--text-dark);
    text-align: center;
    padding: 0 5px;
    word-break: break-all;
}

.application-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.application-action-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 100px;
}

.application-action-btn.accept {
    background-color: #10b981;
    color: white;
}

.application-action-btn.accept:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.application-action-btn.reject {
    background-color: #ef4444;
    color: white;
}

.application-action-btn.reject:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}

.application-action-btn.pending {
    background-color: #f59e0b;
    color: white;
}

.application-action-btn.pending:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.application-action-btn.delete {
    background-color: #dc2626;
    color: white;
}

.application-action-btn.delete:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

/* PDF Export Button */
.pdf-export-btn {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pdf-export-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.pdf-export-btn:hover::before {
    left: 100%;
}

.pdf-export-btn:hover {
    background: linear-gradient(to right, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Gallery Management Modal */
.gallery-management-modal .modal-content {
    max-width: 900px;
    max-height: 80vh;
}

/* ============================================================ */
/* NEW MULTI-STEP FORM STYLES                                   */
/* ============================================================ */

.step-progress {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 30px;
    position: relative;
}
.step-progress::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}
.step-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    cursor: pointer;
}
.step-circle .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 3px solid transparent;
}
.step-circle.active .circle {
    background: var(--dark-blue);
    color: white;
    border-color: var(--accent);
}
.step-circle.completed .circle {
    background: #10b981;
    color: white;
}
.step-circle .label {
    font-size: 0.75rem;
    margin-top: 5px;
    color: var(--text-light);
    font-weight: 600;
}
.step-circle.active .label {
    color: var(--dark-blue);
}
.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}
.step-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 10px;
}
.step-nav button {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-nav .prev-btn {
    background: #e2e8f0;
    color: var(--text-dark);
}
.step-nav .prev-btn:hover {
    background: #cbd5e1;
}
.step-nav .next-btn {
    background: var(--accent);
    color: white;
}
.step-nav .next-btn:hover {
    background: #b45309;
}
.step-nav .submit-btn {
    background: #10b981;
    color: white;
}
.step-nav .submit-btn:hover {
    background: #059669;
}
.step-nav .submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}
.file-upload-list {
    margin-top: 15px;
}
.uploaded-file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.uploaded-file .file-name {
    display: flex;
    align-items: center;
    gap: 8px;
}
.uploaded-file .file-remove {
    color: #ef4444;
    cursor: pointer;
    background: none;
    border: none;
}
.review-section {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.review-section h4 {
    margin-bottom: 10px;
    color: var(--dark-blue);
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 5px;
}
.review-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
}
.review-row .label {
    font-weight: 500;
    color: var(--text-light);
}
.review-row .value {
    font-weight: 600;
    color: var(--text-dark);
}
.review-docs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.review-docs .doc-badge {
    background: #e2e8f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.application-progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 15px 0;
    overflow: hidden;
}
.application-progress-bar .fill {
    height: 100%;
    background: linear-gradient(to right, var(--dark-green), var(--accent));
    border-radius: 4px;
    transition: width 0.5s;
    width: 0%;
}
.step-helper {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark-green);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .footer-section {
        flex: 0 0 calc(50% - 25px);
        min-width: 250px;
    }
    
    .modal-content {
        max-width: 90%;
        padding: 2rem;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        max-height: 60px; /* collapsed by default */
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-top: 0;
    }
    .admin-sidebar.open {
        max-height: 600px; /* expanded */
    }
    .admin-hamburger {
        display: block;
    }
    .admin-main {
        margin-left: 0;
        padding: 1rem;
    }
    .admin-logo {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .why-choose-item {
        max-width: 500px;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .gallery-scroll-track {
        animation: scrollGallery 60s linear infinite;
    }
    
    .announcement-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .application-detail-item {
        flex-direction: column;
        gap: 5px;
    }

    .application-detail-label {
        min-width: 100%;
    }

    .application-actions {
        flex-wrap: wrap;
    }

    .application-action-btn {
        min-width: 120px;
    }

    .document-list {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-sidebar {
        max-height: 60px;
    }
    .admin-sidebar.open {
        max-height: 600px;
    }
    .admin-hamburger {
        display: block;
    }
    .admin-main {
        margin-left: 0;
        padding: 1rem;
    }

    /* Multi-step adjustments for small screens */
    .step-progress {
        gap: 8px;
    }
    .step-circle .label {
        font-size: 0.65rem;
    }
    .step-nav button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }
}