:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --gold-soft: #B8965F;
    --gold-medium: #C9A961;
    --gold-light: #D4B896;
    --gold-dark: #967840;
    --white: #ffffff;
    --text-light: #f5f5f5;
    --text-gray: #d0d0d0;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--black);
    overflow-x: hidden;
    padding-top: 85px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(135deg, transparent 0%, transparent 49.8%, rgba(184, 150, 95, 0.15) 50%, rgba(184, 150, 95, 0.15) 50.2%, transparent 51%, transparent 100%),
        linear-gradient(45deg, transparent 0%, transparent 49.8%, rgba(184, 150, 95, 0.12) 50%, rgba(184, 150, 95, 0.12) 50.2%, transparent 51%, transparent 100%),
        linear-gradient(-20deg, transparent 0%, transparent 49.8%, rgba(184, 150, 95, 0.1) 50%, rgba(184, 150, 95, 0.1) 50.2%, transparent 51%, transparent 100%);
    background-size: 1200px 1200px, 1000px 1000px, 1400px 1400px;
    background-position: 15% 25%, 85% 75%, 50% 50%;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#about,
#our-story,
#our-culture,
#get-in-touch {
    position: relative;
    display: block;
    height: 0;
    visibility: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 1000;
    border-bottom: 2px solid var(--gold-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    cursor: default;
}

.logo img {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold-medium);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-medium), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    color: var(--gold-medium);
    transition: all 0.3s ease;
    display: flex;
}

.social-icon:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(42, 42, 42, 0.85) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(184, 150, 95, 0.02) 60px,
            rgba(184, 150, 95, 0.02) 120px
        );
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(184, 150, 95, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(184, 150, 95, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(184, 150, 95, 0.05) 0%, transparent 60%);
    animation: pulseBackground 8s ease-in-out infinite;
}

input[name="state"]::placeholder {
    text-transform: none;
    opacity: 0.6;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(184, 150, 95, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(184, 150, 95, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 150, 95, 0.15);
    border: 1px solid var(--gold-soft);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-motto {
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: rgba(184, 150, 95, 0.1);
    border-left: 3px solid var(--gold-medium);
    border-radius: 4px;
}

.hero-motto p {
    color: var(--gold-light);
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-soft) 100%);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(184, 150, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 150, 95, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-medium);
}

.btn-secondary:hover {
    background: rgba(184, 150, 95, 0.1);
    border-color: var(--gold-light);
}

.btn-primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--gold-medium);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-heading.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.section-benefits {
    padding: 6rem 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.section-benefits::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 3%;
    width: 26%;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 150, 95, 0.2) 0%, rgba(184, 150, 95, 0.25) 50%, transparent 100%);
    transform: rotate(-25deg);
    z-index: 0;
}

.section-benefits::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: 5%;
    width: 32%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.22) 40%, rgba(184, 150, 95, 0.15) 100%);
    transform: rotate(15deg);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 150, 95, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-medium);
    box-shadow: 0 8px 30px rgba(184, 150, 95, 0.2);
}

.benefit-icon {
    color: var(--gold-medium);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.section-why-choose {
    padding: 6rem 0;
    background-color: var(--dark-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--black);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 150, 95, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-soft));
    transition: height 0.3s ease;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-medium);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-medium);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.section-hope {
    padding: 3rem 0;
    background-color: var(--dark-gray);
    border-top: 1px solid rgba(184, 150, 95, 0.2);
    border-bottom: 1px solid rgba(184, 150, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.section-hope::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.25) 30%, rgba(184, 150, 95, 0.25) 70%, transparent 100%);
    transform: translateY(-50%) rotate(-12deg);
    z-index: 0;
}

.section-hope::after {
    content: '';
    position: absolute;
    bottom: 35%;
    right: 8%;
    width: 28%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.2) 30%, rgba(184, 150, 95, 0.2) 70%, transparent 100%);
    transform: rotate(18deg);
    z-index: 0;
}

.hope-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hope-letters {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hope-letter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hope-letter::first-line {
    font-size: 6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hope-letter {
    font-size: 6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hope-word {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-about {
    padding: 6rem 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.section-story {
    padding: 4rem 0 4rem 0;
    background-color: var(--black);
    position: relative;
    overflow: visible;
    z-index: 2;
    min-height: fit-content;
}

.section-story > .container {
    position: relative;
    z-index: 10;
}

.section-story .timeline,
.section-story .timeline-item,
.section-story .timeline-content,
.section-story .section-heading,
.section-story .section-subtitle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#our-story {
    scroll-margin-top: 100px;
}

.section-story::before {
    content: '';
    position: absolute;
    top: 12%;
    right: 8%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.22) 30%, rgba(184, 150, 95, 0.22) 70%, transparent 100%);
    transform: rotate(-15deg);
    z-index: 0;
}

.section-story::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 6%;
    width: 22%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.18) 20%, rgba(184, 150, 95, 0.18) 80%, transparent 100%);
    transform: rotate(28deg);
    z-index: 0;
}

