/* ===================================
   R&R Environmental Corp Website
   Gold/Bronze Professional Theme
   =================================== */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --gold-dark: #B8942A;
    --gold-light: #FFD700;
    --bronze: #CD7F32;
    --dark-bg: #0A0A0A;
    --dark-card: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #999999;
    --accent-gradient: linear-gradient(135deg, #D4AF37 0%, #CD7F32 100%);

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lora', serif;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(205, 127, 50, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 20px);
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
}

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

a:hover {
    color: var(--gold-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 2px 15px rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow-x: hidden;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    max-width: 100%;
    flex-shrink: 1;
    min-width: 0;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    flex-shrink: 1;
}

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

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.btn-donate {
    background: var(--accent-gradient);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    color: var(--dark-bg) !important;
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: var(--dark-bg) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(212, 175, 55, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-family: var(--font-secondary);
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-mission {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    padding: 0 1rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid var(--gold);
    border-radius: 18px;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: var(--gold);
    border-radius: 3px;
    animation: scroll 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Hero Static Image Background */
.hero-static .hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-static .hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    /* Position buttons at bottom of hero */
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: clamp(60px, 10vh, 120px);
}

.hero-static .hero-cta {
    width: 100%;
}

/* Page Section Styling */
.page-section {
    padding-top: 120px;
    min-height: 100vh;
}

/* Active Nav Link */
.nav-menu a.active {
    color: var(--gold);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--dark-bg);
    border-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
}

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
    position: relative;
    display: inline-block;
}

.divider {
    width: 150px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.divider::before {
    left: -15px;
}

.divider::after {
    right: -15px;
}

/* Mission Hero Section */
.mission-hero {
    position: relative;
    height: 30vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.mission-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.mission-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.35) 0%, rgba(20, 20, 20, 0.45) 100%);
    z-index: 2;
}

.mission-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1rem;
}

.mission-hero-content h2 {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.5));
}

.lead-hero {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-primary);
    margin: 1rem auto;
    max-width: 900px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    padding: 1.5rem 2.5rem;
    background: rgba(10, 10, 10, 0.6);
    border-left: 4px solid var(--gold);
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(10px);
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.mission-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 4rem 2rem;
    min-height: 450px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mission-card-remining,
.mission-card-reclamation,
.mission-card-education {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.35) 0%, rgba(20, 20, 20, 0.45) 100%);
    z-index: 1;
}

.mission-card-content {
    position: relative;
    z-index: 2;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 3;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.mission-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    position: relative;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(205, 127, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.impact-achievements {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.impact-achievements::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.impact-achievements h3 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
}

.achievement-grid {
    display: grid;
    gap: 2rem;
}

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

.achievement .check {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.achievement h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* Problem Section */
.problem {
    background: var(--dark-bg);
}

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

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-left: 3px solid var(--gold);
    margin-bottom: 1rem;
}

.problem-list li::before {
    content: '▸';
    position: absolute;
    left: 0.5rem;
    color: var(--gold);
}

.problem-quote {
    background: var(--dark-card);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
}

.problem-quote blockquote {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
}

.problem-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--gold);
}

.problem-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.problem-image .caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(10, 10, 10, 0.95));
}

.solution-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.solution-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.solution-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: var(--dark-bg);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.solution-comparison {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 15px;
}

.solution-comparison h3 {
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
}

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

