/* ===== RESET & GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-700: #15803d;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-100: #dcfce7;
    --green-50: #f0fdf4;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--green-700);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.logo-circle {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--green-100);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-100);
    border-bottom: 2px solid white;
}

.btn-admin {
    background-color: white;
    color: var(--green-700);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-admin:hover {
    background-color: var(--green-50);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: white;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
    background-color: var(--green-600);
    border-bottom: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(to right, var(--green-700), var(--green-500));
    color: whitesmoke;
    min-height: 1000px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(10, 10, 10, 0.7)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.hero-text {
    max-width: 48rem;
    color: whitesmoke;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: whitesmoke;
    margin-bottom: 2rem;
    color: var(--green-50);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: white;
    color: var(--green-700);
}

.btn-primary:hover {
    background-color: var(--green-50);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--green-700);
}

.btn-product {
    width: 100%;
    background-color: var(--green-700);
    color: white;
    padding: 0.5rem;
}

.btn-product:hover {
    background-color: var(--green-600);
}

.btn-cta {
    background-color: var(--green-700);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-cta:hover {
    background-color: var(--green-600);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ===== SECTIONS ===== */
.services {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

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

.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--gray-50);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-600);
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 4rem 0;
    background-color: var(--green-700);
    color: white;
}

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

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--green-100);
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

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

.link-view-all {
    color: var(--green-700);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.link-view-all:hover {
    color: var(--green-600);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    display: flexbox;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    background-color: var(--green-100);
    color: var(--green-700);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green-700);
}

.product-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.cta p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--gray-900);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-col h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray-300);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.contact-list li {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--green-700);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--green-100);
}

/* ===== FILTERS BAR ===== */
.filters-bar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 73px;
    z-index: 100;
}

.filters-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
}

.search-box {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-input:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.filter-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
}

.category-select:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

@media (min-width: 768px) {
    .filters-content {
        flex-direction: row;
        align-items: center;
    }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
    min-height: 400px;
}

.products-count {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.no-results {
    text-align: center;
    padding: 5rem 0;
}

.no-results p {
    font-size: 1.25rem;
    color: var(--gray-500);
}

/* ===== TABS ===== */
.tabs-container {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--gray-600);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--green-700);
}

.tab-btn.active {
    color: var(--green-700);
    border-bottom-color: var(--green-700);
}

/* ===== ANNOUNCEMENTS ===== */
.announcements-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.announcement-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.announcement-header {
    margin-bottom: 1rem;
}

.announcement-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.announcement-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.announcement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.announcement-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-purple {
    background-color: #e9d5ff;
    color: #6b21a8;
}

.badge-orange {
    background-color: #fed7aa;
    color: #9a3412;
}

.badge-green {
    background-color: var(--green-100);
    color: var(--green-700);
}

