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

:root {
    --primary-50: #fff1f3;
    --primary-100: #ffe4e8;
    --primary-200: #ffc4cc;
    --primary-500: #f43f5e;
    --primary-600: #e11d48;
    --primary-700: #b3122f;
    --primary-900: #6a0016;
    --charcoal-900: #101418;
    --charcoal-700: #1f2933;
    --charcoal-500: #3e4c59;
    --cream-50: #fdf7f2;
    --cream-100: #f8eee7;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow-medium: 0 18px 40px rgba(16, 20, 24, 0.12);
    --shadow-soft: 0 14px 28px rgba(16, 20, 24, 0.08);
    --shadow-small: 0 10px 20px rgba(16, 20, 24, 0.06);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal-700);
    background: var(--cream-50);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: left;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.9rem;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(177, 18, 47, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin: 1rem 0;
    line-height: 1.2;
}

.section-header p {
    font-size: 1rem;
    color: var(--slate-500);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--charcoal-900));
    color: var(--white);
    box-shadow: var(--shadow-small);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(177, 18, 47, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--primary-600);
    color: var(--primary-600);
    background: transparent;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(16, 20, 24, 0.08);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.nav-logo-image {
    width: 84px;
    height: auto;
    object-fit: contain;
}

.nav-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--slate-400);
}

.nav-logo h2 {
    color: var(--primary-900);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}

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

.nav-link {
    text-decoration: none;
    color: var(--charcoal-500);
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-200));
    transition: var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.bar {
    width: 24px;
    height: 3px;
    background: var(--primary-900);
    transition: var(--transition);
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(122, 0, 22, 0.96), rgba(244, 63, 94, 0.8), rgba(254, 226, 226, 0.85)), radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 55%);
    color: var(--white);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.4rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(244, 63, 94, 0.4));
    border: 1px solid rgba(244, 63, 94, 0.45);
    box-shadow: 0 16px 32px rgba(16, 20, 24, 0.28);
    backdrop-filter: blur(12px);
}

.hero-badge img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.hero-badge span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.hero-badge p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-animation {
    position: relative;
    height: 240px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(254, 226, 226, 0.55));
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.45);
    box-shadow: 0 18px 34px rgba(122, 0, 22, 0.28);
}

.hero-animation__road {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 130%;
    height: 64px;
    background: linear-gradient(180deg, rgba(120, 16, 32, 0.95), rgba(70, 8, 18, 1));
    transform: skewX(-12deg);
}

.hero-animation__warehouse {
    position: absolute;
    right: 8%;
    bottom: 82px;
    width: 190px;
    height: 122px;
    border-radius: 18px 18px 12px 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(254, 226, 226, 0.82));
    border: 2px solid rgba(122, 0, 22, 0.25);
    box-shadow: 0 16px 28px rgba(122, 0, 22, 0.28);
    padding: 26px 26px 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: end;
}

.hero-animation__roof {
    position: absolute;
    top: -24px;
    left: 10px;
    right: 10px;
    height: 24px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, rgba(180, 16, 36, 0.9), rgba(122, 0, 22, 0.95));
    box-shadow: 0 8px 16px rgba(122, 0, 22, 0.3);
}

.hero-animation__smokestack {
    position: absolute;
    top: -66px;
    right: 34px;
    width: 26px;
    height: 66px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.88), rgba(153, 27, 27, 0.95));
    box-shadow: inset -4px -6px 10px rgba(255, 255, 255, 0.18);
}

.hero-animation__smokestack::after {
    content: '';
    position: absolute;
    top: -18px;
    left: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    filter: blur(1px);
    animation: stack-smoke 3.6s ease-in-out infinite;
}

.hero-animation__warehouse-window {
    width: 44px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(254, 215, 215, 0.7));
    border: 1px solid rgba(244, 63, 94, 0.3);
    box-shadow: inset -2px -4px 8px rgba(122, 0, 22, 0.18);
}

.hero-animation__warehouse-window--left {
    grid-column: 1 / 2;
}

.hero-animation__warehouse-window--right {
    grid-column: 2 / 3;
}

.hero-animation__door {
    grid-column: 1 / span 2;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(71, 6, 19, 0.94), rgba(46, 4, 12, 0.98));
    position: relative;
    overflow: hidden;
}

.hero-animation__door-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(244, 63, 94, 0.2));
    opacity: 0;
    animation: door-glow 8s ease-in-out infinite;
}

.hero-animation__truck {
    position: absolute;
    bottom: 42px;
    left: -56%;
    width: 245px;
    height: 78px;
    display: flex;
    align-items: flex-end;
    animation: truck-drive 8s ease-in-out infinite;
}

