/* New Hero Section */
.hero-new {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2a1a0a 0%, #1a0a0a 100%);
    clip-path: none;
    -webkit-clip-path: none;
    padding: 5rem 0 3rem;
    margin-top: 4rem;
}

.hero-new-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%),
                url('https://images.unsplash.com/photo-1585386959984-a4155223168f?q=80&w=2069&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.55;
    background-position: center 20%;
}

.hero-new-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 600px at 30% 40%, rgba(212, 175, 55, 0.35) 0%, transparent 50%),
                radial-gradient(ellipse 600px 800px at 70% 60%, rgba(255, 215, 0, 0.3) 0%, transparent 50%);
    animation: none;
    transform: none;
    opacity: 0.4;
    background-position: center;
    z-index: 1;
}

.hero-new-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 1000px 700px at 50% 50%, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
    animation: none;
    transform: none;
    opacity: 0.4;
    background-position: center;
    z-index: 2;
}

.hero-new-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 3;
}

.hero-new-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 20% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 40%),
                radial-gradient(ellipse 500px 500px at 80% 70%, rgba(255, 215, 0, 0.25) 0%, transparent 45%);
    animation: none;
    transform: none;
    opacity: 0.4;
    background-position: center;
    z-index: 1;
}

/* Gold Light Animations */
@keyframes gold-light-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes gold-light-drift {
    0% {
        transform: translateX(-5%) translateY(-3%);
        opacity: 0.6;
    }
    50% {
        transform: translateX(5%) translateY(3%);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-5%) translateY(-3%);
        opacity: 0.6;
    }
}

@keyframes gold-light-sweep {
    0% {
        transform: translateX(0%) translateY(0%);
        opacity: 0.6;
    }
    33% {
        transform: translateX(10%) translateY(-5%);
        opacity: 0.9;
    }
    66% {
        transform: translateX(-5%) translateY(8%);
        opacity: 0.75;
    }
    100% {
        transform: translateX(0%) translateY(0%);
        opacity: 0.6;
    }
}

.hero-new-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 8rem 0 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-new-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
    backdrop-filter: blur(10px);
}

.hero-pill-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin: 0 0 2rem 0;
}

.hero-new-headline {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-new-headline br {
    display: block;
}

.hero-new-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-new-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-new-cta-primary,
.hero-new-cta-secondary {
    white-space: nowrap;
}

.hero-new-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.hero-veteran-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.32);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.hero-veteran-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.22);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--accent-gold);
    font-size: 0.85rem;
    box-shadow: inset 0 0 6px rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.hero-veteran-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Floating Items */
.hero-floating-items {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.floating-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1rem;
    color: var(--accent-gold);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-item:hover {
    opacity: 0.9;
}

.floating-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.floating-item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.floating-item span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Individual Item Positioning */
.floating-item-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    width: 90px;
    height: 90px;
}

.floating-item-2 {
    top: 25%;
    right: 10%;
    animation-delay: -1s;
    width: 100px;
    height: 100px;
}

.floating-item-3 {
    bottom: 25%;
    left: 12%;
    animation-delay: -2s;
    width: 95px;
    height: 95px;
}

.floating-item-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: -3s;
    width: 90px;
    height: 90px;
}

.floating-item-5 {
    top: 50%;
    left: 5%;
    animation-delay: -4s;
    width: 85px;
    height: 85px;
}

.floating-item-6 {
    top: 45%;
    right: 5%;
    animation-delay: -5s;
    width: 90px;
    height: 90px;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(-25px) rotate(1deg);
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Color Palette */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-gold: #d4af37;
    --light-gold: #f4e4bc;
    --pure-white: #ffffff;
    --light-gray: #f8f8f8;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(14, 8, 4, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0.85rem 2.25rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: #fff;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-primary);
    font-size: 1.55rem;
    letter-spacing: 0.04em;
}

.nav-logo i {
    color: var(--accent-gold);
    font-size: 2rem;
}

.nav-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.75);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

