/*=================================================================*/
/*                      FONTS & GLOBAL SETTINGS
/*=================================================================*/

@font-face {
    font-family: 'Sanchez';
    src: url('../fonts/Sanchez-Regular.ttf') format('truetype');
}

:root {
    --primary-bg-color: #000;
    --primary-text-color: #fff;
    --text-secondary: #F37022;
    --body-bg-color: #000;
    --button-bg-color: #F37022;
    --white: #fff;
    --error-color: #e74c3c;
    --secondary-color: #111;
}

/*=================================================================*/
/*                      RESET & BASE STYLES
/*=================================================================*/

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-bg-color);
    font-family: 'Sanchez', serif;
    color: var(--primary-text-color);
    overflow-x: hidden;
}

/*=================================================================*/
/*                      TYPOGRAPHY
/*=================================================================*/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sanchez', serif;
    font-weight: 700;
    color: var(--primary-text-color);
}

p {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: justify;
}

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

/*=================================================================*/
/*                      BUTTONS
/*=================================================================*/

button {
    border: none;
    border-radius: 7px;
    background: var(--button-bg-color);
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #FF8C4B;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(243, 112, 34, 0.3);
}

button:active {
    background: #D45F1C;
    transform: scale(0.95);
}

/*=================================================================*/
/*                      SCROLLBAR
/*=================================================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF710D;
}

/*=================================================================*/
/*                      NAVBAR
/*=================================================================*/

header {
    position: relative;
    width: 100%;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)); /* Gradient from top to bottom */   
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(6px);
    padding: 10px 20px;
}

.nav-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    width: 50px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    color: var(--text-secondary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.nav-links li a:hover {
    color: #fff;
}

nav.scrolled .nav-links li a {
    color: #fff;
}

nav.scrolled .nav-links li a:hover {
    color: var(--text-secondary);
}

/*=================================================================*/
/*                      HAMBURGER MENU
/*=================================================================*/

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    transition: all 0.3s ease;
}

nav.scrolled .hamburger span {
    background: #fff;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*=================================================================*/
/*                      HERO SECTION
/*=================================================================*/

.about-page-hero-section-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: aboutPageZoomInOut 20s ease-in-out infinite;
}

.about-page-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-page-video-overlay .logo {
    width: 25%;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.about-page-text-container {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.5s forwards;
}

.about-page-hero-h1 {
    font-size: 3.5rem;
    color: var(--white);
}

.about-page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    margin-top: 10px;
}

.button-container {
    display: flex;
    gap: 2rem;
    margin-top: 30px;
}

/*=================================================================*/
/*                      ANIMATIONS
/*=================================================================*/

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/*=================================================================*/
/*                      RESPONSIVE DESIGN
/*=================================================================*/