.hero-animation__trailer {
    position: relative;
    width: 158px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(254, 226, 226, 0.85));
    border: 2px solid rgba(122, 0, 22, 0.28);
    box-shadow: 0 12px 20px rgba(122, 0, 22, 0.22);
    margin-right: 14px;
}

.hero-animation__trailer-top {
    position: absolute;
    top: -8px;
    left: 6px;
    right: 6px;
    height: 12px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, rgba(254, 226, 226, 0.9), rgba(248, 180, 180, 0.75));
}

.hero-animation__stripe {
    position: absolute;
    inset: 10px 14px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(244, 63, 94, 0.4), rgba(225, 29, 72, 0.18));
}

.hero-animation__cab {
    position: relative;
    width: 80px;
    height: 48px;
}

.hero-animation__cab-body {
    position: absolute;
    bottom: 0;
    left: 6px;
    width: 56px;
    height: 42px;
    border-radius: 16px 12px 12px 16px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.95), rgba(122, 0, 22, 0.92));
    border: 2px solid rgba(122, 0, 22, 0.55);
    box-shadow: 0 8px 16px rgba(122, 0, 22, 0.28);
}

.hero-animation__cab-window {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 207, 232, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-animation__hood-simple {
    position: absolute;
    bottom: 4px;
    left: -34px;
    width: 34px;
    height: 30px;
    border-radius: 20px 10px 10px 20px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.95), rgba(122, 0, 22, 0.92));
    border: 2px solid rgba(122, 0, 22, 0.5);
}

.hero-animation__grill {
    position: absolute;
    left: -12px;
    top: 6px;
    width: 18px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(45, 7, 16, 0.95), rgba(25, 4, 9, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
}

.hero-animation__bumper {
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 24px;
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.92), rgba(248, 180, 180, 0.76));
    box-shadow: 0 6px 12px rgba(80, 0, 12, 0.4);
}

.hero-animation__headlight {
    position: absolute;
    bottom: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 214, 161, 0.92);
    box-shadow: 0 0 14px rgba(255, 214, 161, 0.6);
}

.hero-animation__headlight--left {
    left: -16px;
}

.hero-animation__headlight--right {
    left: -4px;
}

.hero-animation__wheel {
    position: absolute;
    bottom: -14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(51, 16, 24, 0.96);
    border: 4px solid rgba(254, 226, 226, 0.6);
    animation: wheel-spin 0.9s linear infinite;
}

.hero-animation__wheel--front {
    left: 30px;
}

.hero-animation__wheel--middle {
    left: 100px;
}

.hero-animation__wheel--back {
    left: 160px;
}

.hero-animation__wheel--trailer {
    left: 206px;
}

.hero-animation__crate {
    position: absolute;
    bottom: 100px;
    left: 38%;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.95), rgba(225, 29, 72, 0.88));
    box-shadow: 0 12px 18px rgba(225, 29, 72, 0.28);
    opacity: 0;
    animation: crate-move 8s ease-in-out infinite;
}

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

.hero-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-photo img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-photo:hover img {
    transform: scale(1.05);
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.hero-logo-card,
.contact-card,
.hero-info-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 18px 45px rgba(16, 20, 24, 0.24);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-logo-card::before,
.contact-card::before,
.hero-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.18), rgba(244, 63, 94, 0.28));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-logo-card:hover::before,
.contact-card:hover::before,
.hero-info-card:hover::before {
    opacity: 1;
}

.hero-logo-card img {
    width: 120px;
    margin: 0 auto 1rem;
}

.logo-caption {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-card h3,
.hero-info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card ul,
.hero-info-card ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.contact-card li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    text-decoration: underline;
}

.hero-info-card li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

/* What We Do */
.what-we-do {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(16, 20, 24, 0.05);
    overflow: hidden;
    display: grid;
}

.service-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-200), var(--primary-600));
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--slate-900);
}

.service-card p {
    color: var(--slate-500);
}

/* Events */
.events {
    background: linear-gradient(135deg, var(--slate-50), var(--white));
}

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

.event-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(16, 20, 24, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(244, 63, 94, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.04);
}

.event-content {
    padding: 2rem 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.event-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    background: rgba(244, 63, 94, 0.12);
    color: var(--primary-700);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.event-content h3 {
    font-size: 1.5rem;
    color: var(--slate-900);
}

.event-content p {
    color: var(--slate-500);
}

.event-details {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    color: var(--slate-500);
    font-size: 0.95rem;
}

.event-details i {
    color: var(--primary-600);
    margin-right: 0.5rem;
}

.events-note,
.team-note,
.news-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--slate-500);
    font-size: 0.95rem;
}