.leader-spotlight {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(184, 150, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.leader-spotlight::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.2) 30%, rgba(184, 150, 95, 0.2) 70%, transparent 100%);
    transform: rotate(-15deg);
    z-index: 0;
}

.leader-spotlight::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 25%;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 150, 95, 0.18) 0%, rgba(184, 150, 95, 0.18) 70%, transparent 100%);
    transform: rotate(20deg);
    z-index: 0;
}

.leader-spotlight > * {
    position: relative;
    z-index: 1;
}

.leader-photo {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gold-soft);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.leader-info h3 {
    color: var(--gold-light);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--gold-medium);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-motto {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold-medium);
}

.leader-affiliations {
    margin-bottom: 1.5rem;
}

.leader-affiliations p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.leader-affiliations a {
    color: var(--gold-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.leader-affiliations a:hover {
    color: var(--gold-light);
}

.leader-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.leader-socials a {
    color: var(--gold-medium);
    transition: all 0.3s ease;
}

.leader-socials a:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.documentary-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-heading {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.timeline {
    max-width: 800px;
    margin: 2rem auto 4rem;
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
    overflow: visible;
    display: block;
    opacity: 1;
    visibility: visible;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 28%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.18) 30%, rgba(184, 150, 95, 0.18) 70%, transparent 100%);
    transform: rotate(12deg);
    z-index: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold-medium));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--gold-medium);
    border-radius: 50%;
    border: 3px solid var(--black);
    box-shadow: 0 0 0 2px var(--gold-soft);
}

.timeline-content {
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(184, 150, 95, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--gold-medium);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(184, 150, 95, 0.1);
}

.timeline-content h4 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .leader-spotlight {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .leader-photo {
        margin: 0 auto;
    }

    .leader-motto {
        border-left: none;
        border-top: 3px solid var(--gold-medium);
        padding-left: 0;
        padding-top: 1rem;
    }

    .leader-socials {
        justify-content: center;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.5rem;
    }
}

.section-team {
    padding: 6rem 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.section-team::before {
    content: '';
    position: absolute;
    top: 18%;
    right: 7%;
    width: 24%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.2) 30%, rgba(184, 150, 95, 0.2) 70%, transparent 100%);
    transform: rotate(12deg);
    z-index: 0;
}

.section-team::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 20%;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 150, 95, 0.18) 0%, rgba(184, 150, 95, 0.22) 60%, transparent 100%);
    transform: rotate(-20deg);
    z-index: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid .team-card:nth-child(1) {
    grid-column: 1 / 3;
}

.team-grid .team-card:nth-child(2) {
    grid-column: 3 / 5;
}

.team-grid .team-card:nth-child(3) {
    grid-column: 5 / 7;
}

.team-grid .team-card:nth-child(4) {
    grid-column: 2 / 4;
}

.team-grid .team-card:nth-child(5) {
    grid-column: 4 / 6;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid .team-card:nth-child(1),
    .team-grid .team-card:nth-child(2),
    .team-grid .team-card:nth-child(3),
    .team-grid .team-card:nth-child(4),
    .team-grid .team-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
    }

    .footer-center {
        order: -1;
    }

    .footer-vision {
        font-size: 0.9rem;
    }

    .footer-logo {
        height: 32px;
    }

    .footer-legal {
        font-size: 0.85rem;
    }

    .team-grid .team-card:nth-child(1),
    .team-grid .team-card:nth-child(2),
    .team-grid .team-card:nth-child(3),
    .team-grid .team-card:nth-child(4),
    .team-grid .team-card:nth-child(5) {
        grid-column: span 1;
    }
}

.team-card {
    background: var(--dark-gray);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(184, 150, 95, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-medium);
    box-shadow: 0 8px 30px rgba(184, 150, 95, 0.2);
}

.team-photo {
    height: 280px;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(184, 150, 95, 0.3);
    color: var(--gold-soft);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--gold-medium);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}


.team-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-socials a {
    color: var(--gold-medium);
    transition: all 0.3s ease;
}

.team-socials a:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.section-office {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 150, 95, 0.2);
    border-bottom: 1px solid rgba(184, 150, 95, 0.2);
    z-index: 1;
}

.section-office::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 150, 95, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 150, 95, 0.05) 0%, transparent 50%);
}

.section-office::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 6%;
    width: 28%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.2) 30%, rgba(184, 150, 95, 0.2) 70%, transparent 100%);
    transform: rotate(-8deg);
    z-index: 0;
}

.office-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.office-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.office-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--gold-light);
    color: var(--dark-gray);
}

.instagram-btn:hover {
    background-color: #f4d03f;
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.instagram-btn svg {
    width: 24px;
    height: 24px;
}

.section-map {
    position: relative;
    overflow: hidden;
}

.section-map::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 12%;
    width: 26%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.18) 30%, rgba(184, 150, 95, 0.2) 50%, rgba(184, 150, 95, 0.18) 70%, transparent 100%);
    transform: rotate(32deg);
    z-index: 0;
}