@media (max-width: 1024px) {
    .nav-container {
        width: 90%;
    }

    .about-page-hero-h1 {
        font-size: 3rem;
    }

    .about-page-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active li a {
        color: #fff;
        font-size: 1.5rem;
    }

    .about-page-hero-h1 {
        font-size: 2.5rem;
    }

    .about-page-hero-subtitle {
        font-size: 1rem;
    }

    .about-page-video-overlay .logo {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        width: 70px;
    }

    .about-page-hero-h1 {
        font-size: 2rem;
    }

    .about-page-hero-subtitle {
        font-size: 0.9rem;
    }

    .about-page-video-overlay .logo {
        width: 40%;
    }

    .button-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/*=================================================================*/
/*                      SERVICES GRID
/*=================================================================*/
.services-wrapper{
    width: 100vw;
    display: flex;
    background-image: url('../menara.jpg');
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.container-services {
    width: 85%;
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 10vh;
}

.container-services h1 {
    font-family: 'Sanchez', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-category {
    background: rgba(20, 20, 20, 0.85);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(243, 112, 34, 0.3);
}

.service-category h3 {
    font-family: 'Sanchez', serif;
    font-size: 1.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.service-category p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.service-info h4 {
    font-family: 'Sanchez', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.service-info p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.service-meta {
    display: flex;
    gap: 1rem;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.service-meta .price::after {
    content: " |";
    margin-left: 0.5rem;
}

.service-item a.btn-small {
    background: var(--text-secondary);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-item a.btn-small:hover {
    background: #FF8C4B;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(243, 112, 34, 0.3);
}

/*=================================================================*/
/*                      RESPONSIVE GRID
/*=================================================================*/

@media (max-width: 1024px) {
    .container-services {
        width: 90%;
    }

    .container-services h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-item a.btn-small {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .container-services h1 {
        font-size: 2rem;
    }

    .service-category {
        padding: 1.5rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 13px;
    }
}

/*=================================================================*/
/*                      BOOKING PROCESS (MATCHED STYLE)
/*=================================================================*/

.booking-wrapper {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url('../menara.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 6rem 0;
}
.form-group{
    margin-bottom: 4rem;
}
/* === Booking Container === */
.booking-container {
    width: 85%;
    max-width: 950px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(243, 112, 34, 0.2);
    transition: all 0.3s ease;
    margin-top: 5vh;
}


.booking-container h1 {
    font-family: 'Sanchez', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

/* === Steps Navigation === */
.booking-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.step {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--text-secondary);
    color: #000;
    transform: scale(1.03);
}

.step.completed {
    background: rgba(243, 112, 34, 0.9);
    color: #fff;
}

.step-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* === Calendar === */
.calendar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(243, 112, 34, 0.2);
    transition: transform 0.3s ease;
}

.calendar-container:hover {
    transform: translateY(-4px);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.calendar-header select,
.calendar-header button {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-header select:hover,
.calendar-header button:hover {
    background: var(--text-secondary);
    color: #000;
}

.calendar-days,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.calendar-days div {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.calendar-grid .day {
    padding: 10px 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-grid .day:hover:not(.disabled):not(.inactive) {
    background: var(--text-secondary);
    color: #000;
    transform: scale(1.05);
}

.calendar-grid .day.selected {
    background: var(--text-secondary);
    color: #000;
}

.calendar-grid .day.disabled,
.calendar-grid .day.inactive {
    opacity: 0.4;
    cursor: not-allowed;
}

/* === Time Slots === */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.time-slot {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.time-slot:hover {
    background: var(--text-secondary);
    color: #000;
    transform: scale(1.05);
}

.time-slot.selected {
    background: var(--text-secondary);
    color: #000;
}

/* === Barbers === */
.barbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.barber-card {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    text-align: center;
    padding: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.barber-card:hover {
    background: var(--text-secondary);
    color: #000;
    transform: translateY(-4px);
}

.barber-card.selected {
    background: var(--text-secondary);
    color: #000;
    box-shadow: 0 6px 20px rgba(243, 112, 34, 0.3);
}

.barber-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 10px;
}

/* === Service Grid === */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.service-card:hover {
    background: var(--text-secondary);
    color: #000;
    transform: scale(1.05);
}

.service-card.selected {
    background: var(--text-secondary);
    color: #000;
}

/* === Summary / Payment === */
.booking-summary,
.payment-info {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.booking-summary h3 {
    font-family: 'Sanchez', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 14px;
}

/* === Buttons === */
.btn {
    background: var(--text-secondary);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn:hover {
    background: #FF8C4B;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(243, 112, 34, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--text-secondary);
    color: #000;
}

/* === Responsive === */
@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        gap: 10px;
    }
    .step {
        width: 100%;
    }
    .booking-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-container h1 {
        font-size: 1.8rem;
    }
    .calendar-grid .day {
        padding: 8px 0;
        font-size: 12px;
    }
    .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}
/* ====================================================== */
/* STEP 4 — CUSTOMER INFORMATION FORM (MATCHED STYLE) */
/* ====================================================== */

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Sanchez', serif;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.25s ease;
    outline: none;
    backdrop-filter: blur(4px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(243, 112, 34, 0.25);
}

/* === Buttons at Bottom === */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.form-actions .btn {
    flex: 1;
    text-align: center;
    font-weight: 700;
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}
/* ====================================================== */
/* BOOKING CONFIRMATION PAGE */
/* Same DNA: dark glass, orange accent, luxury typography */
/* ====================================================== */
.confirmation-wrapper {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url('../menara.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 6rem 0;
}
.confirmation {
    max-width: 650px;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.85);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.confirmation h1 {
    font-family: 'Sanchez', serif;
    font-size: 2.3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.confirmation p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* === Booking Summary Section === */
.booking-summary {
    background: rgba(0, 0, 0, 0);
    border-radius: 15px;
    padding: 1.8rem 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-summary h3 {
    font-family: 'Sanchez', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: rgba(255, 255, 255, 0.85);
}

.summary-item strong {
    color: var(--text-secondary);
}

/* === Payment Info === */
.payment-info {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    font-family: 'Sanchez', serif;
}

/* === Back Button === */
.confirmation .btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    background: var(--text-secondary);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}

.confirmation .btn:hover {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
    .confirmation {
        margin: 6rem 1rem;
        padding: 2rem 1.5rem;
    }

    .confirmation h1 {
        font-size: 1.9rem;
    }

    .booking-summary {
        padding: 1.2rem;
    }

    .summary-item {
        font-size: 0.9rem;
    }
}



/*=================================================================*/
/*                      DASHBOARD STYLES
/*=================================================================*/

.container {
    width: 85%;
    margin: 6rem auto 4rem;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Section Titles */
.section-title {
    font-family: 'Sanchez', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(243, 112, 34, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(243, 112, 34, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Table Container */
.table-container {
    overflow-x: auto;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(243, 112, 34, 0.15);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: #fff;
}

table th,
table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

table th {
    font-family: 'Sanchez', serif;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

table tbody tr:hover {
    background: rgba(243, 112, 34, 0.1);
    transform: scale(1.01);
    transition: all 0.25s ease;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }

    table th, table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        margin: 4rem auto 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    table th, table td {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
}
