/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --secondary-color: #1f2937;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --gradient-1: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --gradient-2: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(220, 38, 38, 0.15);
    border-bottom: 3px solid rgba(220, 38, 38, 0.8);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 6px 40px rgba(220, 38, 38, 0.2);
    border-bottom: 3px solid rgba(220, 38, 38, 1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-bubble {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(8, 145, 178, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(3deg); }
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.nav-link:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.92) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.highlight {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8), 0 0 60px rgba(220, 38, 38, 0.5);
}

.hero-location {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 1.2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Section Styles ===== */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== Services Section ===== */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-details {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.service-details li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #f1f5f9;
}

.service-details li:last-child {
    border-bottom: none;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

/* ===== Facility Showcase ===== */
.facility-showcase {
    background: var(--light-bg);
    padding: 0;
    overflow: hidden;
}

.showcase-image {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}

.showcase-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.badge-icon {
    font-size: 1.8rem;
}

/* ===== Features Section ===== */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
}

/* ===== Instructions Section ===== */
.instructions-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.instructions-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-top: 3rem;
}

.instructions-main {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.instruction-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.instruction-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.step-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.instructions-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.info-box h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.pricing-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-light);
}

.pricing-box .token-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.pricing-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(8, 145, 178, 0.1);
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.minimum-note {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.restart-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.add-time-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.add-time-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.add-time-info p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

.restart-warning-box {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: 4px solid #7f1d1d;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.6),
                0 0 30px rgba(220, 38, 38, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
    animation: pulse-warning 2s ease-in-out infinite;
    text-align: center;
    padding: 2.5rem !important;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.6),
                    0 0 30px rgba(220, 38, 38, 0.4),
                    inset 0 2px 10px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 50px rgba(220, 38, 38, 0.8),
                    0 0 40px rgba(220, 38, 38, 0.6),
                    inset 0 2px 10px rgba(255, 255, 255, 0.3);
        transform: scale(1.02);
    }
}

.restart-warning-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.restart-warning-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--accent-color);
}

.warning-box h3 {
    color: #92400e;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 0.75rem 0;
    color: #78350f;
    line-height: 1.6;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list strong {
    color: #b45309;
    font-weight: 700;
}

.products-box {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border: 2px solid #a855f7;
}

.products-box h3 {
    color: #6b21a8;
}

.products-box p {
    color: #7c3aed;
    font-weight: 500;
}

.disclaimer-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
}

.disclaimer-box h3 {
    color: #991b1b;
}

.disclaimer-box p {
    color: #b91c1c;
    font-weight: 600;
    line-height: 1.6;
}

/* Facility Entrance Image */
.facility-image-container {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.facility-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.facility-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid rgba(220, 38, 38, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
}

.facility-image-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.5);
}

.facility-image {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.facility-image-item:hover .facility-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.facility-entrance-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 700px;
    object-fit: cover;
    object-position: center;
}

.add-time-notice {
    background: var(--gradient-1);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
}

.add-time-notice h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.add-time-notice p {
    font-size: 1.1rem;
}

/* ===== Products Section ===== */
.products-section {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.products-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.products-subsection {
    margin-bottom: 5rem;
}

.products-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.subsection-description {
    text-align: center;
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 3rem;
}

.vending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vending-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.vending-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.5), 
                0 0 40px rgba(220, 38, 38, 0.3);
}

.vending-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid rgba(220, 38, 38, 0.4);
    transition: all 0.4s ease;
}

.vending-item:hover .vending-image-wrapper {
    border-color: var(--primary-color);
    box-shadow: inset 0 0 30px rgba(220, 38, 38, 0.2);
}

.vending-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.85) contrast(1.1);
}

.vending-item:hover .vending-image {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

.vending-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.8) 50%,
                rgba(0, 0, 0, 0) 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.vending-item:hover .vending-overlay {
    background: linear-gradient(to top, 
                rgba(220, 38, 38, 0.95) 0%,
                rgba(220, 38, 38, 0.7) 50%,
                rgba(0, 0, 0, 0.3) 100%);
    padding-bottom: 2rem;
}

.vending-label {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.vending-item:hover .vending-label {
    transform: translateY(-5px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.5);
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.product-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.5), 
                0 0 40px rgba(220, 38, 38, 0.3);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid rgba(220, 38, 38, 0.4);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #1f2937, #111827);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-item:hover .product-image-wrapper {
    border-color: var(--primary-color);
    box-shadow: inset 0 0 30px rgba(220, 38, 38, 0.2),
                0 0 50px rgba(220, 38, 38, 0.4);
}

.product-image {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.5s ease;
    filter: brightness(0.95) contrast(1.1) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transform: scale(1.1);
}

.product-item:hover .product-image {
    transform: scale(1.2);
    filter: brightness(1.05) contrast(1.2) drop-shadow(0 15px 40px rgba(220, 38, 38, 0.4));
}