/* Team */
.team {
    background: linear-gradient(135deg, var(--cream-100), var(--white));
}

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

.team-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(16, 20, 24, 0.05);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 228, 232, 0.4), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.team-photo {
    width: 100%;
    height: 240px;
    background: var(--slate-100);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 1.8rem;
    display: grid;
    gap: 0.6rem;
}

.team-role {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--primary-600);
    font-weight: 700;
}

.team-content h3 {
    font-size: 1.3rem;
    color: var(--slate-900);
}

.team-meta {
    font-size: 0.95rem;
    color: var(--charcoal-500);
}

.team-meta strong {
    color: var(--charcoal-700);
}

.team-contact {
    color: var(--primary-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.team-contact:hover {
    text-decoration: underline;
}

/* News */
.news {
    background: linear-gradient(135deg, var(--primary-50), var(--slate-50));
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-filters {
    display: inline-flex;
    gap: 0.8rem;
    background: var(--white);
    padding: 0.6rem;
    border-radius: 999px;
    box-shadow: var(--shadow-small);
    border: 1px solid var(--primary-100);
}

.filter-btn {
    border: none;
    background: transparent;
    color: var(--slate-500);
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-600);
    color: var(--white);
    box-shadow: var(--shadow-small);
}

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

.news-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(16, 20, 24, 0.05);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(244, 63, 94, 0.14), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card * {
    position: relative;
    z-index: 1;
}

.news-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.25rem;
    color: var(--slate-900);
}

.news-card p {
    color: var(--slate-500);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--slate-400);
}

.news-link {
    font-weight: 600;
    color: var(--primary-700);
    text-decoration: none;
}

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

/* Contact */
.contact {
    background: linear-gradient(135deg, rgba(248, 238, 231, 0.96), rgba(255, 241, 243, 0.92));
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: start;
}

.contact-intro {
    display: grid;
    gap: 1.5rem;
}

.contact-intro p {
    color: var(--charcoal-500);
}

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

.contact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.highlight {
    display: flex;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(16, 20, 24, 0.05);
    box-shadow: var(--shadow-small);
    position: relative;
    overflow: hidden;
}

.highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(244, 63, 94, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight:hover::after {
    opacity: 1;
}

.highlight span {
    width: 42px;
    height: 42px;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.contact-sidebar {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.newsletter-card,
.qr-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(16, 20, 24, 0.06);
    position: relative;
    overflow: hidden;
}

.newsletter-card a,
.qr-card a {
    position: relative;
    z-index: 10;
}

.newsletter-card::after,
.qr-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 228, 232, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.newsletter-card:hover::after,
.qr-card:hover::after {
    opacity: 1;
}

.newsletter-card h3,
.qr-card h3 {
    font-size: 1.3rem;
    color: var(--slate-900);
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-form {
    display: grid;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.newsletter-card .btn {
    margin-top: 0.5rem;
}

.footer-column a i {
    margin-right: 0.5rem;
}

.qr-display-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.qr-display {
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    border: 2px solid var(--slate-200);
}

.qr-link {
    text-align: center;
    margin: 1rem 0;
}

.qr-link a {
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.qr-link a:hover {
    text-decoration: underline;
}

.qr-card .podcast-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-200);
}

.qr-card .podcast-links h4 {
    font-size: 1rem;
    color: var(--slate-700);
    margin-bottom: 1rem;
    text-align: center;
}

.podcast-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--primary-200);
}

.podcast-link:hover {
    background: var(--primary-600);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small);
}

