:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E5B2;
    --gold-dark: #B8941F;
    --gold-gradient: linear-gradient(135deg, #F4E5B2 0%, #D4AF37 50%, #B8941F 100%);
    --dark-bg: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #888888;
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 5px 0;
    background: rgba(26, 26, 26, 0.98);
}

.navbar.scrolled .logo-img {
    height: 70px;
}

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

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-divider {
    width: 2px;
    height: 25px;
    background: var(--gold-primary);
    opacity: 0.3;
    margin: 0 10px;
    align-self: center;
}

.nav-delivery {
    background: var(--gold-gradient);
    color: var(--dark-bg) !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.nav-delivery:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    color: var(--dark-bg) !important;
}

.nav-delivery.doordash:hover {
    background: linear-gradient(135deg, #FF3008, #FF5733);
}

.nav-delivery.ubereats:hover {
    background: linear-gradient(135deg, #06C167, #5FB709);
}

.nav-delivery i {
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    margin: -10px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold-primary);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.2);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    padding: 40px 20px;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, transparent 70%);
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(0, 0, 0, 0.6));
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gold-primary);
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9),
                 0 0 20px rgba(0, 0, 0, 0.7),
                 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--gold-light);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9),
                 0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6),
                0 4px 12px rgba(0, 0, 0, 0.7);
}

.btn-outline {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gold-primary);
}

.feature-item i {
    font-size: 1.5rem;
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--dark-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--dark-secondary);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.product-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.product-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Veteran Section */
.veteran-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    position: relative;
}

.veteran-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
}

.veteran-content {
    max-width: 1000px;
    margin: 0 auto;
}

.veteran-info {
    text-align: center;
}

.veteran-badge {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.veteran-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.veteran-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.military-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    display: flex;
    gap: 20px;
    text-align: left;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--gold-primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.9;
}

.special-offer {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.special-offer p {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin: 0;
}

.special-offer i {
    color: var(--gold-primary);
    margin-right: 10px;
}

.special-offer strong {
    color: var(--gold-primary);
}

/* Delivery Section */
.delivery {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.delivery-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.delivery-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-bottom: 20px;
}

.delivery-logo img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.delivery-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.delivery-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-delivery {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-delivery:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.delivery-info {
    text-align: center;
    color: var(--gold-light);
    font-size: 1.1rem;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,197.3C960,213,1056,203,1152,181.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.social-content {
    position: relative;
    z-index: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.social-card {
    background: var(--dark-secondary);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.social-info p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.social-action {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 6rem;
    opacity: 0.05;
    transition: all 0.3s ease;
}

/* Social Card Colors */
.social-card.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C5FCD 100%);
}

.social-card.facebook:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4);
}

.social-card.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #F77737 100%);
}

.social-card.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(225, 64, 95, 0.4);
}

.social-card.tiktok {
    background: linear-gradient(135deg, #000000 0%, #111111 50%, #FF0050 100%);
}

.social-card.tiktok:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.4);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.social-card:hover .social-bg-icon {
    right: -10px;
    bottom: -10px;
    opacity: 0.1;
}

.social-cta {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-cta p {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin: 0;
}

.social-cta i {
    color: var(--gold-primary);
    margin-right: 10px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    width: 30px;
}

.info-item h4 {
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.map-container iframe {
    border-radius: 10px;
    filter: grayscale(20%);
}

.map-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    min-width: 120px;
    justify-content: center;
}

.map-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-btn.google-maps:hover {
    border-color: #4285F4;
    background: rgba(66, 133, 244, 0.05);
}

.map-btn.waze:hover {
    border-color: #33CCFF;
    background: rgba(51, 204, 255, 0.05);
}

.map-btn.apple-maps:hover {
    border-color: #007AFF;
    background: rgba(0, 122, 255, 0.05);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.loading-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
        transform: scale(1.05);
    }
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-light);
    animation: spin 1.5s linear infinite;
}

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

.loading-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.loading-bar {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: loadProgress 2s ease-in-out infinite;
}

@keyframes loadProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    color: var(--text-light);
}

/* Footer Menu Section */
.footer-menu-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-menu-column {
    text-align: left;
}

.footer-menu-title {
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-menu-links a i {
    font-size: 0.9rem;
}

/* Footer Bottom Section */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Veteran Section (Left) */
.footer-veteran-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

.tvc-badge {
    height: 100px;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.tvc-badge:hover {
    transform: scale(1.05);
}

.veteran-badge-text {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
    max-width: 200px;
}

/* Company Section (Right) */
.footer-company-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
}

.footer-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 5px 0;
}

.tech-credit {
    font-size: 0.9rem;
}

