/* --- AGGRESSIVE VIEWPORT LOCK FOR MOBILE SCROLLING BUG --- */
html, body { 
    max-width: 100vw; 
    overflow-x: hidden; 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

/* --- Measuring Tape Scrollbar --- */
::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: #121212; border-left: 2px solid #333; }
::-webkit-scrollbar-thumb { background-color: #FFCC00; background-image: repeating-linear-gradient(transparent, transparent 10px, #000 10px, #000 12px); border-radius: 4px; border: 2px solid #121212; }
::-webkit-scrollbar-thumb:hover { background-color: #ffda33; }

/* --- Core Variables & Reset --- */
:root { --bg-dark: #121212; --bg-card: #1E1E1E; --bg-panel: #252525; --accent-yellow: #FFCC00; --text-main: #F5F5F5; --text-muted: #A0A0A0; --neon-green: #39ff14; --dim-red: #ff3333; }
*, *::before, *::after { box-sizing: border-box; scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Open Sans', sans-serif; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; }
.max-width-container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* Navigation & Glowing Signs */
.main-nav { position: fixed; top: 0; width: 100%; max-width: 100vw; background-color: rgba(18, 18, 18, 0.95); padding: 15px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; border-bottom: 1px solid #333; backdrop-filter: blur(10px); }
.main-nav .logo { display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1002; }
.main-nav .logo h2 { color: var(--accent-yellow); letter-spacing: 2px; margin: 0; line-height: 1; font-size: 1.5rem; }
.brand-logo { height: 55px; width: auto; border-radius: 6px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); border: 2px solid var(--accent-yellow); max-width: 100%; }
.main-nav ul { list-style: none; display: flex; gap: 30px; align-items: center; margin: 0; padding: 0;}
.main-nav a { color: var(--text-main); text-decoration: none; font-weight: 600; transition: 0.3s; }
.main-nav a:hover { color: var(--accent-yellow); }

/* Hamburger Menu Base */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1002; }
.hamburger .bar { width: 30px; height: 3px; background-color: var(--accent-yellow); transition: all 0.3s ease; border-radius: 2px; }

.status-sign { display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-weight: bold; font-size: 0.9rem; letter-spacing: 1px; border: 1px solid #333; padding: 5px 15px; border-radius: 20px; transition: 0.5s; z-index: 1001; }
.small-sign { font-size: 0.75rem; padding: 3px 10px; margin-left: 10px; }
.indicator { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.status-sign.open { color: var(--text-main); border-color: var(--neon-green); text-shadow: 0 0 5px rgba(57, 255, 20, 0.5); box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.1), 0 0 10px rgba(57, 255, 20, 0.2); }
.status-sign.open .indicator { background-color: var(--neon-green); box-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green); }
.status-sign.closed { color: var(--text-muted); border-color: var(--dim-red); opacity: 0.8; }
.status-sign.closed .indicator { background-color: var(--dim-red); box-shadow: 0 0 10px rgba(255, 51, 51, 0.5); }

/* Buttons */
.btn-yellow { background-color: var(--accent-yellow); color: var(--bg-dark) !important; padding: 10px 20px; border-radius: 4px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; }
.btn-yellow:hover { background-color: #e6b800; transform: scale(1.05); }
.btn-outline-yellow { border: 2px solid var(--accent-yellow); color: var(--accent-yellow); padding: 15px 30px; text-decoration: none; font-weight: bold; display: inline-block; cursor: pointer; transition: 0.3s; background: transparent; }
.btn-outline-yellow:hover { background-color: var(--accent-yellow); color: var(--bg-dark); }
.btn-whatsapp { background-color: #25D366; color: white; border: none; padding: 15px 30px; font-weight: bold; border-radius: 4px; cursor: pointer; transition: 0.3s; width: 100%;}
.btn-whatsapp:hover { background-color: #1ebd5a; box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }

/* Hero */
.hero { min-height: 100vh; width: 100vw; max-width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; background-color: var(--bg-dark); background-image: linear-gradient(rgba(255, 204, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 204, 0, 0.05) 1px, transparent 1px); background-size: 30px 30px; animation: gridMove 20s linear infinite; padding-top: 120px; padding-bottom: 50px; }
.hero-content { z-index: 5; background: rgba(18, 18, 18, 0.8); padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid #333; margin-bottom: 40px; width: 90%; max-width: 800px; box-sizing: border-box;}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; color: var(--text-main); word-wrap: break-word;}
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; }
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 300px 300px; } }

/* BRAND ANCHOR LOGO SECTION */
.brand-anchor-wrapper { z-index: 5; text-align: center; padding: 20px; width: 90%; box-sizing: border-box; }
.brand-logo-large { height: 150px; max-width: 100%; object-fit: contain; border: 4px solid var(--accent-yellow); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-radius: 8px; transition: transform 0.4s ease; }
.brand-logo-large:hover { transform: scale(1.05); }
.anchor-text { margin-top: 20px; }
.anchor-text h3 { color: #fff; letter-spacing: 3px; font-size: 1.5rem; margin-bottom: 5px; word-wrap: break-word;}
.anchor-text p { color: var(--accent-yellow); font-family: 'Montserrat'; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem;}

/* Tape */
.animated-divider { width: 100vw; max-width: 100%; height: 15px; background: repeating-linear-gradient(-45deg, var(--accent-yellow), var(--accent-yellow) 20px, #000000 20px, #000000 40px); background-size: 56px 56px; animation: tapeScroll 2s linear infinite; box-shadow: 0 4px 6px rgba(0,0,0,0.5); z-index: 10; position: relative; }
@keyframes tapeScroll { 0% { background-position: 0 0; } 100% { background-position: 56px 0; } }

/* --- ABOUT / COMPANY PROFILE SECTION --- */
.about-module { padding: 100px 50px; width: 100vw; max-width: 100%; box-sizing: border-box; background: linear-gradient(to bottom, #111 0%, #1a1a1a 100%); border-bottom: 1px solid #333;}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Left Side Narrative */
.about-narrative { background: rgba(30, 30, 30, 0.6); backdrop-filter: blur(10px); border: 1px solid #444; border-radius: 12px; padding: 50px; position: relative; box-shadow: 0 15px 35px rgba(0,0,0,0.6); border-left: 4px solid var(--accent-yellow); box-sizing: border-box;}
.eyebrow-text { color: var(--accent-yellow); font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; font-size: 0.85rem; display: block; margin-bottom: 15px;}
.about-narrative h2 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 25px; color: #fff;}
.about-narrative p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.7;}
.signature-stamp { display: flex; align-items: center; gap: 15px; margin-top: 35px; padding-top: 25px; border-top: 1px dashed #555; }
.stamp-icon { font-size: 2.5rem; background: rgba(255,204,0,0.1); padding: 15px; border-radius: 50%; color: var(--accent-yellow); box-shadow: inset 0 0 15px rgba(255,204,0,0.2); flex-shrink: 0;}
.stamp-text { display: flex; flex-direction: column; }
.stamp-text strong { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; color: #fff; letter-spacing: 1px;}
.stamp-text span { color: var(--accent-yellow); font-size: 0.9rem; text-transform: uppercase; font-weight: bold;}

/* Right Side Capabilities Cards */
.about-capabilities { display: flex; flex-direction: column; gap: 25px; }
.capability-card { background: var(--bg-card); border: 1px solid #333; padding: 30px; border-radius: 8px; display: flex; align-items: flex-start; gap: 20px; transition: all 0.4s ease; position: relative; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.4); box-sizing: border-box; width: 100%;}
.capability-card::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: #444; transition: 0.4s ease; }
.capability-card:hover { transform: translateX(10px); background: #222; border-color: #555; box-shadow: 0 10px 25px rgba(0,0,0,0.6);}
.capability-card:hover::before { width: 6px; background: var(--accent-yellow); box-shadow: 0 0 15px var(--accent-yellow); }
.cap-icon { font-size: 2.5rem; background: #111; border: 1px solid #333; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: 0.4s ease; flex-shrink: 0;}
.capability-card:hover .cap-icon { transform: scale(1.1) rotate(-5deg); border-color: var(--accent-yellow); background: rgba(255,204,0,0.1);}
.cap-details h4 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 1px;}
.cap-details p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin: 0;}

/* Galleries & Header */
.gallery-module { padding: 100px 50px; width: 100vw; max-width: 100%; box-sizing: border-box; background-color: var(--bg-card); }
.module-header { text-align: center; margin-bottom: 50px; }
.module-header h2 { color: var(--accent-yellow); font-size: 2.5rem; }

/* FIX: Centered Category Titles */
.category-title { 
    color: var(--text-main); 
    text-align: center; 
    margin: 40px auto 20px auto; 
    border-bottom: 2px solid var(--accent-yellow); 
    display: table; 
    padding-bottom: 5px; 
}

.gear-icon { display: inline-block; color: var(--accent-yellow); font-size: 2rem; vertical-align: middle; margin-right: 10px; animation: spinGear 6s linear infinite; }
@keyframes spinGear { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Base Grid Setup */
.masonry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; width: 100%; }
.grid-item { position: relative; overflow: hidden; border-radius: 8px; height: 250px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.3); background: #000; width: 100%; box-sizing: border-box;}
.grid-item img { width: 100%; height: 100%; object-fit: cover; z-index: 1; position: absolute; top: 0; left: 0;}

/* The Yellow Line Drawing Effect */
.grid-item::before, .grid-item::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-sizing: border-box; z-index: 5; pointer-events: none; }
.grid-item::before { border-top: 4px solid var(--accent-yellow); border-bottom: 4px solid var(--accent-yellow); transform: scaleX(0); transition: transform 0.4s ease-in-out; }
.grid-item::after { border-left: 4px solid var(--accent-yellow); border-right: 4px solid var(--accent-yellow); transform: scaleY(0); transition: transform 0.4s ease-in-out; }
.grid-item:hover::before { transform: scaleX(1); }
.grid-item:hover::after { transform: scaleY(1); }

/* --- The Locked Garage Door Overlay --- */
.garage-door { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; display: flex; flex-direction: column; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s; background-color: #1a1a1a; }
.door-panel { flex: 1; width: 100%; background: linear-gradient(to bottom, #333 0%, #222 90%, #111 100%); border-bottom: 2px solid #050505; border-top: 1px solid #444; box-sizing: border-box; }
.door-handle { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); background: #050505; border: 2px solid var(--text-muted); padding: 8px 20px; border-radius: 6px; color: var(--text-main); font-family: 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase; font-size: 0.95rem; box-shadow: 0 5px 15px rgba(0,0,0,0.9); display: flex; flex-direction: column; align-items: center; gap: 5px; transition: all 0.4s ease; width: 80%; text-align: center; }
.door-handle .lock-icon::before { content: '🔒'; font-size: 1.6rem; }
.grid-item:hover .garage-door { transform: translateY(-20px); box-shadow: 0 20px 40px -10px var(--accent-yellow); }
.grid-item:hover .door-handle { background: var(--accent-yellow); border-color: var(--accent-yellow); color: #000; transform: translateX(-50%) scale(1.05); }
.grid-item:hover .door-handle .lock-icon::before { content: '🔓'; }

/* --- Contact Dashboard --- */
.contact-module { padding: 100px 50px 50px 50px; width: 100vw; max-width: 100%; box-sizing: border-box; background-color: var(--bg-dark); }
.contact-dashboard { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; max-width: 1200px; margin: 0 auto; width: 100%; }
.dashboard-panel { background-color: var(--bg-panel); padding: 40px; border-radius: 12px; border-top: 4px solid var(--accent-yellow); box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: transform 0.3s ease, box-shadow 0.3s ease; box-sizing: border-box; width: 100%;}
.dashboard-panel:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.7); }
.contact-details-block h3 { color: var(--accent-yellow); margin-bottom: 15px; font-size: 1.2rem; }
.contact-details-block p { margin-bottom: 10px; font-size: 1.05rem; }
.trading-hours-block { margin-top: 30px; padding-top: 30px; border-top: 1px solid #444; }
.hours-header { display: flex; align-items: center; margin-bottom: 15px; justify-content: space-between; }
.hours-header h3 { color: var(--accent-yellow); font-size: 1.2rem; margin: 0; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #444; font-size: 0.95rem; color: var(--text-muted); transition: all 0.3s ease; }
.hours-list li:last-child { border-bottom: none; }
.closed-text { color: var(--dim-red); font-weight: bold; }
.hours-list li.today { color: var(--accent-yellow); font-weight: bold; font-size: 1.05rem; text-shadow: 0 0 8px rgba(255, 204, 0, 0.4); border-bottom: 1px dashed var(--accent-yellow); position: relative; }
.hours-list li.today::before { content: '👉'; position: absolute; left: -25px; animation: pulsePoint 1.5s infinite; }
@keyframes pulsePoint { 0% { transform: translateX(0); opacity: 1; } 50% { transform: translateX(5px); opacity: 0.5; } 100% { transform: translateX(0); opacity: 1; } }
.map-container { margin-top: 30px; border-top: 1px solid #444; padding-top: 30px; }
.map-container h3 { color: var(--accent-yellow); font-size: 1.2rem; margin-bottom: 15px; }
.map-container iframe { border-radius: 8px; filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%); box-shadow: 0 5px 15px rgba(0,0,0,0.4); max-width: 100%; }

.spam-filter { text-align: center; }
.captcha-box { display: flex; gap: 15px; align-items: center; margin-top: 20px; justify-content: center;}
.captcha-box input { padding: 10px; background: var(--bg-dark); border: 1px solid #444; color: white; width: 100px; text-align: center; border-radius: 4px; box-sizing: border-box;}
.error-msg { color: #ff4444; margin-top: 10px; text-align: center; }
.hidden { display: none !important; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 10px; animation: fadeIn 1s forwards; width: 100%;}
.email-form { display: flex; flex-direction: column; gap: 15px; }
.email-form input, .email-form textarea { padding: 15px; background: var(--bg-dark); border: 1px solid #444; color: white; width: 100%; border-radius: 4px; box-sizing: border-box;}
.email-form input:focus, .email-form textarea:focus { outline: none; border-color: var(--accent-yellow); box-shadow: 0 0 5px rgba(255, 204, 0, 0.3); }
.whatsapp-direct { text-align: center; padding: 20px; border-left: 1px solid #444; display: flex; flex-direction: column; justify-content: center; gap: 20px;}

.thematic-footer-graphic { margin-top: 40px; display: flex; flex-direction: column; align-items: center; transform-origin: top center; animation: gentleSwing 4s ease-in-out infinite alternate; overflow: hidden; max-width: 100%; }
.chains { display: flex; gap: 150px; height: 30px; }
.chain { width: 4px; background: repeating-linear-gradient(to bottom, #888, #888 4px, #555 4px, #555 8px); }
.hanging-sign { background-color: var(--accent-yellow); color: var(--bg-dark); padding: 10px 25px; border: 3px solid #111; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem; border-radius: 4px; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); text-align: center; max-width: 100%; box-sizing: border-box; }
.hanging-sign .hard-hat { font-size: 1.5rem; flex-shrink: 0;}
@keyframes gentleSwing { 0% { transform: rotate(2deg); } 100% { transform: rotate(-2deg); } }

/* --- LIGHTBOX GALLERY STYLES --- */
.lightbox { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); backdrop-filter: blur(8px); overflow: hidden; }
.close-lightbox { position: absolute; top: 20px; right: 40px; color: var(--accent-yellow); font-size: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; z-index: 10000; }
.close-lightbox:hover { color: #fff; transform: scale(1.1); }
.lightbox-content-wrapper { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; width: 100%; position: relative; }
.lightbox-img { max-width: 90vw; max-height: 80vh; border: 4px solid var(--accent-yellow); border-radius: 8px; box-shadow: 0 10px 30px rgba(255,204,0,0.2); animation: zoomIn 0.4s ease; object-fit: contain; }
.lightbox-controls { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 20px; }
.prev-btn, .next-btn { cursor: pointer; color: var(--text-main); font-size: 30px; font-weight: bold; padding: 10px 20px; border-radius: 4px; transition: 0.3s; background: rgba(255,204,0,0.2); user-select: none; }
.prev-btn:hover, .next-btn:hover { background-color: var(--accent-yellow); color: #000; }
.image-counter { color: var(--accent-yellow); font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: bold; letter-spacing: 2px;}
@keyframes zoomIn { from {transform: scale(0.9); opacity: 0;} to {transform: scale(1); opacity: 1;} }

/* Animations & Footer */
.animate-on-scroll { opacity: 0; transition: 1s all ease-in-out; }
.fade-in { transform: scale(0.95); }
.slide-up { transform: translateY(50px); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0) scale(1); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.site-footer { background-color: #080808; border-top: 4px solid var(--accent-yellow); padding: 60px 20px 30px 20px; text-align: center; position: relative; z-index: 10; width: 100vw; max-width: 100%; box-sizing: border-box; }
.footer-brand h2 { color: var(--accent-yellow); font-size: 2.2rem; letter-spacing: 3px; margin-bottom: 10px; word-wrap: break-word;}
.footer-brand p { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; font-weight: 600;}
.footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px dashed #222; display: flex; flex-direction: column; gap: 10px; align-items: center; font-size: 0.95rem; color: var(--text-muted); }
.suresen-credit a { color: var(--accent-yellow); text-decoration: none; font-weight: bold; letter-spacing: 1px; transition: all 0.3s ease; }
.suresen-credit a:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(255, 204, 0, 0.8); }
.saw-btn { display: none; position: fixed; bottom: 30px; right: 30px; z-index: 99; border: none; outline: none; background-color: var(--bg-card); color: var(--accent-yellow); cursor: pointer; padding: 10px; border-radius: 50%; font-size: 2rem; box-shadow: 0 0 15px rgba(255, 204, 0, 0.3); transition: all 0.3s ease; overflow: hidden; border: 1px solid #333;}
.saw-btn:hover { background-color: var(--accent-yellow); color: var(--bg-dark); box-shadow: 0 0 25px rgba(255, 204, 0, 0.6); }
.saw-blade { display: inline-block; transition: transform 0.1s linear; }
.saw-btn.cutting .saw-blade { animation: rapidSaw 0.1s linear infinite; }
@keyframes rapidSaw { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- AGGRESSIVE MOBILE RESPONSIVE UPDATES (FIXES HORIZONTAL SCROLL) --- */
@media (max-width: 900px) { 
    /* Spacing & Scaling Fixes */
    .about-module, .gallery-module, .contact-module { padding: 60px 15px; }
    .hero-content { padding: 30px 15px; width: 95%; margin-top: 80px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .brand-logo-large { height: 100px; }
    .anchor-text h3 { font-size: 1.2rem; }
    .anchor-text p { font-size: 0.8rem; }
    .module-header h2 { font-size: 1.8rem; }
    .eyebrow-text { font-size: 0.75rem; }
    .about-narrative h2 { font-size: 1.8rem; }

    /* Grid Stacking & Width Locking */
    .about-grid { grid-template-columns: 1fr; gap: 30px; width: 100%;} 
    .about-narrative { padding: 30px 15px; width: 100%; box-sizing: border-box; } 
    .contact-dashboard { grid-template-columns: 1fr; width: 100%;} 
    .contact-grid { grid-template-columns: 1fr; gap: 20px; width: 100%; } 
    .whatsapp-direct { border-left: none; border-top: 1px solid #444; padding-top: 30px; } 
    .masonry-grid { grid-template-columns: 1fr; gap: 15px; width: 100%; } /* Forces columns to stack perfectly on mobile */
    .dashboard-panel { padding: 30px 15px; width: 100%; box-sizing: border-box; }
    
    /* Capability Cards Stacked to prevent overflow */
    .capability-card { flex-direction: column; align-items: center; text-align: center; padding: 25px 15px; }
    
    /* Contact Form & Graphics Fixes */
    .captcha-box { flex-direction: column; gap: 10px; width: 100%; }
    .chains { gap: 60px; }
    .hanging-sign { font-size: 0.85rem; padding: 10px; width: 100%; justify-content: center;}

    /* Mobile Header & Hamburger */
    .main-nav { padding: 15px 20px; flex-direction: row; }
    .main-nav .logo h2 { font-size: 1.2rem; }
    .brand-logo { height: 40px; } 
    .desktop-only { display: none !important; }
    .hamburger { display: flex; }
    
    #nav-menu { 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 250px; 
        height: 100vh; 
        background-color: rgba(18, 18, 18, 0.98); 
        border-left: 2px solid var(--accent-yellow); 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        transition: 0.4s ease; 
        flex-direction: column; 
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    #nav-menu.active { right: 0; }
    .main-nav ul { flex-direction: column; gap: 40px; }
    
    /* Hamburger Animations */
    .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

@media (max-width: 400px) {
    .hero-content h1 { font-size: 1.6rem; }
    .btn-outline-yellow, .btn-yellow { padding: 12px 20px; width: 100%; margin-bottom: 10px; display: block; box-sizing: border-box; }
    .lightbox-controls { gap: 15px; }
    .prev-btn, .next-btn { padding: 5px 15px; font-size: 20px; }
    .close-lightbox { top: 10px; right: 20px; font-size: 40px; }
    .footer-brand h2 { font-size: 1.6rem; }
}