/* ==========================================================================
   1. GLOBAL RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    font-family: 'Inter', Arial, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   2. NAVIGATION (PC STABLE)
   ========================================================================== */
.main-nav {
    background: linear-gradient(to right, #000000 0%, #ffffff 100%);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: visible !important;
}

.nav-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Fixed the 'eight' typo here */
    position: relative;
    z-index: 10;
}

.brand-name {
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.header-logo {
    height: 180px;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20%);
    z-index: 1100;
    filter: drop-shadow(0px 6px 8px rgba(0,0,0,0.4));
    pointer-events: none !important; /* Click through to burger */
}

.nav-right {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-right a {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-cta {
    background: #ff000d;
    color: #ffffff !important;
    padding: 8px 15px;
    border-radius: 4px;
}

/* Burger Menu Stripes */
.menu-toggle {
    display: none; /* Hidden on PC */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
	pointer-events: auto !important; /* Forces this specific button to be touchable */
    padding: 2px; /* Gives you a much larger 'hit area' for your thumb */
    margin-top: -2px; /* Centers it vertically if it looks too high */
  
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ff000d; /* White stripes for contrast */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   3. HERO SECTION & ANIMATION
   ========================================================================== */
.hero-slider-container {
    position: relative;
    height: 85vh;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 20;
    pointer-events: none;
}

.hero-content { pointer-events: auto; }

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    animation: fadeInOut 6s ease-in-out infinite; 
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    15% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.highlight {
    color: #e30613 !important;
    text-shadow: 1px 1px 0px #ffffff;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 20px auto;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-red, .btn-outline {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn-red { background: #e30613; color: #ffffff !important; }
.btn-outline { border: 2px solid #ffffff; color: #ffffff !important; }

/* Swiper Engine */
.swiper, .swiper-slide, .slide-img { width: 100%; height: 100%; }
.slide-img { background-size: cover; background-position: center center; }

/* ==========================================================================
   4. SECTIONS & FORMS
   ========================================================================== */
.container { max-width: 1200px; margin: auto; padding: 80px 20px; }
.about-section { background: #ffffff; color: #000000; text-align: center; }
.services-section { background: #000000; color: #ffffff; }

/* Special 3-column layout for Date/Option/Days */
.three-cols {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 15px;
}

/* On Mobile, stack them back to 1 column so they don't get squashed */
@media (max-width: 600px) {
    .three-cols {
        grid-template-columns: 1fr !important;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    margin-top: 40px;
	text-align: center;
}

.card-icon {
    font-size: 4rem; /* Now significantly larger than before */
    margin-bottom: 15px;
    display: block; /* Ensures the icon has its own full row */
    text-align: center;
    line-height: 1;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3)); /* Adds depth to the icon */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Makes the icon 'bounce' slightly when the user hovers over the card */
.service-card:hover .card-icon {
    transform: translateY(-10px) scale(1.15);
}

.booking-section { background: #f4f4f4; color: #000000; }
#skipBookingForm {
    background: #ffffff;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; }
.btn-submit { background: #000000; color: #ffffff; width: 100%; padding: 18px; border: none; font-weight: bold; cursor: pointer; }

/* Contact Us */
.contact-section { 
    background-color: #6d6e6b; 
	padding: 80px 20px;
    z-index: 10;
    pointer-events: auto !important;		
		
}
.contact-info-grid { 
	display: grid; 
	grid-template-columns: 1fr 1fr;
	gap: 50px; 
	
}
.contact-block { background: #919190; padding: 30px; border-left: 8px solid #e30613; }
.team-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 20px; /* Space before the email */
}

.team-member {
    flex: 1;
}

.email-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

/* Custom Checkbox Styling */
.account-toggle-wrapper {
    margin: 15px 0;
    padding: 10px 0;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    color: #333;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ddd;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #e30613; /* VIP Red when checked */
    border-color: #e30613;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Ensure they stack on small phones so the text doesn't overlap */
@media (max-width: 600px) {
    .team-grid {
        flex-direction: column;
        gap: 10px;
    }
}




.client-table { width: 100%; border-collapse: collapse; color: #333; table-layout: auto; }
/* This centers all headings */
.client-table th { 
    background: #383838; 
    color: #fff; 
    padding: 10px 10px; 
    text-align: center; 
    font-size: 16px;
}






footer { 
    background: #000000; 
    padding: 10px 5px; /* Increased padding for a more premium feel */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 4px solid #ff000d; /* Subtle separation from the rest of the site */
}

footer p {
    color: #888888; /* Dimmer text for the copyright so it doesn't fight for attention */
    font-size: 0.9rem;
    margin-bottom: 5px;
}

footer a { 
    color: #e30613; 
    text-decoration: none; 
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff; /* Turns white when hovered to match your theme */
}


/* ==========================================================================
   5. RESPONSIVE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    
    .brand-name {
        display: block; 
        font-size: 0.8rem; 
        width: 100px; 
        line-height: 1.2;
        color: white;
        font-weight: 800;
    }

    .header-logo { height: 150px; transform: translate(-50%, -10%); }

    .nav-right {
        position: fixed;
        right: -100%;
        top: 100px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        height: auto;
        padding: 20px 0;
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        z-index: 1500;
    }

    .nav-right.active { right: 0; }
    .nav-right li { margin: 5px 0; }
    .nav-right a { padding: 8px; font-size: 1.1rem; }

    .hero-content h1 { font-size: 1.8rem !important; padding: 0 10px; }
    .hero-subtitle { font-size: 1.1rem !important; max-width: 90% !important; }
    .hero-slider-container { height: 70vh; }

    .hero-btns { flex-direction: row; gap: 10px; }
    .btn-red, .btn-outline { min-width: 130px; padding: 8px 15px; font-size: 0.75rem; }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .form-row, .contact-info-grid { grid-template-columns: 1fr; }
}

/* Landscape Mode Tweak */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-slider-container { height: 100vh; }
    .hero-content h1 { font-size: 1.5rem !important; }
}

/* ==========================================================================
   6. ADVANCED BOOKING FORM (REVAMPED)
   ========================================================================== */
.size-selector { display: flex; gap: 15px; margin-top: 10px; }

.size-option {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 600;
}

.size-option:hover { background: #f0f0f0; }

.size-option:has(input:checked) {
    border-color: #e30613;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.1);
}

.size-option input[type="radio"] {
    margin-right: 10px;
    accent-color: #e30613;
}

.error-msg {
    font-size: 0.85rem;
    font-weight: bold;
    background: rgba(227, 6, 19, 0.05);
    padding: 10px;
    border-left: 4px solid #e30613;
    border-radius: 4px;
    margin-top: 10px;
}

#weight-note { font-style: italic; transition: all 0.3s ease; }

.price-display {
    background: #000000;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: 25px;
    border-radius: 4px;
    border-bottom: 4px solid #e30613;
}

#display-price { color: #e30613; }

.btn-submit:disabled {
    background: #666 !important;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ==========================================================================
   7. Dashboard Grid
   ========================================================================== */
/* Dashboard Grid */
.skip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
	
}

/* The Skip Card with Robot Light */
.skip-card {
    background: #222;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 5px solid #444; /* Default */
    transition: 0.3s;
}

.skip-number { font-size: 1.2rem; font-weight: 900; color: #fff; }
.skip-size-label { font-size: 0.7rem; color: #888; display: block; }

/* Robot Light Status Colors */
.status-red { border-color: #ff000d; box-shadow: 0 4px 10px rgba(255, 0, 13, 0.2); }
.status-green { border-color: #28a745; }
.status-yellow { border-color: #ffc107; }
.status-black { border-color: #000; opacity: 0.5; }

/* Legend Badges */
.badge { padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; margin-left: 10px; font-weight: bold; }
.badge.red { background: #ff000d; color: white; }
.badge.green { background: #28a745; color: white; }
.badge.yellow { background: #ffc107; color: black; }
.badge.black { background: #000; color: white; }

/* ==========================================================================
   8. UTILITY CLASSES
   ========================================================================== */
.spacer { height: 30px; width: 100%; }

#booking-anchor { scroll-margin-top: 120px; }
<style>
    /* --- ADMIN COMMAND CENTER - VISUAL SYNC --- */
    body { 
        background-color: #000000; 
        padding: 40px 20px; 
        color: #ffffff; 
        font-family: 'Inter', sans-serif; 
    }
    
    .admin-container { 
        max-width: 1100px; 
        margin: auto; 
        background: #c7b9b9; /* The specific grey from your screenshot */
        padding: 40px; 
        border-radius: 12px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        color: #333; /* Dark text for the inside */
    }

    h2 { 
        border-bottom: 3px solid #e30613; 
        padding-bottom: 15px; 
        font-weight: 900; 
        text-transform: uppercase;
        color: #000;
    }

    .inventory-title { margin-top: 30px; font-weight: 700; color: #222; }

    /* Skip Cards Layout */
    .skip-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
        gap: 15px; 
        margin-top: 15px;
    }

    .skip-card {
        background: #383838; /* Dark cards */
        padding: 20px 10px; 
        border-radius: 10px;
        text-align: center; 
        border-bottom: 6px solid #ccc; 
        transition: 0.3s;
    }

    .skip-number { font-size: 1.3rem; font-weight: 900; color: #fff; display: block; }
    .skip-size-label { font-size: 0.7rem; color: #bbb; text-transform: uppercase; }

    /* Robot Light Statuses */
    .status-red { border-bottom-color: #ff000d !important; }
    .status-green { border-bottom-color: #28a745 !important; }
    .status-yellow { border-bottom-color: #ffc107 !important; }
    .status-black { background: #1a1a1a !important; border-bottom-color: #000 !important; }

    /* Legend Badges */
    .badge {
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        margin-right: 5px;
    }

    /* Collapsible Bars */
    .collapsible-header {
        background: #383838; 
        color: #e30613; 
        padding: 15px;
        cursor: pointer; 
        border-radius: 8px; 
        margin-top: 20px;
        font-weight: bold; 
        display: flex; 
        justify-content: space-between;
    }
    
    .collapsible-content { 
        display: none; 
        padding: 20px; 
        background: #fff; 
        border-radius: 0 0 8px 8px; 
        color: #333; 
    }

    /* Tables */
    .client-table { width: 100%; border-collapse: collapse; }
    .client-table th { background: #222; color: #fff; padding: 10px; text-align: left; }
    .client-table td { padding: 10px; border-bottom: 1px solid #eee; }

    .btn-paid { background: #28a745; color: #fff; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; }
    
   