.tech-credit a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tech-credit a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* General container and overflow prevention */
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.98) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 30px 20px 40px;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        font-size: 1.1rem;
        display: block;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:not(.nav-delivery):last-of-type {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-divider {
        width: 60%;
        height: 2px;
        margin: 20px auto;
        background: var(--gold-gradient);
        opacity: 0.5;
    }
    
    .nav-delivery {
        margin: 10px auto;
        padding: 12px 24px;
        justify-content: center;
        display: flex !important;
        width: calc(100% - 40px);
        max-width: 280px;
        border-radius: 30px;
        font-size: 1rem;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: none !important;
    }
    
    .nav-delivery i {
        font-size: 1.1rem;
    }
    
    .nav-delivery:first-of-type {
        margin-top: 20px;
    }
    
    .nav-delivery.doordash {
        background: linear-gradient(135deg, #FF3008, #FF5733) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(255, 48, 8, 0.4);
        border: none;
        font-weight: 600;
    }
    
    .nav-delivery.ubereats {
        background: linear-gradient(135deg, #06C167, #5FB709) !important;
        color: white !important;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(6, 193, 103, 0.4);
        border: none;
        font-weight: 600;
    }
    
    .nav-delivery:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-delivery.doordash:hover {
        box-shadow: 0 6px 20px rgba(255, 48, 8, 0.5);
    }
    
    .nav-delivery.ubereats:hover {
        box-shadow: 0 6px 20px rgba(6, 193, 103, 0.5);
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        padding: 0 10px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .features {
        gap: 15px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .military-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 15px;
    }
    
    .veteran-badge {
        font-size: 3rem;
    }
    
    .veteran-info h3 {
        font-size: 2rem;
    }
    
    .special-offer {
        padding: 15px;
    }
    
    .special-offer p {
        font-size: 1rem;
    }
    
    .delivery-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .delivery-card {
        padding: 30px 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Footer mobile layout */
    .footer-menu-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-menu-column {
        text-align: center;
    }
    
    .footer-menu-links {
        align-items: center;
    }
    
    .footer-menu-links a {
        justify-content: center;
    }
    
    .footer-menu-links a:hover {
        transform: translateX(0);
    }
    
    .footer-bottom-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-veteran-section {
        order: 2;
    }
    
    .footer-company-section {
        order: 1;
        align-items: center;
        text-align: center;
    }
    
    /* Logo sizes for tablets/medium screens */
    .logo-img {
        height: 85px;
        object-fit: contain;
    }
    
    .navbar.scrolled .logo-img {
        height: 75px;
    }
    
    .footer-logo img {
        height: 95px;
        object-fit: contain;
    }
    
    .tvc-badge {
        height: 95px;
        object-fit: contain;
    }
    
    .loading-logo {
        width: 140px;
        height: auto;
        margin-bottom: 25px;
        object-fit: contain;
    }
    
    .loading-content {
        width: 90%;
        max-width: 380px;
    }
    
    .loading-spinner {
        width: 70px;
        height: 70px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .map-buttons {
        justify-content: center;
    }
    
    .map-btn {
        flex: 1;
        min-width: 100px;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .map-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    /* Prevent horizontal overflow */
    * {
        max-width: 100vw;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    /* Ensure mobile menu is fully visible */
    .nav-menu {
        padding-bottom: 60px !important;
        max-height: calc(100vh - 70px) !important;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    /* Hero Section Mobile */
    .hero {
        overflow: hidden;
        width: 100%;
    }
    
    .hero-content {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    /* Navigation Logo - Proper sizing for mobile */
    .logo-img {
        height: 80px;
        max-width: 190px;
        object-fit: contain;
    }
    
    .navbar.scrolled .logo-img {
        height: 70px;
    }
    
    /* Footer Logo - Better proportion */
    .footer-logo img {
        height: 90px;
        max-width: 210px;
        object-fit: contain;
    }
    
    
    .tvc-badge {
        height: 90px;
        max-width: 210px;
        object-fit: contain;
    }
    
    .veteran-badge-text {
        font-size: 0.85rem;
    }
    
    /* Loading Screen Mobile Optimization */
    .loading-content {
        padding: 20px;
        width: 90%;
        max-width: 320px;
    }
    
    .loading-logo {
        width: 130px;
        height: auto;
        margin-bottom: 25px;
        object-fit: contain;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .loading-text {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .loading-bar {
        max-width: 180px;
    }
    
    /* Delivery logos */
    .delivery-logo img {
        max-height: 60px;
        max-width: 150px;
    }
    
    /* Info items */
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-item i {
        width: auto;
    }
    
    /* Map buttons */
    .map-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* Social cards - prevent overflow */
    .social-grid {
        padding: 0 10px;
        gap: 20px;
    }
    
    .social-card {
        padding: 20px 15px;
    }
    
    /* Products - prevent overflow */
    .product-card {
        padding: 30px 20px;
    }
    
    /* Values items */
    .value-item {
        padding: 15px;
        gap: 15px;
    }
    
    /* Special offer box */
    .special-offer {
        margin: 20px 10px;
    }
    
    /* Footer mobile adjustments */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-menu-section {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .footer-menu-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-menu-links {
        gap: 10px;
    }
    
    .footer-menu-links a {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .military-values {
        grid-template-columns: repeat(2, 1fr);
    }
}