.nav-phone i {
    color: var(--accent-gold);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.8rem;
    background: linear-gradient(135deg, #f4dea3 0%, #d3ab56 100%);
    color: #120a04;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
    -webkit-clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
}

.nav-cta i {
    font-size: 0.95rem;
    color: #120a04;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(212, 175, 55, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%),
                url('https://images.unsplash.com/photo-1603575449153-8aee3eba8f2f?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

/* Subtle moving light sweep across hero background */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -50%;
    width: 200%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.15), rgba(255,255,255,0) 60%);
    transform: rotate(12deg);
    animation: hero-sheen 8s linear infinite;
}

@keyframes hero-sheen {
    0% { transform: translateX(-20%) rotate(12deg); opacity: 0.25; }
    50% { opacity: 0.35; }
    100% { transform: translateX(20%) rotate(12deg); opacity: 0.25; }
}

.hero-content {
    text-align: center;
    color: var(--pure-white);
    z-index: 1;
    /* No text animations */
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Massive display headline with silver gradient like reference */
.hero-display {
    font-size: clamp(2.75rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    background: linear-gradient(180deg, #f1f1f1 0%, #d8d8d8 60%, #bdbdbd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.headline-line { display: block; }

.hero-sub-display {
    max-width: 720px;
    color: rgba(255,255,255,0.85);
}

.highlight {
    position: relative;
    background: linear-gradient(135deg, #f6e7b7 0%, var(--accent-gold) 40%, #b8941f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    /* No animated underline */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Hero badges row */
.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0 auto 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(244, 228, 188, 0.5);
    color: var(--pure-white);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.hero-badge i { color: var(--accent-gold); }

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    -webkit-clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-black);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* CTA shine effect */
.btn-primary .btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    -webkit-clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
}

.btn-primary:hover .btn-shine {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Credibility row like reference */
.hero-cred {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.85);
}

.badge-pill {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.hero-cred .rating { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-cred .stars { color: var(--accent-gold); }

.avatars { display: inline-flex; }
.avatars img {
    width: 28px; height: 28px; border-radius: 999px; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.8);
    margin-left: -8px;
}
.avatars img:first-child { margin-left: 0; }
.trusted { color: rgba(255,255,255,0.7); }

.trust-stars {
    color: var(--accent-gold);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll-label {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    color: #f7f3e3;
    opacity: 0.85;
}

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

.section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Event Section */
.event-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.event-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--pure-white);
    border-radius: 26px;
    border-left: 6px solid transparent;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform: var(--translate, translateY(0)) scale(0.94);
    transform-origin: center;
}

.event-card:hover {
    transform: translateY(-6px) scale(0.94);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

.event-card.active {
    transform: var(--translate, translateY(0)) scale(1);
    border-left-color: var(--accent-gold);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.2);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 1.6rem 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 18px 35px rgba(212, 175, 55, 0.2);
    color: var(--primary-black);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.date-day {
    font-size: 1.7rem;
    line-height: 1.2;
}

.date-month {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.event-details h3 {
    font-family: var(--font-primary);
    font-size: 1.85rem;
    margin: 0;
    color: var(--primary-black);
}

.event-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.6rem;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 1rem;
}

.info-item i {
    color: var(--accent-gold);
}

.what-to-bring {
    background: rgba(247, 242, 233, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.what-to-bring h4 {
    margin: 0;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-black);
}

.what-to-bring ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.what-to-bring li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.45rem;
    color: var(--text-gray);
}

.what-to-bring li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.65rem;
    color: var(--accent-gold);
}

/* What We Buy Section - Redesigned */
.what-we-buy-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--light-gray) 100%);
}

.items-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.item-card-new {
    background: var(--pure-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
}

.item-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.item-image-wrapper {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

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

.item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 180px;
    position: relative;
    z-index: 1;
}

.item-bg {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

.luxury-watches-bg {
    background-image: url('https://www.mjewelry.com/cdn/shop/files/m277200-0017.webp?v=1747255888');
    background-color: var(--pure-white);
    mix-blend-mode: multiply;
}

.designer-handbags-bg {
    background-image: url('https://www.pngmart.com/files/15/Michael-Kors-Handbag-Transparent-PNG.png');
    background-color: var(--pure-white);
    mix-blend-mode: multiply;
}

.coins-bullion-bg {
    background-image: url('https://minotcoinandbullion.com/wp-content/uploads/2024/04/minotcoin-inventory-selection.webp');
    background-color: var(--pure-white);
    mix-blend-mode: multiply;
}

.us-coins-bg {
    background-image: url('https://www.rareuscoins.co/wp-content/uploads/2022/09/sell_r.png');
    background-color: var(--pure-white);
    mix-blend-mode: multiply;
}

.item-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.item-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* NO hover effects on images */
.item-card-new:hover .item-image-wrapper,
.item-card-new:hover .item-image-wrapper img,
.item-card-new:hover .item-bg {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    scale: 1 !important;
    opacity: 1 !important;
}

/* How It Works Section (Enhanced) */
.how-it-works-neo {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.steps-neo {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-neo {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.step-neo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #b8941f 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.step-neo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.step-neo:hover::before {
    opacity: 1;
}

.step-neo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.step-neo:hover .step-neo-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.step-neo-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-neo-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
}

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

.testimonial-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--accent-gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--accent-gold);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--pure-white);
    text-align: center;
    clip-path: polygon(0% 60px, 50% 0%, 100% 60px, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 60px, 50% 0%, 100% 60px, 100% 100%, 0% 100%);
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-black);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

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

.contact-item i {
    color: var(--accent-gold);
    width: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid var(--secondary-black);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes underline {
    0%, 100% {
        width: 0;
    }
    50% {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Additional creative effects for image containers */
.item-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: none !important;
    z-index: 1;
    display: none !important;
}

/* Completely disable all image-related hover effects */
.item-card:hover .item-image-container,
.item-card:hover .item-image,
.item-card:hover .item-image-src,
.item-card:hover .item-image-container::after,
.item-card:hover .item-image-container::before,
.item-card:hover .item-image::before,
.item-card:hover .item-image::after {
    transform: none !important;
    transition: none !important;
    scale: 1 !important;
    opacity: 1 !important;
}

/* Ensure images don't change on card hover */
.item-card:hover img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
}

/* Disable animations on images */
.item-image,
.item-image-src,
.item-image-container img {
    animation: none !important;
    transition: none !important;
}

/* Floating animation for image containers */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.item-image-container {
    animation: float-gentle 6s ease-in-out infinite;
}

.item-card:nth-child(2n) .item-image-container {
    animation-delay: -2s;
}

.item-card:nth-child(3n) .item-image-container {
    animation-delay: -4s;
}

/* Community Giving Section */
.giving-back-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fff8ee 0%, #ffffff 100%);
    position: relative;
}

.giving-back-inner {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 3rem;
    padding: 3rem;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.giving-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.giving-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.giving-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.giving-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    color: var(--primary-black);
}

.giving-back-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 600;
}

