:root {
    --deep-green: #0f3f26;
    --sage: #92a18e;
    --dark-sage: #6d7b6a;
    --navy: #0f2237;
    --gold: #b57b26;
    --gold-light: #e7b05a;
    --tan: #f4ebdc;
    --sand: #f7f2e8;
    --offwhite: #f8f9fa;
    --text: #1f1f1f;
    --muted: #6c757d;
    --card-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

a {
    text-decoration: none;
}

/* Header */
.top-bar {
    background: var(--deep-green);
    padding: 0.65rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.brand-strip {
    background: var(--sage);
    padding: 1.1rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #d9d4bc;
    color: var(--deep-green);
    display: grid;
    place-items: center;
    font-size: 30px;
    overflow: hidden;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--deep-green);
    text-align: left;
}

.brand-title {
    font-weight: 800;
    letter-spacing: 0.8px;
}

.main-nav {
    background: var(--sage);
    padding: 0.45rem 0;
}

.main-nav .nav-link {
    color: #1f3b2f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.75rem 0;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: var(--gold);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero */
.hero-banner {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 5rem 1rem;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image: linear-gradient(180deg, rgba(16, 34, 55, 0.35), rgba(16, 34, 55, 0.65)),
        url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(180deg, rgba(16, 34, 55, 0.35), rgba(16, 34, 55, 0.65)),
        url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1600&q=80');
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(180deg, rgba(16, 34, 55, 0.35), rgba(16, 34, 55, 0.65)),
        url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?auto=format&fit=crop&w=1600&q=80');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-bolt {
    font-size: 2.2rem;
    color: var(--gold-light);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-bulb {
    font-size: 2.8rem;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    border: 2px solid var(--gold);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-gold:hover {
    background: #965f1d;
    border-color: #965f1d;
    transform: translateY(-2px);
}

/* Sections */
.section-pad {
    padding: 4.5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.6px;
    color: var(--navy);
}

.section-lead {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted);
}

.divider-icon {
    color: var(--gold);
    font-size: 1.6rem;
    margin: 0 10px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #d8d8d8;
}

/* Cards */
.feature-card {
    background: var(--sand);
    border: 1px solid #efe8d9;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    height: 100%;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--deep-green);
    color: var(--deep-green);
    display: grid;
    place-items: center;
    font-size: 28px;
    margin: 0 auto 16px;
    background: #fff;
}

.feature-title {
    font-weight: 700;
    color: #8a4d18;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Navy band */
.deep-panel {
    background: var(--navy);
    color: #ffffff;
    padding: 4rem 0;
}

.deep-panel .eyebrow {
    width: 46px;
    height: 4px;
    background: var(--gold);
    border-radius: 999px;
    margin-bottom: 1rem;
}

.deep-panel h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.deep-panel p {
    color: #e2e6ed;
    margin-bottom: 1rem;
}

.brand-panel {
    background: #f0ebdc;
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    place-items: center;
    box-shadow: var(--card-shadow);
}

/* Partnership grid */
.grid-card {
    background: #f4eddc;
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid #e6dcc8;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.grid-card .feature-icon {
    border-color: var(--deep-green);
    color: var(--deep-green);
    background: #fff;
}

.grid-card .feature-title {
    color: #8a4d18;
}

/* Footer */
.footer-dark {
    background: var(--deep-green);
}

.footer-dark a {
    color: #e8f3ec;
}

.footer-dark a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.footer-dark hr {
    opacity: 0.35;
}

/* Utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.section-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

/* Custom color utilities */
.bg-deep-green {
    background-color: var(--deep-green) !important;
}

.bg-sage {
    background-color: var(--sage) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.text-deep-green {
    color: var(--deep-green) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-sage {
    color: var(--sage) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1d 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--sage);
    opacity: 0.08;
    border-radius: 50%;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 2;
}

/* About Page Styles */

/* About Intro Section */
.about-intro-section {
    background: linear-gradient(135deg, var(--sand) 0%, #ffffff 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold-light);
    border-radius: 50px;
    color: var(--deep-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.section-title-decorated {
    position: relative;
    padding-bottom: 12px;
    color: var(--deep-green);
}

.section-title-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.about-image-wrapper {
    position: relative;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: var(--sand);
    padding: 5rem 0;
}

.mission-vision-card {
    position: relative;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(181, 123, 38, 0.3);
}

.mission-vision-card .card-title {
    color: var(--deep-green);
    font-weight: 700;
    font-size: 1.5rem;
}

.mission-vision-card .card-text {
    color: var(--muted);
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--tan);
    border-radius: 50%;
    opacity: 0.5;
}

/* Core Values Section */
.core-values-section {
    background: #ffffff;
    padding: 5rem 0;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--sand);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    background: #ffffff;
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-text {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--tan) 0%, var(--sand) 100%);
    padding: 5rem 0;
}

.impact-card {
    position: relative;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
}

.impact-label {
    color: var(--deep-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.impact-decoration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0.15;
}

/* Leadership Section */
.leadership-section {
    background: #ffffff;
    padding: 5rem 0;
}

.leadership-card {
    padding: 30px 20px;
    background: var(--sand);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.leadership-card:hover {
    background: linear-gradient(135deg, var(--tan) 0%, var(--sand) 100%);
    transform: translateY(-5px);
}

.leadership-icon {
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.leadership-card:hover .leadership-icon {
    transform: scale(1.15);
}

.leadership-title {
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 12px;
}

.leadership-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner {
        min-height: 68vh;
        padding: 4rem 1rem;
    }
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.7rem);
    }
    .main-nav .navbar-collapse {
        text-align: center;
    }
    .main-nav .nav-link {
        padding: 0.6rem 0;
    }

    /* About Page Responsive */
    .image-decoration {
        display: none;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .mission-vision-section,
    .core-values-section,
    .impact-section,
    .leadership-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.85rem;
    }
    .brand-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    .feature-card,
    .grid-card {
        text-align: center;
    }
    .section-pad {
        padding: 3.5rem 0;
    }
    .hero-actions {
        gap: 10px;
    }

    /* About Page Mobile */
    .page-header {
        padding: 3rem 0 !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .impact-number {
        font-size: 2rem;
    }

    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-icon-wrapper {
        width: 70px;
        height: 70px;
    }
}

/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, var(--sand) 0%, #ffffff 100%);
    padding: 5rem 0;
}

.contact-info-card {
    position: relative;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card-text {
    color: var(--muted);
    margin-bottom: 0;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--deep-green);
}

.contact-card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--tan);
    border-radius: 50%;
    opacity: 0.3;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--sand);
    padding: 5rem 0;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 8px;
}

.contact-input {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(181, 123, 38, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(181, 123, 38, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(181, 123, 38, 0.4);
}

/* Business Hours Section */
.business-hours-section {
    background: linear-gradient(135deg, var(--tan) 0%, var(--sand) 100%);
}

.business-hours-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.business-hours-card h3 {
    color: var(--deep-green);
    font-weight: 700;
}

.hours-table {
    margin-top: 20px;
}

.hours-table td {
    padding: 12px 0;
    color: var(--text);
    font-size: 1.05rem;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-in-left {
    animation-name: slideInLeft;
}

.slide-in-right {
    animation-name: slideInRight;
}

.scale-in {
    animation-name: scaleIn;
}

/* Stagger animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }