/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Light Mode */
    --primary: hsl(215, 85%, 45%);
    --primary-light: hsl(215, 85%, 95%);
    --secondary: hsl(340, 85%, 55%);
    --secondary-light: hsl(340, 85%, 95%);
    --accent: hsl(160, 70%, 50%);
    --accent-light: hsl(160, 70%, 95%);
    --chart-3: hsl(45, 95%, 55%);
    --chart-3-light: hsl(45, 95%, 95%);
    --chart-5: hsl(280, 75%, 60%);
    --chart-5-light: hsl(280, 75%, 95%);
    
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 9%);
    --card: hsl(0, 0%, 98%);
    --card-border: hsl(0, 0%, 94%);
    --border: hsl(0, 0%, 91%);
    --muted-foreground: hsl(0, 0%, 40%);
    
    --shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 4px 6px -1px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 56px;
    width: 56px;
    border-radius: 4px;
}

.logo-sm {
    height: 48px;
    width: 48px;
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 600;
    font-size: 1rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

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

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

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.facebook-link {
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.facebook-link:hover {
    background-color: var(--card);
}

.icon {
    width: 20px;
    height: 20px;
}

.icon-sm {
    width: 16px;
    height: 16px;
    stroke: var(--secondary);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s;
}

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

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

.nav-link-mobile {
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1rem 4rem;
    background: linear-gradient(135deg, 
        hsla(215, 85%, 45%, 0.1) 0%, 
        hsla(160, 70%, 50%, 0.05) 50%, 
        hsla(340, 85%, 55%, 0.1) 100%);
}

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

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

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge-icon {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.text-chart5 {
    color: var(--chart-5);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-image {
        justify-content: flex-end;
    }
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, 
        hsla(215, 85%, 45%, 0.2) 0%, 
        hsla(160, 70%, 50%, 0.2) 50%, 
        hsla(340, 85%, 55%, 0.2) 100%);
    filter: blur(80px);
    border-radius: 50%;
}

.hero-img {
    position: relative;
    height: 256px;
    width: 256px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
    .hero-img {
        height: 384px;
        width: 384px;
    }
}

/* Sections */
.section {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .section {
        padding: 6rem 1rem;
    }
}

.section-alt {
    background: var(--card);
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-bordered {
    border-left-width: 4px;
}

.card-border-primary {
    border-left-color: var(--primary);
}

.card-border-secondary {
    border-left-color: var(--secondary);
}

.card-border-accent {
    border-left-color: var(--accent);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-title-sm {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-title-center {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-text {
    color: var(--muted-foreground);
}

.card-center {
    text-align: center;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-primary {
    background: var(--primary-light);
    color: var(--primary);
}

.icon-secondary {
    background: var(--secondary-light);
    color: var(--secondary);
}

.icon-accent {
    background: var(--accent-light);
    color: var(--accent);
}

.icon-chart3 {
    background: var(--chart-3-light);
    color: var(--chart-3);
}

.icon-chart5 {
    background: var(--chart-5-light);
    color: var(--chart-5);
}

/* Grids */
.cards-grid-2 {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.cards-grid-3 {
    display: grid;
    gap: 1.5rem;
}

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

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

.cards-grid-4 {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 2rem;
}

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

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

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

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-title-with-icon {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.leadership-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leadership-item {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.leadership-item:first-child {
    padding-top: 0;
    border-top: none;
}

.leadership-role {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.leadership-name {
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.phone-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        hsla(215, 85%, 45%, 0.05) 0%, 
        var(--background) 50%, 
        hsla(160, 70%, 50%, 0.05) 100%);
    border-top: 1px solid var(--border);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    background: var(--primary-light);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
