
        :root {
            --fire: #FF4500;
            --amber: #FF8C00;
            --white: #F5F0EB;
            --black: #080808;
            --carbon: #111111;
            --steel: #1C1C1E;
            --smoke: #2a2a2a;
            --muted: #888;
            --success: #22c55e;
            --error: #ef4444;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background: var(--black);
            color: var(--white);
            font-family: 'Barlow', sans-serif;
            overflow-x: hidden;
            cursor: none;
        }

        /* ══ CURSOR ══ */
        .cursor {
            width: 12px; height: 12px; background: var(--fire);
            border-radius: 50%; position: fixed; pointer-events: none;
            z-index: 99999; transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s; mix-blend-mode: screen;
        }
        .cursor-ring {
            width: 36px; height: 36px; border: 1.5px solid rgba(255,69,0,0.5);
            border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998;
            transform: translate(-50%, -50%);
            transition: left 0.12s ease, top 0.12s ease, width 0.2s, height 0.2s;
        }

        /* ══ PROGRESS BAR ══ */
        #progress-bar {
            position: fixed; top: 0; left: 0; height: 3px;
            background: linear-gradient(90deg, var(--fire), var(--amber));
            z-index: 9999; width: 0%; transition: width 0.1s;
        }

        /* ══ HEADER ══ */
        header {
            position: fixed; top: 0; width: 100%; height: 75px;
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 5%; z-index: 1000; transition: background 0.5s;
        }
        header.scrolled {
            background: rgba(8,8,8,0.92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255,69,0,0.15);
        }
        .logo {
            font-family: 'Bebas Neue', cursive; font-size: 2rem; letter-spacing: 3px;
            color: var(--white); display: flex; align-items: center; gap: 10px; text-decoration: none;
        }
        .logo span { color: var(--fire); }
        .nav-links { display: flex; gap: 28px; list-style: none; }
        .nav-links a {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.78rem;
            letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,235,0.6);
            text-decoration: none; transition: color 0.3s; position: relative;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -3px; left: 0;
            width: 0; height: 1.5px; background: var(--fire); transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
        .nav-links a.active { color: var(--white); }
        .menu-btn {
            display: flex; align-items: center; gap: 10px;
            background: var(--fire); color: white; border: none; padding: 10px 22px;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem;
            letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
            transition: background 0.3s, transform 0.2s;
        }
        .menu-btn:hover { background: var(--amber); transform: scale(1.04); }
        .menu-btn .hamburger-lines { display: flex; flex-direction: column; gap: 4px; }
        .menu-btn .hamburger-lines div { width: 16px; height: 2px; background: white; border-radius: 1px; }

        /* ══ SIDEBAR ══ */
        .sidebar-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.75);
            backdrop-filter: blur(4px); display: none; z-index: 1500;
        }
        .sidebar-overlay.active { display: block; }
        .sidebar {
            position: fixed; top: 0; right: -350px; width: 320px; height: 100vh;
            background: var(--carbon); z-index: 2000; padding: 0;
            transition: right 0.5s cubic-bezier(0.16,1,0.3,1);
            border-left: 1px solid rgba(255,69,0,0.2);
            display: flex; flex-direction: column; overflow: hidden;
        }
        .sidebar.active { right: 0; }
        .sidebar-top {
            background: var(--fire); padding: 30px 35px;
            display: flex; justify-content: space-between; align-items: center;
        }
        .sidebar-logo { font-family: 'Bebas Neue', cursive; font-size: 1.8rem; letter-spacing: 3px; color: white; }
        .close-btn {
            cursor: pointer; width: 32px; height: 32px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.15); border-radius: 50%; transition: background 0.3s;
        }
        .close-btn:hover { background: rgba(255,255,255,0.3); }
        .close-btn i { color: white; font-size: 1rem; }
        .sidebar-body { padding: 40px 35px; flex: 1; }
        .sidebar-nav { list-style: none; }
        .sidebar-nav li { margin-bottom: 5px; }
        .sidebar-nav a {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem;
            letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,235,0.6);
            text-decoration: none; display: flex; align-items: center; gap: 12px;
            padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
        }
        .sidebar-nav a i { color: var(--fire); width: 18px; font-size: 0.85rem; }
        .sidebar-nav a:hover { color: var(--white); padding-left: 8px; }
        .sidebar-socials {
            padding: 25px 35px 35px; display: flex; gap: 14px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .sidebar-socials a {
            width: 38px; height: 38px; border: 1px solid rgba(255,69,0,0.4);
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; color: var(--fire); text-decoration: none;
            font-size: 0.85rem; transition: all 0.3s;
        }
        .sidebar-socials a:hover { background: var(--fire); color: white; border-color: var(--fire); }

        /* ══ UTILITIES ══ */
        .section-tag {
            font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700;
            letter-spacing: 4px; text-transform: uppercase; color: var(--fire);
            margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
        }
        .section-tag::before { content: ''; width: 30px; height: 2px; background: var(--fire); }
        .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

        /* ══ HERO ══ */
        .contact-hero {
            height: 60vh; min-height: 460px;
            position: relative; display: flex; align-items: flex-end;
            padding: 0 6% 90px; overflow: hidden;
        }
        .contact-hero-bg {
            position: absolute; inset: 0;
            background:
                linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.2) 100%),
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1800') center/cover no-repeat;
        }
        .contact-hero-noise {
            position: absolute; inset: 0; z-index: 1; opacity: 0.28; pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
        }
        .contact-hero-content { position: relative; z-index: 2; }
        .breadcrumb {
            font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600;
            letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,235,0.4);
            margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
            animation: fadeUp 0.7s ease 0.3s both;
        }
        .breadcrumb a { color: var(--fire); text-decoration: none; }
        .breadcrumb i { font-size: 0.55rem; color: rgba(245,240,235,0.3); }
        .contact-hero h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(4rem, 9vw, 8rem);
            line-height: 0.92; letter-spacing: 3px;
            animation: fadeUp 0.7s ease 0.5s both;
        }
        .contact-hero h1 em { font-style: normal; -webkit-text-stroke: 2px var(--fire); color: transparent; }
        .contact-hero p {
            margin-top: 20px; font-size: 1rem; font-weight: 300; line-height: 1.7;
            color: rgba(245,240,235,0.5); max-width: 500px;
            animation: fadeUp 0.7s ease 0.7s both;
        }
        .fog-edge {
            position: absolute; bottom: -30px; left: 0; width: 100%; height: 120px;
            background: radial-gradient(ellipse 80% 100% at 50% 100%, var(--black) 50%, transparent 100%);
            z-index: 3; pointer-events: none;
        }

        /* ══ DIRT EDGE ══ */
        .dirt-edge {
            position: relative; z-index: 2; margin-top: -60px; height: 80px;
            background: var(--carbon);
            clip-path: polygon(0 60%,8% 20%,15% 55%,22% 10%,30% 50%,38% 5%,45% 45%,52% 15%,60% 55%,67% 8%,75% 48%,82% 18%,90% 52%,96% 22%,100% 50%,100% 100%,0 100%);
            pointer-events: none;
        }

        /* ══ INFO CARDS ══ */
        .info-section {
            background: var(--carbon);
            padding: 80px 6% 0;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3px;
        }
        .info-card {
            background: var(--steel);
            padding: 38px 30px;
            position: relative; overflow: hidden;
            transition: all 0.4s;
        }
        .info-card::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 100%; height: 3px; background: var(--fire);
            transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
        }
        .info-card:hover { background: #1e1e1e; transform: translateY(-5px); }
        .info-card:hover::after { transform: scaleX(1); }
        .info-icon {
            width: 48px; height: 48px; background: rgba(255,69,0,0.1);
            border: 1px solid rgba(255,69,0,0.3);
            display: flex; align-items: center; justify-content: center;
            color: var(--fire); font-size: 1.1rem; margin-bottom: 20px;
            clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
        }
        .info-card h4 {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem;
            letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,240,235,0.4);
            margin-bottom: 10px;
        }
        .info-card p {
            font-size: 0.9rem; line-height: 1.6; color: var(--white); font-weight: 500;
        }
        .info-card a { color: var(--white); text-decoration: none; transition: color 0.3s; }
        .info-card a:hover { color: var(--fire); }

        /* ══ MAIN CONTACT SECTION ══ */
        .contact-main {
            background: var(--carbon);
            padding: 80px 6% 120px;
        }
        .contact-layout {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* ── FORM ── */
        .form-wrap {
            background: var(--steel);
            padding: 50px 45px;
            border: 1px solid rgba(255,255,255,0.06);
            position: relative; overflow: hidden;
        }
        .form-wrap::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 3px; height: 100%;
            background: linear-gradient(to bottom, var(--fire), var(--amber));
        }
        .form-title {
            font-family: 'Bebas Neue', cursive; font-size: 2.2rem;
            letter-spacing: 2px; margin-bottom: 8px;
        }
        .form-subtitle {
            font-size: 0.87rem; color: rgba(245,240,235,0.45); margin-bottom: 38px; line-height: 1.6;
        }

        /* form rows */
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
        .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
        .form-group label {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem;
            letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,240,235,0.5);
            display: flex; align-items: center; gap: 6px;
        }
        .form-group label .req { color: var(--fire); }

        /* inputs */
        .form-input, .form-select, .form-textarea {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 13px 18px;
            color: var(--white);
            font-family: 'Barlow', sans-serif; font-size: 0.9rem;
            outline: none; width: 100%;
            clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
            transition: border-color 0.3s, background 0.3s;
        }
        .form-input::placeholder, .form-textarea::placeholder { color: rgba(245,240,235,0.25); }
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            border-color: var(--fire);
            background: rgba(255,69,0,0.04);
        }
        .form-input.error, .form-select.error, .form-textarea.error {
            border-color: var(--error);
        }
        .form-input.success, .form-select.success, .form-textarea.success {
            border-color: var(--success);
        }
        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23FF4500'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }
        .form-select option { background: var(--steel); color: var(--white); }
        .form-textarea { resize: vertical; min-height: 130px; }
        .field-error {
            font-size: 0.72rem; color: var(--error); margin-top: 4px;
            display: flex; align-items: center; gap: 5px; min-height: 18px;
        }
        .field-error i { font-size: 0.65rem; }

        /* character counter */
        .char-counter {
            font-size: 0.7rem; color: var(--muted); text-align: right; margin-top: 4px;
        }
        .char-counter.warn { color: var(--amber); }
        .char-counter.over { color: var(--error); }

        /* rating stars */
        .star-rating { display: flex; gap: 6px; }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 1.4rem; color: rgba(255,255,255,0.2);
            cursor: pointer; transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: rgba(255,255,255,0.2); }
        .star-rating input:checked ~ label { color: rgba(255,255,255,0.2); }
        .star-rating label:hover,
        .star-rating input:checked + label,
        .star-rating label.active { color: var(--amber); }

        /* override for RTL star trick */
        .star-rating { direction: rtl; }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label { color: var(--amber); }

        /* submit button */
        .submit-btn {
            width: 100%; background: var(--fire); color: white; border: none;
            padding: 17px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
            font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
            clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
            transition: background 0.3s, transform 0.2s;
            display: flex; align-items: center; justify-content: center; gap: 12px;
            margin-top: 10px;
        }
        .submit-btn:hover:not(:disabled) { background: var(--amber); transform: translateY(-2px); }
        .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .submit-btn .spinner {
            width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3);
            border-top-color: white; border-radius: 50%;
            animation: spin 0.7s linear infinite; display: none;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* toast notification */
        .toast {
            position: fixed; bottom: 30px; right: 30px; z-index: 9999;
            padding: 16px 24px; min-width: 300px;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
            font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
            display: flex; align-items: center; gap: 12px;
            clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
            transform: translateX(120%); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.5);
        }
        .toast.show { transform: translateX(0); }
        .toast.success-toast { background: var(--success); color: white; }
        .toast.error-toast { background: var(--error); color: white; }
        .toast i { font-size: 1rem; }

        /* ── MAP / RIGHT SIDE ── */
        .contact-right { display: flex; flex-direction: column; gap: 30px; }

        .map-wrap {
            position: relative; overflow: hidden;
            border: 1px solid rgba(255,69,0,0.15);
        }
        .map-wrap iframe {
            width: 100%; height: 320px; display: block;
            filter: grayscale(1) invert(0.85) sepia(0.3) hue-rotate(170deg);
            border: none;
        }
        .map-overlay {
            position: absolute; top: 16px; left: 16px;
            background: var(--fire); padding: 8px 18px;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
            font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: white;
            clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
            display: flex; align-items: center; gap: 8px;
        }

        /* quick links */
        .quick-links {
            background: var(--steel);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 30px;
            position: relative; overflow: hidden;
        }
        .quick-links::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 3px; height: 100%;
            background: linear-gradient(to bottom, var(--fire), transparent);
        }
        .quick-links h4 {
            font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 2px;
            margin-bottom: 20px;
        }
        .quick-link-list { display: flex; flex-direction: column; gap: 0; }
        .quick-link-item {
            display: flex; align-items: center; justify-content: space-between;
            padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
            text-decoration: none; transition: all 0.3s;
        }
        .quick-link-item:last-child { border-bottom: none; }
        .quick-link-item:hover { padding-left: 8px; }
        .quick-link-left { display: flex; align-items: center; gap: 12px; }
        .quick-link-left i { color: var(--fire); width: 16px; font-size: 0.85rem; }
        .quick-link-left span {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
            font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
            color: rgba(245,240,235,0.6); transition: color 0.3s;
        }
        .quick-link-item:hover .quick-link-left span { color: var(--white); }
        .quick-link-arrow { color: rgba(255,69,0,0.4); font-size: 0.7rem; transition: color 0.3s; }
        .quick-link-item:hover .quick-link-arrow { color: var(--fire); }

        /* social row */
        .social-row {
            display: flex; gap: 10px;
        }
        .social-btn {
            flex: 1; padding: 12px 8px;
            display: flex; flex-direction: column; align-items: center; gap: 6px;
            background: var(--steel); border: 1px solid rgba(255,255,255,0.06);
            color: rgba(245,240,235,0.5); text-decoration: none;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
            font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
            transition: all 0.3s;
            clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
        }
        .social-btn i { font-size: 1.1rem; }
        .social-btn:hover { background: var(--fire); color: white; border-color: var(--fire); }

        /* ══ RECORDS / ADMIN PANEL ══ */
        .admin-section {
            background: var(--black);
            padding: 100px 6%;
            border-top: 1px solid rgba(255,69,0,0.1);
        }
        .admin-header {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 40px; flex-wrap: wrap; gap: 20px;
        }
        .admin-header h2 {
            font-family: 'Bebas Neue', cursive; font-size: clamp(2rem,4vw,3.5rem);
            letter-spacing: 2px;
        }
        .admin-header h2 span { color: var(--fire); }
        .admin-controls { display: flex; gap: 12px; flex-wrap: wrap; }
        .admin-btn {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem;
            letter-spacing: 2px; text-transform: uppercase; padding: 10px 22px; border: none;
            cursor: pointer; display: flex; align-items: center; gap: 8px;
            clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
            transition: all 0.3s;
        }
        .admin-btn.primary { background: var(--fire); color: white; }
        .admin-btn.primary:hover { background: var(--amber); }
        .admin-btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(245,240,235,0.6); }
        .admin-btn.ghost:hover { border-color: var(--fire); color: var(--fire); }
        .admin-btn.danger { background: transparent; border: 1px solid rgba(239,68,68,0.4); color: #ef4444; }
        .admin-btn.danger:hover { background: #ef4444; color: white; }

        /* search/filter bar */
        .admin-filter-bar {
            display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; align-items: center;
        }
        .admin-search {
            flex: 1; min-width: 200px;
            background: var(--steel); border: 1px solid rgba(255,255,255,0.1);
            padding: 10px 16px; color: var(--white);
            font-family: 'Barlow', sans-serif; font-size: 0.85rem; outline: none;
            clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
        }
        .admin-search::placeholder { color: rgba(245,240,235,0.3); }
        .admin-search:focus { border-color: var(--fire); }
        .admin-filter-select {
            background: var(--steel); border: 1px solid rgba(255,255,255,0.1);
            padding: 10px 16px; color: var(--white);
            font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem;
            letter-spacing: 1px; text-transform: uppercase; outline: none; cursor: pointer;
            clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
        }
        .admin-filter-select option { background: var(--steel); }
        .admin-filter-select:focus { border-color: var(--fire); }

        /* stats bar */
        .records-stats {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
            margin-bottom: 30px;
        }
        .rec-stat {
            background: var(--steel); padding: 20px 24px; text-align: center;
        }
        .rec-stat-num {
            font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: var(--fire); line-height: 1;
        }
        .rec-stat-label {
            font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem;
            letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,235,0.35);
            margin-top: 4px;
        }

        /* table */
        .table-wrap {
            overflow-x: auto;
            border: 1px solid rgba(255,255,255,0.06);
        }
        table {
            width: 100%; border-collapse: collapse; min-width: 700px;
        }
        thead tr {
            background: var(--steel);
            border-bottom: 2px solid rgba(255,69,0,0.3);
        }
        thead th {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem;
            letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,240,235,0.5);
            padding: 16px 18px; text-align: left; white-space: nowrap; cursor: pointer;
            transition: color 0.3s; user-select: none;
        }
        thead th:hover { color: var(--fire); }
        thead th i { margin-left: 5px; font-size: 0.6rem; opacity: 0.5; }
        tbody tr {
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: background 0.2s;
        }
        tbody tr:hover { background: rgba(255,69,0,0.04); }
        tbody td {
            padding: 14px 18px; font-size: 0.84rem; color: rgba(245,240,235,0.7);
            vertical-align: top;
        }
        .td-name { font-weight: 600; color: var(--white); }
        .td-email a { color: var(--fire); text-decoration: none; }
        .td-email a:hover { text-decoration: underline; }
        .badge {
            display: inline-block; padding: 3px 12px;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
            font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
            clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
        }
        .badge-hire    { background: rgba(255,69,0,0.15);  color: var(--fire); }
        .badge-tour    { background: rgba(34,197,94,0.15); color: #22c55e; }
        .badge-repair  { background: rgba(59,130,246,0.15);color: #60a5fa; }
        .badge-general { background: rgba(168,85,247,0.15);color: #c084fc; }
        .badge-event   { background: rgba(234,179,8,0.15); color: #fbbf24; }
        .stars-display { color: var(--amber); font-size: 0.75rem; letter-spacing: 1px; }
        .td-actions { display: flex; gap: 8px; }
        .act-btn {
            width: 28px; height: 28px; border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; transition: all 0.2s;
            clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
        }
        .act-view   { background: rgba(255,69,0,0.15);  color: var(--fire); }
        .act-delete { background: rgba(239,68,68,0.15); color: #ef4444; }
        .act-view:hover   { background: var(--fire); color: white; }
        .act-delete:hover { background: #ef4444; color: white; }

        /* empty state */
        .empty-state {
            text-align: center; padding: 80px 20px;
            color: rgba(245,240,235,0.3);
        }
        .empty-state i { font-size: 3rem; margin-bottom: 16px; color: rgba(255,69,0,0.2); }
        .empty-state p { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; }

        /* pagination */
        .pagination {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 0; flex-wrap: wrap; gap: 12px;
        }
        .pagination-info { font-size: 0.78rem; color: var(--muted); }
        .pagination-btns { display: flex; gap: 6px; }
        .pag-btn {
            width: 34px; height: 34px; background: var(--steel);
            border: 1px solid rgba(255,255,255,0.08); color: rgba(245,240,235,0.5);
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem;
            transition: all 0.3s;
            clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
        }
        .pag-btn:hover, .pag-btn.active { background: var(--fire); border-color: var(--fire); color: white; }
        .pag-btn:disabled { opacity: 0.3; cursor: not-allowed; }

        /* detail modal */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.8);
            backdrop-filter: blur(6px); z-index: 9000; display: none;
            align-items: center; justify-content: center; padding: 20px;
        }
        .modal-overlay.open { display: flex; }
        .modal {
            background: var(--carbon); max-width: 560px; width: 100%;
            border: 1px solid rgba(255,69,0,0.2); padding: 0;
            position: relative; max-height: 90vh; overflow-y: auto;
        }
        .modal-header {
            background: var(--fire); padding: 24px 30px;
            display: flex; justify-content: space-between; align-items: center;
        }
        .modal-header h3 { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; letter-spacing: 2px; }
        .modal-close { cursor: pointer; background: rgba(255,255,255,0.15); border: none; width: 30px; height: 30px; border-radius: 50%; color: white; font-size: 0.9rem; }
        .modal-body { padding: 30px; }
        .modal-row {
            display: flex; gap: 10px; margin-bottom: 18px; align-items: flex-start;
            padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .modal-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .modal-row i { color: var(--fire); width: 18px; margin-top: 2px; font-size: 0.85rem; }
        .modal-label {
            font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem;
            letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
        }
        .modal-value { font-size: 0.88rem; color: rgba(245,240,235,0.8); line-height: 1.6; }

        /* ══ CTA ══ */
        .cta-band {
            background: var(--fire); padding: 80px 6%;
            display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap;
        }
        .cta-band h2 {
            font-family: 'Bebas Neue', cursive; font-size: clamp(2rem,4vw,3.5rem);
            color: white; letter-spacing: 2px;
        }
        .cta-band p { color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 0.95rem; }
        .btn-white {
            background: white; color: var(--fire); padding: 16px 40px;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem;
            letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer;
            clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
            transition: all 0.3s; white-space: nowrap; flex-shrink: 0; text-decoration: none;
            display: inline-flex; align-items: center; gap: 10px;
        }
        .btn-white:hover { background: var(--black); color: white; }

        /* ══ FOOTER ══ */
        footer {
            background: var(--carbon); border-top: 1px solid rgba(255,69,0,0.2); padding: 80px 6% 0;
        }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px;
            padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07);
        }
        .footer-brand .logo { margin-bottom: 20px; }
        .footer-brand p { font-size: 0.88rem; color: rgba(245,240,235,0.45); line-height: 1.7; margin-bottom: 28px; max-width: 280px; }
        .footer-socials { display: flex; gap: 10px; }
        .footer-socials a {
            width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12);
            display: flex; align-items: center; justify-content: center;
            color: rgba(245,240,235,0.5); text-decoration: none; font-size: 0.85rem; transition: all 0.3s;
            clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
        }
        .footer-socials a:hover { background: var(--fire); border-color: var(--fire); color: white; }
        .footer-col h5 {
            font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem;
            letter-spacing: 3px; text-transform: uppercase; color: var(--fire); margin-bottom: 24px;
        }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul a { font-size: 0.87rem; color: rgba(245,240,235,0.45); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
        .footer-col ul a i { font-size: 0.65rem; color: var(--fire); opacity: 0; transition: opacity 0.3s; }
        .footer-col ul a:hover { color: var(--white); }
        .footer-col ul a:hover i { opacity: 1; }
        .footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
        .footer-contact-item i { color: var(--fire); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
        .footer-contact-item span { font-size: 0.85rem; color: rgba(245,240,235,0.45); line-height: 1.5; }
        .footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .footer-bottom p { font-size: 0.77rem; color: rgba(245,240,235,0.25); }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { font-size: 0.77rem; color: rgba(245,240,235,0.25); text-decoration: none; transition: color 0.3s; }
        .footer-bottom-links a:hover { color: var(--fire); }

        /* ══ RESPONSIVE ══ */
        @media (max-width: 1100px) { .nav-links { display: none; } }
        @media (max-width: 960px) {
            .info-grid { grid-template-columns: 1fr 1fr; }
            .contact-layout { grid-template-columns: 1fr; }
            .records-stats { grid-template-columns: repeat(2,1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .cta-band { justify-content: center; text-align: center; }
        }
        @media (max-width: 640px) {
            .info-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .social-row { flex-wrap: wrap; }
            .records-stats { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .admin-header { flex-direction: column; align-items: flex-start; }
            .toast { min-width: unset; right: 15px; left: 15px; }
        }
  