.giving-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.1rem);
    margin: 0;
    color: var(--primary-black);
}

.giving-content p {
    margin: 0;
    line-height: 1.75;
}

.giving-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.giving-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 1.5rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

a.giving-logo-card span,
.giving-logo-card span {
    display: none;
}

.giving-logo-card img {
    width: 160px;
    max-width: 100%;
    object-fit: contain;
}

.giving-logo-card span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-black);
}

.giving-family-column,
.giving-content .family-story-block {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.family-story-block {
    padding: 1.6rem 1.8rem;
    border-radius: 24px;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.family-story-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.family-story-block h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    margin: 0;
    color: var(--primary-black);
}

.family-story-block p {
    margin: 0;
    color: var(--primary-black);
    line-height: 1.7;
}

.family-story-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.family-story-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.6;
}

.family-story-list i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.family-story-note {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-black);
    line-height: 1.6;
}


/* Tablet Responsiveness */
@media (max-width: 992px) {
    .hero-new-headline {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    
    .items-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .item-image-wrapper {
        height: 190px;
    }
    
    .steps-neo {
        gap: 2rem;
    }
    
    .step-neo {
        min-width: 250px;
        max-width: 400px;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .giving-back-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 2.25rem;
        text-align: center;
    }
    
    .giving-photo {
        min-height: 320px;
    }
    
    .giving-content {
        align-items: center;
    }
    
    .giving-content p {
        max-width: 680px;
    }
    
    .giving-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
    }
    
    .family-story-block {
        text-align: left;
    }
    
    .giving-back-logos {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .giving-logo-card {
        min-width: 220px;
        justify-content: center;
    }
    
    .giving-family-column {
        text-align: center;
        align-items: center;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .nav-container {
        padding: 0.85rem 1.5rem;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        background: rgba(10, 7, 4, 0.97);
        border-bottom: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        font-size: 1rem;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-new {
        min-height: auto;
        clip-path: none;
        -webkit-clip-path: none;
        padding: 5rem 0 3rem;
        margin-top: 4rem;
    }
    
    .hero-floating-items {
        display: none;
    }
    
    .hero-new-content {
        padding: 0;
    }
    
    .hero-new-description {
        margin-bottom: 1.75rem;
    }
    
    .hero-pill-row {
        margin-bottom: 1.75rem;
        gap: 0.75rem;
    }
    
    .hero-new-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-veteran-tag {
        font-size: 0.78rem;
    }
    
    .hero-new-headline {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-new-description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .hero-new-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-new-cta-primary,
    .hero-new-cta-secondary {
        width: 100%;
    }
    
    .hero-new-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-feature-item {
        flex: 1 1 calc(50% - 1rem);
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .giving-back-inner {
        padding: 1.75rem 1.25rem;
        gap: 1.35rem;
    }
    
    .giving-photo {
        min-height: 260px;
    }
    
    .giving-content {
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .giving-logo-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    
    .family-story-block {
        padding: 1.25rem 1.35rem;
    }
    
    .family-story-block h3 {
        font-size: 1.6rem;
    }
    
    .family-story-note {
        font-size: 0.9rem;
    }
    
    /* Floating Items Mobile */
    .floating-item {
        opacity: 0.4;
        padding: 0.75rem;
    }
    
    .floating-item i {
        font-size: 1.2rem;
    }
    
    .floating-item span {
        font-size: 0.65rem;
    }
    
    .floating-item-1,
    .floating-item-2,
    .floating-item-3,
    .floating-item-4,
    .floating-item-5,
    .floating-item-6 {
        width: 70px;
        height: 70px;
    }
    
    .floating-item-1 {
        top: 10%;
        left: 3%;
    }
    
    .floating-item-2 {
        top: 20%;
        right: 3%;
    }
    
    .floating-item-3 {
        bottom: 20%;
        left: 3%;
    }
    
    .floating-item-4 {
        bottom: 15%;
        right: 3%;
    }
    
    .floating-item-5 {
        top: 45%;
        left: 2%;
    }
    
    .floating-item-6 {
        top: 40%;
        right: 2%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .event-list {
        gap: 1.5rem;
    }
    
    .event-card {
        padding: 1.75rem;
    }

    .event-card-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .event-date {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 18px;
    }

    .event-body {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .event-list .event-card {
        transform: none !important;
        min-height: auto;
        padding: 1.25rem;
        border-left: 4px solid var(--accent-gold) !important;
        flex-direction: column;
        gap: 1.25rem;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    
    .event-list .event-card.active {
        transform: none !important;
        border-left-width: 6px !important;
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    }
    
    .event-list .event-card::before {
        display: none;
    }
    
    .event-card {
        padding: 1.25rem;
        gap: 1.25rem;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    
    .event-card:hover {
        transform: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    
    .event-date {
        width: 70px;
        height: 70px;
        margin: 0;
        padding: 0;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 70px;
    }
    
    .date-day {
        font-size: 1.3rem;
        line-height: 1.3rem;
    }
    
    .date-month {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        margin-top: 0.25rem;
    }
    
    .event-details h3 {
        font-size: 1.3rem;
        text-align: left;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .event-info {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .info-item {
        font-size: 0.9rem;
        gap: 0.75rem;
    }
    
    .info-item i {
        width: 16px;
        font-size: 0.9rem;
    }
    
    .what-to-bring h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .what-to-bring ul {
        display: block;
    }
    
    .what-to-bring li {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }
    
    .steps-neo {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-neo {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .step-neo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .item-card {
        padding: 1.5rem;
    }
    
    .item-image-container {
        width: 100px;
        height: 100px;
    }
    
    .image-overlay {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-section {
        clip-path: none;
        -webkit-clip-path: none;
        padding: 3.5rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .giving-logo-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .giving-logo-card {
        padding: 0.85rem 1rem;
    }
    
    .giving-logo-card img {
        width: 140px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .hero-new-content {
        padding: 4rem 0 3rem;
    }
    
    .hero-new-headline {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
    }
    
    .hero-new-description {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .hero-new-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
    }
    
    .hero-feature-item {
        font-size: 0.85rem;
    }
    
    /* Floating Items Small Mobile */
    .floating-item {
        opacity: 0.3;
        padding: 0.6rem;
    }
    
    .floating-item i {
        font-size: 1rem;
    }
    
    .floating-item span {
        font-size: 0.6rem;
    }
    
    .floating-item-1,
    .floating-item-2,
    .floating-item-3,
    .floating-item-4,
    .floating-item-5,
    .floating-item-6 {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.95rem;
        clip-path: polygon(14px 0%, 100% 0%, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0% 100%, 0% 14px);
        -webkit-clip-path: polygon(14px 0%, 100% 0%, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0% 100%, 0% 14px);
    }
    
    .btn i {
        font-size: 1rem;
    }
    
    .hero-pill-row {
        gap: 0.6rem;
    }
    
    .hero-veteran-tag {
        font-size: 0.75rem;
    }
    
    .giving-back-inner {
        padding: 1.6rem 1.25rem;
        gap: 1.5rem;
    }
    
    .giving-logo-card {
        padding: 1rem;
    }
    
    .giving-logo-card img {
        width: 120px;
    }
    
    .giving-content {
        align-items: center;
        text-align: center;
    }
    
    .family-story-block {
        padding: 1.25rem 1.35rem;
        text-align: left;
    }
    
    .family-story-block h3 {
        font-size: 1.6rem;
    }
    
    .family-story-list li {
        text-align: left;
    }
    
    .family-story-note {
        font-size: 0.9rem;
    }
    
    /* New What We Buy Section Mobile */
    .items-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .item-card-new {
        border-radius: 20px;
    }
    
    .item-image-wrapper {
        height: 180px;
        padding: 1.5rem;
    }
    
    .item-content {
        padding: 1.5rem;
    }
    
    .item-content h3 {
        font-size: 1.3rem;
    }
    
    .item-content p {
        font-size: 0.9rem;
    }
    
    .step-neo {
        padding: 1.25rem;
    }
    
    .step-neo-content h3 {
        font-size: 1.2rem;
    }
    
    .step-neo-content p {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .nav-logo-image {
        /* removed */
        height: 48px;
    }
}

.event-card .what-to-bring ul {
    display: block !important;
}

.event-card .what-to-bring li {
    display: block;
    margin-bottom: 0.45rem;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.75rem;
        transform: none;
    }

    .event-card:hover {
        transform: translateY(-4px);
    }

    .event-date {
        width: 100%;
        border-radius: 18px;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .event-details h3 {
        font-size: 1.4rem;
    }

    .event-info {
        flex-direction: column;
        gap: 0.6rem;
    }
}

