/* CSS Variables for Easy Customization */
:root {
    --primary-color: #c9a227;
    --primary-dark: #9a7a1a;
    --secondary-color: #c9a227;
    --navy: #0d1b2a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 70px;
    text-align: left;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-split-logo {
    flex: 0 0 auto;
}

.hero-split-logo img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 16px;
    animation: fadeInUp 0.8s ease;
}

.hero-split-text {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    .hero-split {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-split-logo img {
        width: 180px;
        height: 180px;
    }
    .hero-buttons {
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.founder-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.founder-image-wrapper:hover .founder-image {
    transform: scale(1.05);
}

.founder-content {
    padding: 1rem 0;
}

.founder-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.founder-content em {
    color: var(--primary-color);
    font-style: italic;
}

/* Connect with Clifford Banner */
.connect-banner {
    background: var(--navy);
    padding: 2rem 0;
}

.connect-banner-heading {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.connect-banner-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.connect-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    min-width: 80px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.connect-banner-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.connect-banner-item.linkedin-link:hover  { color: #70b5f9; }
.connect-banner-item.youtube-link:hover   { color: #ff6b6b; }
.connect-banner-item.tiktok-link:hover    { color: #ee1d52; }
.connect-banner-item.facebook-link:hover  { color: #74a7fb; }

.connect-banner-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.problem-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.problem-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.stat-card p {
    color: var(--text-light);
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Target Section */
.target-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.target-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.check-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.target-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Get Involved Section */
.involved-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.involved-card {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
}

.involved-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.involved-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.involved-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.card-link {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Partnerships Section */
.partnerships-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.partnerships-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.partnerships-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.partnership-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partnership-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.partnership-icon {
    font-size: 2rem;
}

.partnership-item span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-only {
    grid-template-columns: auto 1fr;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
}

.contact-form .btn:hover {
    background-color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========================================
   PROJECT PAGE STYLES
   ======================================== */

/* Project Hero */
.project-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
}

.breadcrumb span {
    opacity: 0.7;
}

.project-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
}

/* Vision Gallery */
.vision-gallery {
    padding: 0;
    background: var(--bg-white);
}

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

.gallery-main {
    width: 100%;
    display: block;
}

.gallery-secondary {
    width: 100%;
    display: block;
}

/* Project Overview */
.project-overview {
    padding: 80px 0;
    background: var(--bg-white);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.overview-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.why-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-light);
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.features-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.feature-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Implementation Section */
.implementation-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.implementation-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.phases-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.phase-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-content {
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.phase-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.phase-content p {
    color: var(--text-light);
    margin: 0;
}

/* Budget Section */
.budget-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.budget-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.budget-breakdown {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.budget-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.budget-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.budget-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.budget-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.budget-total {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    grid-column: 1 / -1;
}

.budget-total h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.budget-total .budget-amount {
    color: white;
    font-size: 2.25rem;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.partnership-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.partnership-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.partnership-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

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

.partnership-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.partnership-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Project CTA */
.project-cta {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.project-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.project-cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   P.A.L. PROGRAM PAGE STYLES
   ======================================== */

/* Program Hero */
.program-hero {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.program-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-location {
    font-size: 1rem;
    opacity: 0.9;
}

/* Program Overview */
.program-overview {
    padding: 80px 0;
    background: var(--bg-white);
}

.program-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.overview-text {
    max-width: 900px;
    margin: 0 auto;
}

/* Statements Section */
.statements-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.statements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.statement-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 6px solid #8B4513;
}

.statement-wide {
    grid-column: 1 / -1;
}

.statement-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.statement-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.philosophy-quote {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: #8B4513;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.philosophy-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Participants Section */
.participants-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.participants-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.participant-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.participant-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.participant-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Components Section */
.components-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.components-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.components-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.component-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.component-number {
    width: 60px;
    height: 60px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.component-content {
    flex: 1;
}

.component-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.component-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.component-content strong {
    color: #8B4513;
}

.component-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.component-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.impact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 4px solid #8B4513;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.impact-card p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0;
}

/* Why Matters Section */
.why-matters-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.why-matters-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.why-matter-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    border-left: 4px solid #8B4513;
}

.why-matter-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-matter-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Partnership Highlight */
.partnership-highlight {
    padding: 80px 0;
    background: var(--bg-light);
}

.partnership-highlight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.partnership-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.partnership-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.partnership-content p:last-child {
    margin-bottom: 0;
}

/* Program CTA */
.program-cta {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.program-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.program-cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .founder-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        background: var(--bg-light);
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .involved-grid {
        grid-template-columns: 1fr;
    }
    
    .partnerships-list {
        grid-template-columns: 1fr;
    }
    
    /* Project Page Mobile Styles */
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .phases-timeline {
        gap: 1.5rem;
    }
    
    .phase {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phase-marker {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .budget-breakdown {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* P.A.L. Program Mobile Styles */
    .program-hero h1 {
        font-size: 2rem;
    }
    
    .statements-grid {
        grid-template-columns: 1fr;
    }
    
    .statement-wide {
        grid-column: 1;
    }
    
    .statement-card {
        padding: 2rem;
    }
    
    .participants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .component-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .component-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-matters-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}
