/* Fish & Inja Foundation - Main Stylesheet */

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

:root {
    --dark-blue: #05597E;
    --medium-blue: #056476;
    --deep-blue: #014F7D;
    --navy: #013C7E;
    --accent-gold: #BA8D32;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --success: #28a745;
    --error: #dc3545;
    --info: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COLOR CLASSES ===== */
.bg-dark-blue { background-color: var(--dark-blue); }
.bg-medium-blue { background-color: var(--medium-blue); }
.bg-deep-blue { background-color: var(--deep-blue); }
.bg-navy { background-color: var(--navy); }
.bg-accent-gold { background-color: var(--accent-gold); }

.text-dark-blue { color: var(--dark-blue); }
.text-medium-blue { color: var(--medium-blue); }
.text-deep-blue { color: var(--deep-blue); }
.text-navy { color: var(--navy); }
.text-accent-gold { color: var(--accent-gold); }

.border-dark-blue { border-color: var(--dark-blue); }
.border-medium-blue { border-color: var(--medium-blue); }
.border-deep-blue { border-color: var(--deep-blue); }
.border-navy { border-color: var(--navy); }
.border-accent-gold { border-color: var(--accent-gold); }

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-gold);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar .contact-info i {
    color: var(--accent-gold);
    margin-right: 5px;
}



/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    flex: 1;
    min-width: 250px;
}

.logo a {
    text-decoration: none;
    color: var(--white);
}

.logo h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.logo h1 span {
    color: var(--accent-gold);
    font-weight: bold;
}

.logo p {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.header-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-badge {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.stat-badge .number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

.stat-badge .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ===== NAVIGATION ===== */
nav {
    background-color: var(--deep-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu li a:hover {
    background-color: var(--medium-blue);
    border-bottom-color: var(--accent-gold);
}

.nav-menu li a.active {
    background-color: var(--medium-blue);
    border-bottom-color: var(--accent-gold);
}

.nav-menu li a i {
    margin-right: 8px;
    color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 20px;
}

.menu-toggle:hover {
    background-color: var(--medium-blue);
}

/* ===== MAIN CONTENT ===== */
main {
    min-height: 60vh;
    padding: 40px 0;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

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

.card h2 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 2rem;
}

.card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 60, 126, 0.3);
}

.btn-secondary {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-secondary:hover {
    background: #8B691F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(186, 141, 50, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #013C7E;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #BA8D32;
    box-shadow: 0 0 0 3px rgba(186, 141, 50, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

/* ===== GALLERY ===== */
.upload-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px dashed var(--medium-blue);
}

.upload-section h3 {
    color: var(--navy);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-section h3 i {
    color: var(--accent-gold);
}

#imagePreview {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 15px;
    text-align: center;
}

#imagePreview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    border: 2px solid var(--medium-blue);
}

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

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(186, 141, 50, 0.2);
}

.gallery-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 20px;
    background: white;
}

.gallery-title {
    color: var(--navy);
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.4;
}

.gallery-meta {
    margin-bottom: 10px;
}

.gallery-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.gallery-date i {
    font-size: 0.8rem;
}

.gallery-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 5px 0 0 0;
}

.gallery-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-delete {
    display: inline-block;
    padding: 6px 15px;
    background: var(--error);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-delete i {
    margin-right: 5px;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.gallery-modal-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    line-height: 1;
}

.gallery-modal-close:hover {
    color: var(--accent-gold);
    background: rgba(0,0,0,0.8);
}

.gallery-modal-caption {
    margin: 20px auto 10px;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-modal-meta {
    margin: 10px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.gallery-modal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 30px;
}

.gallery-modal-meta i {
    color: var(--accent-gold);
}

/* No images state */
.no-images {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
}

.no-images i {
    font-size: 5rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-images h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

/* ===== VIDEO GRID ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.video-info p {
    color: var(--medium-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.video-date {
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== SPONSOR GRID ===== */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sponsor-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--medium-blue);
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sponsor-item img {
    max-width: 150px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.sponsor-item h4 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sponsor-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 10px 0;
}

.badge-sponsor {
    background: var(--dark-blue);
    color: var(--white);
}

.badge-donor {
    background: var(--accent-gold);
    color: var(--white);
}

.badge-partner {
    background: var(--medium-blue);
    color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
}

.hero-section .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--medium-blue);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background: #d4edda;
    border-left-color: var(--success);
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-left-color: var(--error);
    color: #721c24;
}