.badge-yellow {
    background-color: #fef3c7;
    color: #92400e;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    padding: 4rem 0;
    background-color: white;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.about-intro-text p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-intro-image img {
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s;
}

.mission-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.mission-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.objectives-section {
    padding: 4rem 0;
    background-color: white;
}

.objectives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.objective-main {
    background-color: var(--green-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--green-700);
}

.objective-main h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.objective-main p {
    color: var(--gray-700);
}

.objectives-list h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.objectives-list ul {
    list-style: none;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.objectives-list li::before {
    content: '•';
    color: var(--green-700);
    font-size: 1.5rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.projects-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.project-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    flex: 1;
}

.project-card p {
    color: var(--gray-600);
}

.partners-section {
    padding: 4rem 0;
    background-color: white;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partners-header h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.partners-header p {
    color: var(--gray-600);
}

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

.partner-card {
    background-color: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    color: var(--gray-700);
    font-weight: 600;
    transition: box-shadow 0.3s;
}

.partner-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: var(--green-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-detail h3 {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.contact-detail p {
    color: var(--gray-600);
    margin: 0;
}

.opening-hours {
    background-color: var(--green-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--green-700);
    margin-top: 2rem;
}

.opening-hours h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.opening-hours p {
    color: var(--gray-700);
    margin: 0.25rem 0;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.success-message {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: var(--green-700);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.success-message h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.success-message p {
    color: var(--gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    background-color: var(--green-700);
    color: white;
    padding: 0.75rem;
    font-weight: 600;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--green-600);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

.map-placeholder {
    background-color: var(--gray-200);
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-600);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder-content p {
    font-weight: 600;
}

.map-location {
    font-size: 0.875rem;
    font-weight: normal;
}

/* ===== ADMIN LOGIN ===== */
.admin-body {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.admin-login-container {
    max-width: 28rem;
    width: 100%;
}

.admin-login-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.admin-login-header {
    text-align: center;
    padding: 2rem;
}

.admin-login-icon {
    width: 80px;
    height: 80px;
    background-color: var(--green-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.admin-login-header h1 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.admin-login-header p {
    color: var(--gray-600);
}

.error-message {
    margin: 0 2rem 1.5rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 1rem;
    border-radius: 0.5rem;
}

.admin-login-form {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.input-with-icon input {
    padding-left: 2.75rem;
}

.btn-login {
    background-color: var(--green-700);
    color: white;
    padding: 0.75rem;
    width: 100%;
    font-weight: 600;
}

.btn-login:hover {
    background-color: var(--green-600);
}

.admin-login-footer {
    padding: 1.5rem 2rem;
    text-align: center;
}

.back-link {
    color: var(--green-700);
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--green-600);
}

.demo-credentials {
    padding: 1rem 2rem 2rem;
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.demo-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.demo-credentials p {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0.25rem 0;
}

/* ===== ADMIN DASHBOARD ===== */
.admin-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.admin-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-link {
    color: var(--gray-600);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.admin-link:hover {
    color: var(--green-700);
}

.btn-logout {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
}

.btn-logout:hover {
    background-color: #b91c1c;
}

.admin-layout {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.admin-sidebar {
    width: 256px;
    flex-shrink: 0;
}

.admin-nav {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.admin-nav-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
}

.admin-nav-btn:hover {
    background-color: var(--gray-50);
}

.admin-nav-btn.active {
    background-color: var(--green-700);
    color: white;
}

.admin-main {
    flex: 1;
}

.admin-tab {
    display: none;
}

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

.admin-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.admin-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-add {
    background-color: var(--green-700);
    color: white;
    padding: 0.75rem 1.5rem;
}

.btn-add:hover {
    background-color: var(--green-600);
}

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

.admin-stat-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.admin-stat-icon.blue {
    background-color: #3b82f6;
}

.admin-stat-icon.green {
    background-color: #22c55e;
}

.admin-stat-icon.yellow {
    background-color: #eab308;
}

.admin-stat-icon.purple {
    background-color: #a855f7;
}

.admin-stat-trend {
    font-size: 1.25rem;
}

.admin-stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.admin-stat-label {
    color: var(--gray-600);
}

/* Admin Cards */
.admin-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-card h2 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.admin-recent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .admin-recent-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.recent-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-item h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.recent-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.recent-item-message {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.recent-item-message:last-child {
    border-bottom: none;
}

.recent-item-message h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.recent-item-message p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.recent-item-message .date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Admin Table */
.admin-table-container {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.admin-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: background-color 0.2s;
}

.admin-table tbody tr:hover {
    background-color: var(--gray-50);
}

.admin-table td {
    padding: 1rem 1.5rem;
    color: var(--gray-600);
}

.table-name {
    color: var(--gray-900);
    font-weight: 600;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    padding: 0.25rem;
    transition: transform 0.2s;
}

.btn-icon:hover {
    transform: scale(1.2);
}

.message-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    transition: background-color 0.2s;
    cursor: pointer;
}

.message-item:hover {
    background-color: var(--gray-50);
}

.message-item:last-child {
    border-bottom: none;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.message-item h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--gray-900);
}

.message-item p {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.link-btn {
    background: none;
    border: none;
    color: var(--green-700);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s;
}

.link-btn:hover {
    color: var(--green-600);
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
    }
    
    .admin-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Responsive table */
@media (max-width: 768px) {
    .admin-table-container {
        overflow-x: auto;
    }
}

/* ===== FOUNDERS SECTION ===== */
.founders-section {
    padding: 4rem 0;
    background-color: white;
}

.founders-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.founder-card {
    background-color: var(--gray-50);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.founder-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.founder-image {
    height: 320px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.founder-info {
    padding: 2rem;
}

.founder-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--green-700);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background-color: var(--green-100);
    color: var(--green-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
    transform: translateY(1rem);
    transition: transform 0.3s;
}

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