/* Footer */
.footer {
    background: radial-gradient(circle at top left, rgba(244, 63, 94, 0.4), transparent 55%), linear-gradient(135deg, var(--charcoal-900), #06070a);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

/* Back to top button */
.back-to-top:hover {
    transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout,
    .contact-layout,
    .news-header,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-sidebar {
        order: -1;
    }

    .news-header {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-section::after {
        background-size: 240px;
        background-position: right 40px;
    }
}

@media (max-width: 860px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 78px;
        flex-direction: column;
        background: var(--white);
        width: 90%;
        max-width: 360px;
        text-align: left;
        padding: 2rem;
        gap: 1.2rem;
        border-radius: 24px;
        box-shadow: 0 28px 60px rgba(16, 20, 24, 0.2);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .goal-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

    .services-grid,
    .events-grid,
    .team-grid,
    .contact-highlights {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

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

    .nav-logo-image {
        width: 72px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 18px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .news-meta {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .filter-btn {
        padding: 0.4rem 0.9rem;
    }


    .mission-callout {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

.service-card,
.event-card,
.team-card,
.news-card,
.highlight,
.newsletter-card,
.qr-card {
    animation: fadeInUp 0.6s ease both;
}

@keyframes truck-drive {
    0% {
        transform: translateX(0);
    }
    48% {
        transform: translateX(165%);
    }
    62% {
        transform: translateX(165%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes wheel-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes crate-move {
    0%, 40% {
        opacity: 0;
        transform: translate(0, 0) scale(0.7);
    }
    45% {
        opacity: 1;
        transform: translate(52px, -4px) scale(1);
    }
    55% {
        opacity: 1;
        transform: translate(146px, -8px) scale(1);
    }
    62% {
        opacity: 0.25;
        transform: translate(208px, -4px) scale(0.9);
    }
    68%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(0.7);
    }
}

@keyframes door-glow {
    0%, 42% {
        opacity: 0;
    }
    52% {
        opacity: 0.85;
    }
    64% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
    }
}

@keyframes stack-smoke {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-22px) scale(1.5);
        opacity: 0;
    }
}

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

    .hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-gallery {
        grid-template-columns: 1fr;
    }

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

    .nav-logo-image {
        width: 72px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-100);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}

.mission-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

/* Mission Tabs */
.mission-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
    border-bottom: 2px solid var(--slate-200);
    padding-bottom: 0;
}

.mission-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--slate-500);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
    position: relative;
}

.mission-tab:hover {
    color: var(--primary-600);
}

.mission-tab.active {
    color: var(--primary-600);
    border-bottom-color: var(--primary-600);
}

.mission-tab-content {
    margin-top: 2.5rem;
    min-height: 300px;
}

.tab-panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel-content {
    display: grid;
    gap: 2rem;
}

.tab-panel-content .mission-gallery {
    margin-bottom: 2rem;
}

.tab-panel-content .mission-gallery img {
    width: 100%;
    max-width: 600px;
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
}

.tab-panel-content .impact-intro {
    text-align: left;
}

.tab-panel-content .impact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.impact-intro h3 {
    font-size: 1.5rem;
    color: var(--primary-900);
    margin-bottom: 1rem;
}

.impact-intro p {
    color: var(--charcoal-500);
    margin-bottom: 1rem;
}

.impact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.impact-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(244, 63, 94, 0.12);
    color: var(--primary-700);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: inset 0 0 0 1px rgba(244, 63, 94, 0.2);
}

.impact-pills i {
    font-size: 1rem;
}

.membership-grid {
    display: grid;
    gap: 1.2rem;
}


.membership-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(16, 20, 24, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.membership-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 228, 232, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(16, 20, 24, 0.12);
}

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

.membership-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-200), var(--primary-600));
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.membership-card h4 {
    font-size: 1.2rem;
    color: var(--primary-900);
    margin-bottom: 0.6rem;
}

.membership-card p {
    color: var(--charcoal-500);
    position: relative;
    z-index: 1;
}

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

    .membership-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .mission-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mission-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 520px) {
    .impact-pills {
        flex-direction: column;
        align-items: flex-start;
    }

    .mission-tabs {
        flex-direction: column;
        gap: 0;
    }

    .mission-tab {
        width: 100%;
        text-align: left;
        padding: 0.9rem 1.2rem;
        border-bottom: 1px solid var(--slate-200);
        border-left: 3px solid transparent;
    }

    .mission-tab.active {
        border-left-color: var(--primary-600);
        border-bottom-color: var(--slate-200);
    }
}

.hero-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

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

.goal-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.35);
    box-shadow: 0 12px 24px rgba(122, 0, 22, 0.25);
}

.goal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(244, 63, 94, 0.4), rgba(251, 113, 133, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-card i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
}

.goal-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.goal-card p {
    color: rgba(255, 255, 255, 0.8);
}

.home-highlights {
    background: var(--slate-50);
    padding: 4rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(16, 20, 24, 0.05);
    text-align: left;
    display: grid;
    gap: 1rem;
}

.highlight-card i {
    font-size: 1.8rem;
    color: var(--primary-600);
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: var(--slate-900);
}

.highlight-card p {
    color: var(--charcoal-500);
}

.home-snapshot {
    padding: 4rem 0;
}

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

.snapshot-photo img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.snapshot-card {
    background: var(--white);
    border-radius: 22px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(16, 20, 24, 0.05);
}

.snapshot-card h3 {
    font-size: 1.6rem;
    color: var(--primary-900);
    margin-bottom: 1rem;
}

.snapshot-card p {
    color: var(--charcoal-500);
    margin-bottom: 1.5rem;
}

.snapshot-card ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    color: var(--charcoal-500);
}

.snapshot-card li {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
}

.snapshot-card li i {
    color: var(--primary-600);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

section[id] {
    scroll-margin-top: 100px;
}