.alert-info {
    background: #d1ecf1;
    border-left-color: var(--info);
    color: #0c5460;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--dark-blue), var(--accent-gold), var(--navy));
}

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

.footer-widget h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-widget p {
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 20px;
}

.footer-widget ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--accent-gold);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #8B691F;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== BACK TO TOP ===== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top:hover {
    background: var(--dark-blue);
    transform: translateY(-5px);
}

/* ===== LOADING SPINNER ===== */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #BA8D32;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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

/* ===== TABLE STYLES ===== */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: var(--deep-blue);
    color: white;
}

table th {
    padding: 15px;
    font-weight: 600;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Simple Modal */
.modal-simple {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-simple-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-simple-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.modal-simple-close:hover {
    color: #BA8D32;
}

#modal-simple-caption {
    margin: 20px auto;
    text-align: center;
    color: white;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

@media screen and (max-width: 700px) {
    .modal-simple-content {
        width: 100%;
    }
}
/* Social media links - consistent sizing */
.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-bar .social-links a i {
    font-size: 1.1rem;
}

.top-bar .social-links a:hover {
    color: #BA8D32;
}

/* Footer social links - matching size */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a i {
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: #BA8D32;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Mobile-friendly contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

/* Form styles */
.contact-form-wrapper,
.contact-info-wrapper {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(186, 141, 50, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Info card styles */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

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

.info-content {
    flex: 1;
}

.info-content h4 {
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-content p {
    color: var(--medium-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--dark-blue);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Newsletter card */
.newsletter-card {
    background: linear-gradient(135deg, var(--dark-blue), var(--navy));
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.newsletter-card h4 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-card h4 i {
    color: var(--accent-gold);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--accent-gold);
}

.newsletter-form button {
    padding: 12px 25px;
    white-space: nowrap;
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Map section */
.map-section {
    margin-top: 50px;
    width: 100%;
}

.map-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ===== IMPACT GALLERY ===== */
.impact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.impact-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(186, 141, 50, 0.2);
}

.impact-image-container {
    width: 100%;
    cursor: pointer;
    background: #f5f5f5;
}

.impact-duo {
    display: flex;
    gap: 2px;
    background: #e0e0e0;
    padding: 2px;
}

.impact-before, .impact-after {
    flex: 1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.impact-before img, .impact-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.impact-item:hover .impact-before img,
.impact-item:hover .impact-after img {
    transform: scale(1.05);
}

.impact-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 10;
}

.before-label {
    background: #dc3545;
}

.after-label {
    background: #28a745;
}

.impact-info {
    padding: 20px;
    background: white;
}

.impact-title {
    color: var(--navy);
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.4;
}

.impact-meta {
    margin-bottom: 10px;
}

.impact-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    background: rgba(186, 141, 50, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.impact-category i {
    font-size: 0.8rem;
}

.impact-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 5px 0 0 0;
}

/* No images state (reuse from gallery) */
.no-images {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
}

.no-images i {
    font-size: 5rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-images h3 {
    color: var(--navy);
    margin-bottom: 10px;
}
/* Social Feeds Section */
.social-feeds-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.social-feeds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-feed-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.social-feed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(186, 141, 50, 0.2);
}

.social-feed-title {
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
    font-size: 1.3rem;
}

.social-feed-title i {
    margin-right: 10px;
}

.feed-container {
    flex: 1;
    min-height: 600px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

/* Facebook Container */
.facebook-container {
    background: #f8f9fa;
}

/* Instagram Container */
.instagram-container iframe {
    border-radius: 8px !important;
    width: 100% !important;
}

/* TikTok Container */
.tiktok-container {
    background: #f8f9fa;
    padding: 0;
    overflow-y: auto;
}

.tiktok-embed {
    margin: 0 !important;
    max-width: 100% !important;
    background: white;
}

/* YouTube Container */
.youtube-container {
    padding: 20px;
    background: #f8f9fa;
}

.youtube-video {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.youtube-video iframe {
    border-radius: 8px;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .social-feeds-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .social-feeds-section {
        padding: 40px 0;
    }
    
    .social-feed-card {
        padding: 15px;
    }
    
    .social-feed-title {
        font-size: 1.2rem;
    }
    
    .feed-container {
        min-height: 500px;
    }
}

@media screen and (max-width: 480px) {
    .social-feed-title {
        font-size: 1.1rem;
    }
    
    .feed-container {
        min-height: 450px;
    }
}

/* TikTok Fallback Button (if needed) */
.btn-dark {
    background: #000;
    color: white;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}