@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-red: #dc2626;
    --red-hover: #b91c1c;
    --red-light: #ef4444;
    --dark-bg: #0f0f0f;
    --darker-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --border-color: #2a2a2a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-light);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) var(--darker-bg);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.0);
    border-bottom: 1px solid transparent;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.4) 0%,
        rgba(15, 15, 15, 0.7) 50%,
        rgba(15, 15, 15, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.3s forwards;
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -3px;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.5s forwards;
}

.hero-title .callsign {
    color: var(--primary-red);
    display: block;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-secondary);
    max-width: 900px;
    margin-bottom: 50px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.9s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
}

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

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

.hero-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.hero-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.hero-images img:hover {
    transform: scale(1.02);
}

.testimonial-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
}

.testimonial-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonial-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-quote-wrapper {
    max-width: 900px;
}

.testimonial-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 40px;
}

.testimonial-quote {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.resume {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at top left, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, var(--card-bg) 50%, var(--darker-bg) 100%);
    position: relative;
}

.resume::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
}

.resume::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
}

.resume-header {
    text-align: center;
    margin-bottom: 70px;
}

.resume-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 30px;
}

.resume-header h2 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resume-header p {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.resume-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(10, 10, 10, 0.5) 100%);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.resume-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-red), var(--red-light));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px var(--primary-red);
}

.resume-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.resume-card:hover::before {
    height: 100%;
}

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

.resume-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(10, 10, 10, 0.7) 100%);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3), 0 0 40px rgba(220, 38, 38, 0.1);
}

.resume-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.resume-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
    border: 1.5px solid var(--primary-red);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    transition: all 0.3s;
}

.resume-tag::before {
    content: '●';
    font-size: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.resume-card:hover .resume-tag {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(220, 38, 38, 0.15));
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
}

.resume-date {
    text-align: right;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
    padding: 6px 14px;
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.resume-card h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
    transition: color 0.3s;
}

.resume-card h3 a {
    transition: all 0.3s;
}

.resume-card:hover h3 a {
    color: var(--primary-red) !important;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.resume-role {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.resume-role::before {
    content: '▸';
    font-size: 12px;
}

.resume-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.resume-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    transition: all 0.3s;
}

.stat:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.activities {
    padding: 100px 0;
}

.activities-header {
    margin-bottom: 50px;
}

.activities-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.activities-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-stat-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(10, 10, 10, 0.3) 100%);
    padding: 35px 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.contact-stat-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.contact-stat-card:hover::before {
    transform: scaleX(1);
}

.contact-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.contact-stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-stat-detail {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.activity-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-red);
    transition: height 0.3s;
}

.activity-card:hover::before {
    height: 100%;
}

.activity-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    background: rgba(26, 26, 26, 0.8);
}

.activity-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.activity-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.activity-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.setup {
    padding: 100px 0;
    background: var(--card-bg);
}

.setup-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.setup-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.setup-column {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.setup-column:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.setup-column h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--primary-red);
    letter-spacing: -1px;
}

.setup-list {
    list-style: none;
}

.setup-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    transition: padding-left 0.3s;
}

.setup-list li:hover {
    padding-left: 10px;
}

.setup-list li:last-child {
    border-bottom: none;
}

.setup-list strong {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.setup-list span {
    color: var(--text-secondary);
    font-size: 14px;
}

.story {
    padding: 100px 0;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.story-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.story-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.story-chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.story-chapter:last-child {
    margin-bottom: 0;
}

.story-chapter:nth-child(even) {
    direction: rtl;
}

.story-chapter:nth-child(even) > * {
    direction: ltr;
}

.story-chapter-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-red);
    letter-spacing: -1px;
}

.story-chapter-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.story-chapter-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.story-chapter-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-chapter-image:hover img {
    transform: scale(1.05);
}

.story-highlight {
    background: var(--card-bg);
    padding: 50px;
    border-left: 4px solid var(--primary-red);
    margin: 80px 0;
    border-radius: 4px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.story-highlight p {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.acknowledgments {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at top left, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--card-bg) 100%);
    position: relative;
}

.acknowledgments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
}

.acknowledgments::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
}

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

.acknowledgments-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.acknowledgments-header p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-style: italic;
}

.callsign-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.callsign-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: var(--primary-red);
    font-family: 'Courier New', monospace;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.callsign-card::after {
    content: '73';
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 10px;
    opacity: 0.3;
    font-weight: 600;
}

.callsign-card:hover {
    background: rgba(220, 38, 38, 0.08);
    border-color: var(--primary-red);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    color: var(--red-light);
}

.contact {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-red), transparent);
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--card-bg);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    background: rgba(26, 26, 26, 0.8);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    color: var(--primary-red);
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    background: var(--primary-red);
    color: var(--text-primary);
    transform: scale(1.05);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-card a {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s;
}

.contact-card a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.qsl-section {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.qsl-header {
    background: rgba(220, 38, 38, 0.12);
    padding: 40px 45px;
    border-bottom: 2px solid var(--primary-red);
}

.qsl-header h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.qsl-header p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.qsl-content {
    padding: 45px;
}

.qsl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.qsl-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 28px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.qsl-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.qsl-item h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.qsl-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

footer {
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }

    .testimonial-quote {
        font-size: 42px;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }

    .activities-grid,
    .setup-columns,
    .contact-grid,
    .qsl-grid,
    .resume-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid,
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .callsign-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        border-left: 1px solid var(--border-color);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
    }

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

    .story-chapter {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .story-chapter:nth-child(even) {
        direction: ltr;
    }

    .story-chapter-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .testimonial-quote {
        font-size: 32px;
    }

    .resume-header h2,
    .activities-header h2,
    .setup-header h2,
    .story-header h2,
    .contact h2 {
        font-size: 36px;
    }

    .story-chapter-content h3 {
        font-size: 24px;
    }

    .story-chapter-image img {
        height: 350px;
    }

    .story-highlight {
        padding: 35px;
    }

    .story-highlight p {
        font-size: 18px;
    }

    .contact-stat-card {
        padding: 30px 20px;
    }

    .contact-stat-number {
        font-size: 40px;
    }

    .contact-stat-label {
        font-size: 12px;
    }

    .acknowledgments-header h2 {
        font-size: 32px;
    }

    .callsign-card {
        font-size: 18px;
        padding: 16px 12px;
    }

    .callsign-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resume-card {
        padding: 30px;
    }

    .resume-card h3 {
        font-size: 22px;
    }

    .qsl-header,
    .qsl-content {
        padding: 35px 30px;
    }

    .qsl-header h3 {
        font-size: 26px;
    }

    .qsl-item {
        padding: 25px;
    }

    section,
    .resume,
    .activities,
    .setup,
    .story,
    .contact {
        padding: 100px 20px;
    }

    .contact-wrapper {
        padding: 0 20px;
    }

    .activity-card,
    .setup-column,
    .qsl-info {
        padding: 40px;
    }
}