.product-placeholder {
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 12px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.product-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* Cash Only Banner */
.cash-only-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    border: 3px solid var(--white);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(220, 38, 38, 0.8), 0 0 20px rgba(220, 38, 38, 0.6);
    }
}

/* ===== Why Us Section - Completely Rebuilt ===== */
.why-us-section {
    background: linear-gradient(180deg, #1f2937 0%, #374151 30%, #4b5563 60%, #6b7280 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: pulseGlow 20s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(5deg); }
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

/* Header Styling */
.why-us-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-us-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6); }
}

.why-us-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.why-us-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Card Styling */
.why-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.why-card:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.why-card-icon-wrapper {
    position: relative;
    padding: 3rem 3rem 1rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-card-icon {
    font-size: 5rem;
    position: relative;
    z-index: 2;
    animation: floatIcon 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-8deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(8deg); }
}

.why-card:hover .why-card-icon {
    animation: spinScale 0.8s ease;
    transform: scale(1.2);
}

@keyframes spinScale {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1.2) rotate(360deg); }
}

.icon-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.security-glow { background: #dc2626; }
.lighting-glow { background: #ef4444; }
.vehicle-glow { background: #dc2626; }
.equipment-glow { background: #991b1b; }
.products-glow { background: #ef4444; }
.vending-glow { background: #dc2626; }

/* Card Content */
.why-card-content {
    padding: 0 3rem 3rem 3rem;
}

.why-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.why-card strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.why-us-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 800;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

/* ===== Service Details ===== */
.service-details strong {
    color: var(--primary-color);
}

.special-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(8, 145, 178, 0.05), var(--white));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    margin: 1rem 0;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-detail {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-note {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}



/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}



/* ===== Touch Device Optimization ===== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for mobile devices */
    button,
    .cta-button,
    .cta-button-gold,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a {
        padding: 1.2rem 2rem;
    }

    /* Remove hover effects on touch devices */
    .why-card:hover {
        transform: translateY(0);
    }

    .nav-menu a:hover {
        transform: translateX(0);
    }

    /* Improve scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== Responsive Design ===== */
/* Tablets and Large Mobile (Portrait) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 90%;
    }

    .hero {
        height: 65vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    section {
        padding: 4rem 2rem;
    }
}
@media (max-width: 768px) {
    /* Enhanced Mobile Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
        padding: 0.5rem;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.98) 0%, rgba(31, 41, 55, 0.98) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(15px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.75rem 0;
        padding: 0 1rem;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        border-radius: 12px;
        transition: all 0.3s ease;
        color: white;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }

    /* Optimized Hero Section */
    .hero {
        height: 75vh;
        min-height: 550px;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        margin-bottom: 0.75rem;
        line-height: 1.15;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }

    .hero-location {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        padding: 0 1rem;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }

    .hero-contact-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        width: 90%;
        max-width: 300px;
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .contact-icon {
        font-size: 1rem;
        flex-shrink: 0;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    /* Facility Image Mobile */
    .facility-image-container {
        margin: 2.5rem 0 0;
    }

    .facility-image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-image {
        height: 350px;
    }

    .facility-entrance-image {
        max-height: 500px;
    }

    /* Perfect Section Spacing */
    section {
        padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }

    /* Instructions Section Mobile */
    .instructions-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instructions-main,
    .instructions-sidebar {
        width: 100%;
    }

    .instruction-step {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .step-content {
        flex: 1;
    }

    .step-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Info Boxes Mobile */
    .info-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .restart-warning-box {
        padding: 2rem !important;
    }

    .restart-warning-box h3 {
        font-size: 1.4rem;
    }

    .restart-warning-text {
        font-size: 1.2rem;
    }

    .info-box h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .info-box p,
    .info-box ul {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .info-box ul li {
        padding: 0.6rem 0;
        line-height: 1.5;
    }

    .info-box strong {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .add-time-notice {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .add-time-notice h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .add-time-notice p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Premium Why Us Section Mobile */
    .why-us-section {
        padding: 4rem 1rem;
    }

    .why-us-title {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .why-us-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 1rem;
        max-width: 100%;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        padding: 0;
    }

    .why-card {
        min-height: auto;
        border-radius: 16px;
    }

    .why-card-icon {
        font-size: 3.5rem;
    }

    .why-card-icon-wrapper {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .why-card-content {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .why-card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .why-card-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .feature-tags {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .feature-tag {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* CTA Section Mobile */
    .why-us-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-radius: 16px;
        margin-top: 3rem;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .cta-button-gold {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
    }

    /* Pricing Section Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .pricing-card h3 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .pricing-card .price {
        font-size: 2rem;
        margin: 1rem 0;
    }

    .pricing-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .pricing-card ul {
        margin-top: 1.5rem;
    }

    .pricing-card ul li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Contact Section Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 16px;
    }

    .contact-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .contact-card p {
        font-size: 1rem;
        word-break: break-word;
        line-height: 1.6;
    }

    .contact-card a {
        font-size: 1rem;
        display: inline-block;
        padding: 0.75rem 2rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        width: auto;
        max-width: 100%;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section {
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .footer-section ul li {
        margin: 0.5rem 0;
    }

    .social-icons {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-icons a {
        font-size: 1.3rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.9rem;
    }

    /* Showcase Badge Mobile */
    .showcase-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    /* Prevent Horizontal Scroll */
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    /* Products Section Mobile */
    .products-title {
        font-size: 2.5rem;
    }

    .products-subtitle {
        font-size: 1rem;
    }

    .subsection-title {
        font-size: 2rem;
    }

    .vending-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vending-image-wrapper {
        height: 350px;
    }

    .vending-label {
        font-size: 1.2rem;
    }

    .product-image-wrapper {
        height: 300px;
        padding: 1rem;
    }

    .cash-only-banner {
        font-size: 1.2rem;
        padding: 1.25rem 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Smaller Hero for Very Small Screens */
    .hero {
        height: 65vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
        margin-bottom: 0.6rem;
        padding: 0 0.75rem;
    }

    .hero-location {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0 0.75rem;
    }

    .hero-contact-info {
        gap: 0.6rem;
    }

    .hero-contact-item {
        font-size: 0.8rem;
        padding: 0.55rem 0.9rem;
        max-width: 280px;
        width: 95%;
    }

    .contact-icon {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        padding: 0 0.75rem;
        gap: 0.6rem;
    }

    .cta-button {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        max-width: 270px;
    }

    /* Compact Facility Image */
    .facility-image-container {
        margin: 2rem 0 0;
    }

    .facility-image-grid {
        gap: 1rem;
    }

    .facility-image {
        height: 280px;
    }

    .facility-entrance-image {
        max-height: 400px;
    }

    /* Compact Sections */
    section {
        padding: 2.5rem 0.75rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Compact Instructions */
    .instruction-step {
        padding: 1.25rem;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }

    .step-content h3 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .info-box {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .restart-warning-box {
        padding: 1.75rem !important;
    }

    .restart-warning-box h3 {
        font-size: 1.2rem;
    }

    .restart-warning-text {
        font-size: 1.05rem;
    }

    .info-box h3 {
        font-size: 1.05rem;
    }

    .info-box p,
    .info-box ul li {
        font-size: 0.9rem;
    }

    /* Compact Why Us Section */
    .why-us-section {
        padding: 3rem 0.75rem;
    }

    .why-us-title {
        font-size: 1.9rem;
    }

    .why-us-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .why-us-grid {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .why-card-icon {
        font-size: 3rem;
    }

    .why-card-icon-wrapper {
        padding: 1.75rem 1.25rem 0.75rem 1.25rem;
    }

    .why-card-content {
        padding: 0 1.25rem 1.75rem 1.25rem;
    }

    .why-card-content h3 {
        font-size: 1.25rem;
    }

    .why-card-content p {
        font-size: 0.9rem;
    }

    .feature-tags {
        gap: 0.4rem;
        padding: 0.5rem 0.75rem;
    }

    .feature-tag {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }

    /* Compact CTA */
    .why-us-cta {
        padding: 1.75rem 1.25rem;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-button-gold {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        max-width: 280px;
    }

    /* Compact Pricing */
    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
    }

    .pricing-card .price {
        font-size: 1.75rem;
    }

    .pricing-card p,
    .pricing-card ul li {
        font-size: 0.9rem;
    }

    /* Compact Contact */
    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-card i {
        font-size: 2.2rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p,
    .contact-card a {
        font-size: 0.95rem;
    }

    .contact-card a {
        padding: 0.65rem 1.5rem;
    }

    /* Compact Footer */
    .footer-content {
        gap: 2rem;
    }

    .footer-section {
        padding: 0 0.75rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    /* Compact Badges */
    .showcase-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .badge-icon {
        font-size: 1.3rem;
    }

    /* Navigation Adjustments */
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
    }

    .nav-menu a {
        padding: 0.85rem 1.5rem;
        font-size: 1.05rem;
    }

    /* Products Section Small Mobile */
    .products-title {
        font-size: 2rem;
    }

    .subsection-title {
        font-size: 1.6rem;
    }

    .subsection-description {
        font-size: 0.95rem;
    }

    .vending-image-wrapper {
        height: 300px;
    }

    .vending-label {
        font-size: 1.1rem;
        padding: 1.5rem 1rem;
    }

    .vending-grid {
        gap: 1.25rem;
    }

    .product-image-wrapper {
        height: 250px;
        padding: 0.75rem;
    }

    .products-grid {
        gap: 1.25rem;
    }

    .product-placeholder {
        padding: 3rem 1.5rem;
        min-height: 200px;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .product-placeholder p {
        font-size: 1rem;
    }

    .cash-only-banner {
        font-size: 1rem;
        padding: 1rem 1rem;
    }
}