.comparison-table thead {
    background: rgba(212, 175, 55, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.comparison-table th {
    color: var(--gold);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Team Section */
.team {
    background: var(--dark-bg);
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-photo img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid var(--gold);
}

.team-info h3 {
    color: var(--gold);
    font-size: 2rem;
}

.team-info h4 {
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.achievements-list,
.team-bio + ul {
    list-style: none;
    margin: 1rem 0;
}

.achievements-list li,
.team-bio + ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.achievements-list li::before,
.team-bio + ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.board-section,
.partners-section {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

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

.partner {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
}

.partner h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(212, 175, 55, 0.1));
}

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

.contact-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-content-centered h3 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-content-centered .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-cta {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    text-align: center;
}

.contact-cta ul {
    list-style: none;
}

.contact-cta li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.contact-cta li:last-child {
    border-bottom: none;
}

.contact-cta li:hover {
    padding-left: 2.5rem;
    color: var(--gold);
}

.contact-cta li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.25rem;
}

/* Contact Form */
.contact-form {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form h3 {
    color: var(--gold);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Donate Section */
.donate {
    background: var(--dark-bg);
}

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

.funding-needs {
    margin: 3rem 0;
}

.funding-needs h3 {
    color: var(--gold);
    margin-bottom: 2rem;
}

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

.funding-item {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.funding-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.funding-percent {
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.funding-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.funding-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.funding-item ul {
    text-align: left;
    list-style: none;
}

.funding-item li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.funding-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.tax-info {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.donate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Reclamation Showcase Section */
.reclamation-showcase {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    padding: 100px 0;
    position: relative;
}

.reclamation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.before-after-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
}

.before-after-image {
    width: 100%;
    height: auto;
    display: block;
}

.before-after-caption {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    padding: 2rem 3rem;
    text-align: center;
}

.before-after-caption p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 2rem 0 1rem;
    border-top: 2px solid var(--gold);
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col .tagline {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .problem-content,
    .contact-content,
    .team-member {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .mission-card {
        min-height: 350px;
        padding: 3rem 1.5rem;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        overflow-x: hidden !important;
    }

    .nav-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .logo {
        max-width: 50% !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
        overflow: hidden;
    }

    .logo a {
        display: flex;
        max-width: 100%;
    }

    .logo img {
        height: auto !important;
        max-height: 45px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .navbar .container {
        padding: 0 15px !important;
        max-width: 100%;
    }

    .hamburger {
        flex-shrink: 0 !important;
        min-width: 44px !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

    .hamburger {
        display: flex;
    }

    /* Hero adjustments */
    .hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero-static .hero-content {
        padding: 1.5rem 0.5rem;
        padding-bottom: 40px;
    }

    /* Grids stack on mobile */
    .mission-grid,
    .stats-grid,
    .solution-grid,
    .funding-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card {
        min-height: 300px;
        padding: 2.5rem 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    /* Tables */
    .comparison-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }

    /* Contact */
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    /* Donate buttons */
    .donate-buttons {
        flex-direction: column;
    }

    /* Section spacing */
    section {
        padding: 60px 0;
    }

    .page-section {
        padding-top: 100px;
    }

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

    /* Mission hero */
    .mission-hero {
        margin-top: 70px;
        min-height: 200px;
    }

    .mission-hero-content h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .lead-hero {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Logo */
    .logo {
        max-width: 40% !important;
        min-width: 0 !important;
    }

    .logo img {
        height: auto !important;
        max-height: 36px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .nav-wrapper {
        min-height: 60px;
        gap: 0.5rem;
    }

    .navbar .container {
        padding: 0 10px !important;
    }

    /* Hero specific */
    .hero-static .hero-content {
        padding: 1rem 0.25rem;
        padding-bottom: 30px;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .hero-cta .btn {
        font-size: 0.75rem;
        padding: 0.7rem 1.2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }

    /* Section spacing */
    section {
        padding: 50px 0;
    }

    .page-section {
        padding-top: 80px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Mission hero */
    .mission-hero {
        margin-top: 60px;
        min-height: 180px;
        height: 25vh;
    }

    .lead-hero {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    /* Cards */
    .mission-card {
        padding: 2rem 1rem;
        min-height: 250px;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

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

    .stat-label {
        font-size: 1rem;
    }

    /* Contact */
    .contact-item {
        padding: 1.25rem;
    }

    .contact-item h4 {
        font-size: 1.25rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-cta {
        padding: 2rem 1.5rem;
    }

    .contact-cta h4 {
        font-size: 1.5rem;
    }

    .contact-cta li {
        font-size: 1rem;
        padding: 0.75rem 0;
        padding-left: 1.75rem;
    }

    /* Form adjustments */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-logo {
        height: 40px;
    }

    /* Impact section */
    .impact-achievements {
        padding: 2rem 1.5rem;
    }

    /* Before/After */
    .before-after-caption {
        padding: 1.5rem 1.5rem;
    }

    .before-after-caption p {
        font-size: 1.1rem;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        width: 20px;
        height: 30px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .logo {
        max-width: 35% !important;
        min-width: 0 !important;
    }

    .logo img {
        height: auto !important;
        max-height: 32px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .navbar .container {
        padding: 0 8px !important;
    }

    .hero-cta .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .mission-card {
        padding: 1.5rem 0.75rem;
        min-height: 220px;
    }

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

    .contact-item {
        padding: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

/* Ensure minimum touch target sizes on all mobile devices */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .hamburger,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        padding: 10px;
        min-width: 44px;
    }

    .nav-menu a {
        padding: 12px 16px;
    }
}