.section-map::after {
    content: '';
    position: absolute;
    bottom: 18%;
    right: 15%;
    width: 22%;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 150, 95, 0.18) 0%, rgba(184, 150, 95, 0.15) 100%);
    transform: rotate(-28deg);
    z-index: 0;
}

.section-map {
    padding: 6rem 0;
    background-color: var(--black);
}

#map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

#map-container svg {
    width: 100%;
    height: auto;
    display: block;
}

.state {
    fill: #3a3a3a;
    stroke: var(--gold-soft);
    stroke-width: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.state.highlighted {
    fill: #4a4a4a;
    stroke: var(--gold-medium);
    stroke-width: 3;
    cursor: pointer;
}

.state:hover {
    fill: #5a5a5a;
    stroke: var(--gold-light);
    stroke-width: 3;
}

.section-contact {
    padding: 6rem 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 8%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.22) 30%, rgba(184, 150, 95, 0.22) 70%, transparent 100%);
    transform: rotate(-18deg);
    z-index: 0;
}

.section-contact::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 24%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 150, 95, 0.2) 40%, rgba(184, 150, 95, 0.2) 60%, transparent 100%);
    transform: rotate(22deg);
    z-index: 0;
}

.contact-top-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
}

.contact-speaker-section {
    margin-top: 2rem;
}

.contact-box {
    width: 100%;
    margin: 0;
    max-width: 100%;
}

@media (min-width: 768px) {
    .contact-top-section {
        flex-direction: column;
        align-items: stretch;
        max-width: 800px;
    }
    
    .contact-speaker-section {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }
    
    .contact-speaker-section .contact-box {
        max-width: 800px;
    }
}

.contact-box {
    background: var(--black);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 150, 95, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-box:hover {
    border-color: var(--gold-medium);
    box-shadow: 0 8px 30px rgba(184, 150, 95, 0.15);
}

.contact-box-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-box-header svg {
    color: var(--gold-medium);
    margin-bottom: 1rem;
}

.contact-box-header h3 {
    font-size: 1.8rem;
    color: var(--gold-light);
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method svg {
    color: var(--gold-medium);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-method h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-muted);
}

.contact-form-wrapper {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-gray);
    border: 1px solid rgba(184, 150, 95, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-medium);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.footer {
    background-color: var(--black);
    border-top: 1px solid rgba(184, 150, 95, 0.2);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
}

.footer-center {
    display: flex;
    justify-content: center;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-medium);
    letter-spacing: 0.5px;
}

.footer-legal-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-medium);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.footer-social-link {
    color: var(--gold-medium);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.footer-social-link:first-child {
    margin-left: 0;
}

.footer-social-link:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.footer-vision {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
    margin: 0;
    text-align: center;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.footer-legal {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.logo-clickable {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-clickable:hover {
    opacity: 0.8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: translate(-50%, -50%) scale(0);}
    to {transform: translate(-50%, -50%) scale(1);}
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--gold-light);
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: #fff;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }


    .hero-stats {
        gap: 2rem;
    }

    .hope-letters {
        gap: 2rem;
    }

    .hope-letter {
        font-size: 4.5rem;
    }

    .footer-content {
        grid-template-columns: auto 1fr auto;
        gap: 1.5rem;
    }

    .footer-logo {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(184, 150, 95, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .hope-letters {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hope-letter {
        font-size: 3.5rem;
    }

    .hope-word {
        font-size: 0.75rem;
    }

    .benefits-grid,
    .why-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.section-states {
    padding: 6rem 0;
    background-color: var(--black);
    position: relative;
}

.states-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.states-content h2 {
    color: var(--gold-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.states-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.states-content .btn-primary-large {
    background-color: var(--gold-medium);
    color: var(--black);
    border: 1px solid var(--gold-medium);
}

.states-content .btn-primary-large:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--dark-gray);
    padding: 3rem;
    border: 1px solid var(--gold-medium);
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 40px rgba(184, 150, 95, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-content h2 {
    color: var(--gold-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.close {
    color: var(--text-muted);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--gold-medium);
}

.states-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    flex: 1;
    min-height: 0;
}

.state-item {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.state-item.available {
    background-color: rgba(34, 139, 34, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
    color: var(--text-light);
}

.state-item.available:hover {
    background-color: rgba(34, 139, 34, 0.2);
    border-color: rgba(34, 139, 34, 0.5);
}

.state-item.unavailable {
    background-color: rgba(139, 34, 34, 0.1);
    border: 1px solid rgba(139, 34, 34, 0.3);
    color: var(--text-muted);
}

.state-item.unavailable:hover {
    background-color: rgba(139, 34, 34, 0.2);
    border-color: rgba(139, 34, 34, 0.5);
}

.state-item .check {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.state-item .x {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 10% auto;
    }

    .states-list {
        grid-template-columns: 1fr;
        max-height: 400px;
    }

    .close {
        top: 1rem;
        right: 1rem;
    }
}
