/* Base Styles & Variables */
:root {
    --primary-color: #C5A059; /* Gold */
    --primary-hover: #b08d48;
    --bg-dark: #111111; /* Deep Black */
    --bg-darker: #080808;
    --bg-card: #181818;
    --bg-card-hover: #222222;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark: #000000;
    --border-color: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 20px rgba(197, 160, 89, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 1vw + 10px, 16px);
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: clamp(60px, 8vw, 100px) 0; }
.bg-darker { background-color: var(--bg-darker); }
.text-center { text-align: center; }
.text-small { font-size: 0.8rem; }
.gold-text { color: var(--primary-color); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.font-weight-bold { font-weight: 700; }
.py-4 { padding: 2rem 0; }

/* Typography */
.section-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: inherit;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-large { padding: 15px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; display: flex; }

/* Pulse Animation for CTA */
.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

@keyframes pulse-small {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(8, 8, 8, 0.95);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; letter-spacing: 1px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

/* Desktop Admin Icon */
.admin-mobile-icon { display: none; }

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
    background-image: url('../images/barber1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Features */
.features {
    padding: clamp(40px, 6vw, 80px) 0;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-card);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-gold);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: var(--text-dark);
}

.feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.feature-card p { color: var(--text-gray); font-size: 1rem; }

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
}

.image-frame img {
    border-radius: 20px;
    box-shadow: -20px 20px 0px rgba(197, 160, 89, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: #000;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 5px solid var(--bg-dark);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-weight: 700;
    font-size: 1.1rem;
}

.about-text p { color: var(--text-gray); margin-bottom: 20px; }

.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.about-feature h4 { font-size: 1.2rem; margin-bottom: 5px; }
.about-feature p { margin: 0; font-size: 0.95rem; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(197, 160, 89, 0.3);
}

.service-img { position: relative; height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.1); }

.service-price {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-content p { color: var(--text-gray); margin-bottom: 25px; flex-grow: 1; }

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-time { color: var(--text-gray); font-size: 0.95rem; display: flex; align-items: center; gap: 5px; }
.service-book {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

.service-book:hover { gap: 10px; }

/* Brands Marquee */
.brands-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-dark);
    padding: 20px 0;
    overflow: hidden;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.brands-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marquee 25s linear infinite;
}

.brands-track span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.brands-track span i {
    font-size: 0.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-dark);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.gallery-item .remove-gallery-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
}

/* Reviews / Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-gold);
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-gray);
    border: 2px solid var(--primary-color);
}

.review-author h4 { font-size: 1.1rem; margin-bottom: 2px; }
.review-author span { font-size: 0.9rem; }

/* Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.booking-info {
    padding: clamp(30px, 5vw, 60px);
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-card));
    border-left: 1px solid var(--border-color);
}

.booking-desc { color: var(--text-gray); margin-bottom: 40px; font-size: 1.1rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; align-items: center; gap: 20px; }

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-item h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-light); }
.contact-item p { color: var(--text-gray); margin: 0; }

.booking-form-container {
    padding: clamp(30px, 5vw, 60px);
}

.form-title { font-size: 1.8rem; margin-bottom: 30px; border-bottom: 2px solid var(--border-color); padding-bottom: 15px; }

.form-group { margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.booking-form label,
.admin-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-light);
}

.required { color: #ff4757; }

.select-wrapper { position: relative; }
.select-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.booking-form input,
.booking-form select,
.admin-form input,
.admin-form select {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
}

.booking-form select,
.admin-form select { padding-left: 40px; }

.booking-form input:focus,
.booking-form select:focus,
.admin-form input:focus,
.admin-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }

/* Footer */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-top { padding: 80px 0 50px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 30px;
}

.brand-col .logo-text { font-size: 2.5rem; }
.footer-desc { color: var(--text-gray); margin: 25px 0; line-height: 1.8; }

.social-links { display: flex; gap: 15px; }
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--bg-card);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: var(--text-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a i { font-size: 0.8rem; color: var(--primary-color); }
.footer-links a:hover { color: var(--primary-color); transform: translateX(-5px); }

.footer-contact li { display: flex; align-items: center; gap: 10px; color: var(--text-gray); margin-bottom: 10px; }
.footer-contact i { color: var(--primary-color); }

.payment-methods p { color: var(--text-gray); margin-bottom: 10px; }
.payment-icons { display: flex; gap: 15px; font-size: 2rem; color: var(--text-gray); }

.footer-bottom {
    background-color: #000;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-bottom-links { display: flex; gap: 15px; }
.footer-bottom-links a { color: var(--text-gray); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-color); }
.separator { color: var(--border-color); }

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.active.reveal-up, .active.reveal-left, .active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* Packages & Pricing Section */
.packages-section {
    background: linear-gradient(145deg, var(--darker-color) 0%, var(--bg-color) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-speed);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-color);
}

.pricing-card.popular {
    border: 2px solid var(--gold-color);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #2a2a2a, var(--card-bg));
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--gold-color), #f9d976);
    color: var(--bg-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.pricing-header .price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.pricing-header .price .currency {
    font-size: 1.2rem;
    margin-top: 5px;
}

.pricing-header .price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold-color);
    font-size: 0.9rem;
}

.pricing-features li.unavailable {
    color: #666;
    text-decoration: line-through;
}

.pricing-features li.unavailable i {
    color: #666;
}

/* VGR Promo Banner */
.vgr-promo-banner {
    background: linear-gradient(135deg, #111, #222);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px auto 50px;
    max-width: 900px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.vgr-promo-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff4d4d);
}

.vgr-promo-content {
    text-align: center;
}

.vgr-promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.vgr-red {
    color: #ff3333;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255,0,0,0.4);
}

.vgr-promo-content p {
    color: var(--light-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.vgr-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.vgr-features span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vgr-features span i {
    color: #ff3333;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-footer .btn {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* Responsive adjustments for floating button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
}

@media (max-width: 992px) {
    .container { max-width: 720px; }
    .hero-title { font-size: clamp(2.5rem, 4vw, 3.5rem); }
    .about-wrapper { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .about-text .section-title::after { right: 50%; transform: translateX(50%); }
    .experience-badge { bottom: -20px; right: 20px; padding: 15px; }
    .booking-wrapper { grid-template-columns: 1fr; border-left: none; }
    .booking-info { border-left: none; border-bottom: 1px solid var(--border-color); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .brand-col { grid-column: span 2; }
}

@media (max-width: 768px) {
    .container { max-width: 540px; padding: 0 20px; }
    
    .navbar .container { padding: 0 10px; }
    .logo-text { font-size: 1.4rem; }
    .nav-actions { gap: 10px; }
    
    .admin-mobile-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background-color: var(--bg-darker);
        border: 1px solid var(--primary-color);
        border-radius: 50%;
        color: var(--primary-color);
        font-size: 1rem;
        transition: var(--transition);
    }
    
    .btn-booking-nav { 
        display: inline-flex; 
        padding: 8px 15px; 
        font-size: 0.9rem; 
        border-radius: 6px;
    }
    
    .mobile-toggle { 
        display: block; 
        z-index: 1000; 
        position: relative; 
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        z-index: 999;
        gap: 20px;
    }
    
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links a::after { display: none; }
    
    .hero { padding-top: 100px; min-height: 100vh; }
    .hero-content { margin-top: 0; width: 100%; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 2.8rem); margin-bottom: 15px; line-height: 1.4; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .hero-stats { flex-direction: column; gap: 20px; padding-top: 20px; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; margin-bottom: 40px; }
    .hero-buttons .btn { width: 100%; padding: 15px; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 30px; }
    .brand-col { grid-column: span 1; }
    .footer-bottom-inner { flex-direction: column; gap: 15px; text-align: center; }
    .section-title { margin-bottom: 15px; font-size: 2rem; }
    .section-padding { padding: 60px 0; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-item { flex-direction: column; align-items: center; text-align: center; }
}

/* Modals */
.custom-modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    align-items: center; justify-content: center; padding: 15px;
}
.custom-modal.active { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid rgba(197,160,89,0.4);
    border-radius: 20px; padding: 35px; width: 100%; max-width: 420px;
    position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    max-height: 95vh; overflow-y: auto;
}

.dashboard-content { max-width: 1050px; padding: 0; border-radius: 20px; overflow: hidden; }

.close-modal {
    position: absolute; top: 15px; left: 20px;
    color: var(--text-gray); font-size: 28px; font-weight: bold;
    cursor: pointer; transition: var(--transition); line-height: 1; z-index: 5;
}
.close-modal:hover { color: var(--primary-color); }

.modal-input {
    width: 100%; padding: 15px; background-color: var(--bg-darker);
    border: 2px solid var(--border-color); border-radius: 10px;
    color: white; font-size: 1.1rem; margin-bottom: 20px;
    text-align: center; letter-spacing: 3px; font-family: inherit;
}
.modal-input:focus { outline: none; border-color: var(--primary-color); }

/* Dashboard Layout */
.dashboard-header {
    background: linear-gradient(135deg, var(--bg-darker), #1a1a1a);
    padding: 20px 25px; border-bottom: 1px solid var(--border-color);
}
.dashboard-header h2 { font-size: 1.5rem; margin-bottom: 15px; }

.admin-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 5px; }
.admin-tabs::-webkit-scrollbar { height: 3px; }
.admin-tabs::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

.tab-btn {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-color);
    color: var(--text-gray); padding: 9px 18px; border-radius: 10px;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
    font-family: inherit; font-size: 0.95rem; font-weight: 600;
}
.tab-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.tab-btn.active { background: var(--primary-color); color: #000; border-color: var(--primary-color); }
.tab-btn i { margin-left: 6px; }

.dashboard-body { padding: 20px 25px; max-height: 70vh; overflow-y: auto; }
.dashboard-body::-webkit-scrollbar { width: 5px; }
.dashboard-body::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

.tab-content { animation: fadeIn 0.25s ease; }

/* ---- Appointments Tab ---- */
.appt-toolbar {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 20px; gap: 15px; flex-wrap: wrap;
}
.appt-toolbar h3 { font-size: 1.2rem; }
.appt-count { color: var(--text-gray); font-size: 0.9rem; margin-top: 3px; }
.appt-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.filter-select {
    background: var(--bg-darker); border: 1px solid var(--border-color);
    color: var(--text-light); padding: 8px 15px; border-radius: 8px;
    font-family: inherit; cursor: pointer;
}

.btn-danger-outline {
    background: transparent; border: 1px solid #ff4757; color: #ff4757;
    padding: 8px 15px; border-radius: 8px; cursor: pointer;
    font-family: inherit; font-weight: 600; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-danger-outline:hover { background: #ff4757; color: white; }

.appointments-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }

.appt-card {
    background: var(--bg-dark); border-radius: 14px; border: 1px solid var(--border-color);
    overflow: hidden; transition: var(--transition);
}
.appt-card:hover { border-color: rgba(197,160,89,0.4); transform: translateY(-2px); }
.appt-card.past { opacity: 0.65; }

.appt-card-header {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 15px; background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border-color);
}
.appt-status-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.appt-status-dot.upcoming { background: #2ed573; box-shadow: 0 0 8px #2ed573; }
.appt-status-dot.past { background: var(--text-gray); }
.appt-status-label { font-size: 0.8rem; color: var(--text-gray); flex: 1; }
.appt-delete-btn {
    background: none; border: none; color: #ff4757; cursor: pointer;
    font-size: 1rem; padding: 3px 6px; border-radius: 5px; transition: var(--transition);
}
.appt-delete-btn:hover { background: rgba(255,71,87,0.15); }

.appt-card-body { padding: 15px; }
.appt-client { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.appt-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(197,160,89,0.15); border: 1px solid rgba(197,160,89,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color); font-size: 1.1rem; flex-shrink: 0;
}
.appt-client strong { display: block; font-size: 1rem; }
.appt-client p { color: var(--text-gray); font-size: 0.85rem; margin: 2px 0 0; }

.appt-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.appt-detail-item { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; color: var(--text-gray); }
.appt-detail-item i { width: 16px; }

.empty-state {
    text-align: center; padding: 50px 20px; color: var(--text-gray);
}
.empty-state i { font-size: 3rem; margin-bottom: 15px; opacity: 0.4; display: block; }

/* ---- Barbers & Services Tab ---- */
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .admin-grid { grid-template-columns: 1fr; } }

.admin-panel-section {
    background: var(--bg-dark); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 20px;
}
.admin-panel-section > h3 { font-size: 1.1rem; margin-bottom: 15px; color: var(--primary-color); }

.admin-add-form { margin-bottom: 15px; display: flex; flex-direction: column; gap: 10px; }
.add-input {
    width: 100%; padding: 11px 15px; background: var(--bg-darker);
    border: 1px solid var(--border-color); border-radius: 8px;
    color: var(--text-light); font-family: inherit; font-size: 0.95rem;
}
.add-input:focus { outline: none; border-color: var(--primary-color); }
.add-form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.add-btn { align-self: flex-start; }

.file-upload-btn {
    display: flex; align-items: center; gap: 10px; padding: 11px 15px;
    background: rgba(197,160,89,0.1); border: 1px dashed rgba(197,160,89,0.5);
    border-radius: 8px; color: var(--primary-color); cursor: pointer;
    font-weight: 600; transition: var(--transition); font-size: 0.95rem;
}
.file-upload-btn:hover { background: rgba(197,160,89,0.2); }

.entity-cards { display: flex; flex-direction: column; gap: 8px; }
.entity-card {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-darker); padding: 12px 15px; border-radius: 10px;
    border: 1px solid var(--border-color); transition: var(--transition);
}
.entity-card:hover { border-color: rgba(197,160,89,0.3); }
.entity-avatar {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.3);
    display: flex; align-items: center; justify-content: center; color: var(--primary-color);
}
.entity-thumb {
    width: 45px; height: 45px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.entity-info { flex: 1; }
.entity-info strong { display: block; font-size: 0.95rem; }
.entity-info span { color: var(--text-gray); font-size: 0.82rem; }
.entity-delete {
    background: none; border: none; color: #ff4757; cursor: pointer;
    padding: 5px 8px; border-radius: 6px; transition: var(--transition); flex-shrink: 0;
}
.entity-delete:hover { background: rgba(255,71,87,0.15); }
.empty-mini { color: var(--text-gray); font-size: 0.9rem; text-align: center; padding: 20px 0; }

/* ---- Images Tab ---- */
.images-admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .images-admin-grid { grid-template-columns: 1fr; } }

.image-upload-section { background: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 14px; padding: 20px; }
.image-upload-section > h3 { font-size: 1.1rem; margin-bottom: 15px; }

.upload-area {
    width: 100%; height: 200px; border: 2px dashed rgba(197,160,89,0.4);
    border-radius: 12px; cursor: pointer; position: relative; overflow: hidden;
    transition: var(--transition); background: var(--bg-darker);
}
.upload-area:hover { border-color: var(--primary-color); background: rgba(197,160,89,0.05); }
.upload-area img { width: 100%; height: 100%; object-fit: cover; }

.upload-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
    color: var(--text-gray); pointer-events: none;
}
.upload-placeholder i { font-size: 2.5rem; color: rgba(197,160,89,0.5); }
.upload-placeholder p { font-size: 0.95rem; }
.upload-placeholder small { font-size: 0.8rem; opacity: 0.6; }

.gallery-upload-drop {
    border: 2px dashed rgba(197,160,89,0.4); border-radius: 12px;
    padding: 25px; text-align: center; cursor: pointer; transition: var(--transition);
    color: var(--text-gray); background: var(--bg-darker); margin-bottom: 15px;
}
.gallery-upload-drop:hover { border-color: var(--primary-color); background: rgba(197,160,89,0.05); }
.gallery-upload-drop i { font-size: 2rem; color: rgba(197,160,89,0.5); display: block; margin-bottom: 8px; }
.gallery-upload-drop p { font-size: 0.95rem; margin-bottom: 4px; }
.gallery-upload-drop small { font-size: 0.8rem; opacity: 0.6; }

.admin-gallery-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
.gallery-thumb { position: relative; }
.gallery-thumb img { width: 100%; height: 80px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-color); }
.gallery-thumb button {
    position: absolute; top: 4px; right: 4px; background: rgba(255,71,87,0.9);
    color: white; border: none; border-radius: 4px; padding: 2px 6px; cursor: pointer; font-size: 0.75rem;
}

/* ---- Hours Tab ---- */
.hours-panel { background: var(--bg-dark); border: 1px solid var(--border-color); border-radius: 14px; padding: 25px; }
.hours-panel > h3 { font-size: 1.2rem; margin-bottom: 20px; }
.hours-label { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 10px; font-weight: 700; }

.days-toggle-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.day-toggle {
    padding: 9px 15px; border-radius: 10px; border: 1px solid var(--border-color);
    background: var(--bg-darker); color: var(--text-gray); cursor: pointer;
    font-family: inherit; font-size: 0.9rem; font-weight: 600; transition: var(--transition);
}
.day-toggle:hover { border-color: var(--primary-color); color: var(--primary-color); }
.day-toggle.active { background: var(--primary-color); color: #000; border-color: var(--primary-color); }

.hours-time-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.hours-block { flex: 1; min-width: 180px; }
.hours-block label { display: block; margin-bottom: 10px; font-weight: 700; font-size: 0.95rem; }

.time-picker-wrapper { display: flex; align-items: center; gap: 8px; }
.time-colon { font-size: 1.4rem; font-weight: 900; color: var(--primary-color); }

.time-select {
    background: var(--bg-darker); border: 1px solid var(--border-color);
    color: var(--text-light); padding: 10px 12px; border-radius: 10px;
    font-family: inherit; font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.time-select:focus { outline: none; border-color: var(--primary-color); }

.hours-separator { color: var(--text-gray); font-size: 1.5rem; padding-top: 25px; }

.slot-duration-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.slot-duration-row label { font-weight: 700; }

.hours-preview {
    display: none; align-items: center; gap: 10px; margin-top: 15px;
    background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.3);
    border-radius: 10px; padding: 12px 18px; color: var(--primary-color); font-weight: 600;
}


.custom-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: var(--shadow-gold);
    max-height: 90vh;
    overflow-y: auto;
}

.dashboard-content {
    max-width: 1000px;
    padding: 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--text-gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover { color: var(--primary-color); }

.modal-input {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
}

.modal-input:focus { outline: none; border-color: var(--primary-color); }

/* Admin Dashboard Elements */
.dashboard-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-btn {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
    font-weight: bold;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.tab-content {
    animation: fadeIn 0.3s ease;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .admin-grid { grid-template-columns: 1fr; }
}

.admin-panel-section {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.admin-panel-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.admin-form { margin-bottom: 20px; }
.admin-form input, .admin-form select { margin-bottom: 10px; }

.admin-list { list-style: none; padding: 0; }
.admin-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-darker);
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
}

.admin-list button {
    background: #ff4757;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}
.admin-list button:hover { opacity: 0.8; }

.admin-gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.admin-gallery-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.admin-gallery-preview .gallery-thumb { position: relative; }
.admin-gallery-preview .gallery-thumb button {
    position: absolute;
    top: 5px; right: 5px;
    background: #ff4757; color: white;
    border: none; border-radius: 4px;
    padding: 2px 5px; cursor: pointer;
}

/* Dashboard Table */
.table-responsive { overflow-x: auto; }
.appointments-table { width: 100%; border-collapse: collapse; color: var(--text-light); }
.appointments-table th, .appointments-table td { padding: 15px; text-align: right; border-bottom: 1px solid var(--border-color); }
.appointments-table th { background-color: var(--bg-darker); color: var(--primary-color); font-weight: 700; }
.appointments-table tr:hover { background-color: rgba(255, 255, 255, 0.02); }

.empty-state {
    text-align: center; padding: 50px 20px; color: var(--text-gray);
}
.empty-state i { font-size: 3rem; margin-bottom: 15px; opacity: 0.4; display: block; }

/* ==========================================
   LOGIN MODAL REDESIGN
   ========================================== */
.login-modal-card {
    max-width: 380px;
    text-align: center;
    padding: 40px 30px;
}
.login-modal-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #8b6914);
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #000; margin: 0 auto 20px; box-shadow: var(--shadow-gold);
}
.login-desc { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 25px !important; }

.password-input-wrapper { position: relative; }
.password-input-wrapper .modal-input { padding-left: 50px; }
.toggle-pw-btn {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--text-gray); cursor: pointer;
    font-size: 1.1rem; padding: 5px; transition: var(--transition);
}
.toggle-pw-btn:hover { color: var(--primary-color); }

.hint-btn {
    background: none; border: 1px dashed rgba(197,160,89,0.3);
    color: var(--text-gray); font-family: inherit; font-size: 0.85rem;
    cursor: pointer; padding: 8px 16px; border-radius: 8px; width: 100%;
    transition: var(--transition); margin-top: 10px;
}
.hint-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }

.hint-box {
    display: flex; align-items: flex-start; gap: 10px; margin-top: 12px;
    background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.3);
    border-radius: 10px; padding: 12px 15px; text-align: right;
    color: var(--primary-color); font-size: 0.9rem; line-height: 1.6;
}

@keyframes shake {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}
.modal-input.shake { animation: shake 0.4s ease; border-color: #ff4757; }

/* ==========================================
   ADMIN DASHBOARD MOBILE FIXES
   ========================================== */
.dashboard-content {
    max-width: 1050px;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 90vh;
    max-height: 90vh;
}

.dashboard-header {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}
.dashboard-header h2 { font-size: 1.3rem; margin-bottom: 12px; }

.admin-tabs {
    display: flex; gap: 6px; overflow-x: auto; padding-bottom: 2px;
    scrollbar-width: none;
}
.admin-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-color);
    color: var(--text-gray); padding: 8px 14px; border-radius: 10px;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
    font-family: inherit; font-size: 0.88rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.tab-btn span { display: inline; }
.tab-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.tab-btn.active { background: var(--primary-color); color: #000; border-color: var(--primary-color); }

.dashboard-body {
    padding: 15px 20px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}
.dashboard-body::-webkit-scrollbar { width: 4px; }
.dashboard-body::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

/* Mobile: Full screen dashboard */
@media (max-width: 768px) {
    .custom-modal { padding: 0; align-items: flex-end; }
    .modal-content { border-radius: 20px; max-height: 95vh; }
    .login-modal-card { border-radius: 20px 20px 0 0; max-width: 100%; }

    .dashboard-content {
        max-width: 100%;
        width: 100%;
        border-radius: 20px 20px 0 0;
        height: 95vh;
        max-height: 95vh;
    }

    .tab-btn span { display: none; }
    .tab-btn { padding: 10px 12px; font-size: 1.1rem; }
    .tab-btn i { margin: 0; font-size: 1.1rem; }

    .admin-grid { grid-template-columns: 1fr; }
    .images-admin-grid { grid-template-columns: 1fr; }
    .appointments-cards { grid-template-columns: 1fr; }

    .appt-toolbar { flex-direction: column; gap: 10px; }
    .appt-actions { width: 100%; justify-content: space-between; }
    .filter-select { flex: 1; }

    .hours-time-row { flex-direction: column; gap: 15px; }
    .hours-separator { display: none; }
    .hours-block { width: 100%; }
    .time-picker-wrapper { justify-content: center; }

    .appt-details { grid-template-columns: 1fr; }

    .dashboard-header { padding: 12px 15px; }
    .dashboard-body { padding: 12px 15px; }

    .close-modal { top: 12px; left: 12px; font-size: 24px; }
}

/* ==========================================
   COMPLAINTS ADMIN TAB
   ========================================== */
.complaints-admin-list { display: flex; flex-direction: column; gap: 12px; }

.complaint-admin-card {
    background: var(--bg-dark); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 15px; transition: var(--transition);
}
.complaint-admin-card:hover { border-color: rgba(197,160,89,0.3); }

.complaint-card-top {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
    flex-wrap: wrap;
}
.complaint-type-badge {
    padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
    flex-shrink: 0;
}
.complaint-type-badge.شكوى  { background: rgba(255,71,87,0.15); color: #ff4757; }
.complaint-type-badge.ملاحظة { background: rgba(197,160,89,0.15); color: var(--primary-color); }
.complaint-type-badge.اقتراح { background: rgba(46,213,115,0.15); color: #2ed573; }
.complaint-type-badge.تقييم  { background: rgba(54,162,235,0.15); color: #36a2eb; }

.complaint-meta { display: flex; gap: 15px; flex: 1; flex-wrap: wrap; }
.complaint-name, .complaint-date { color: var(--text-gray); font-size: 0.82rem; display: flex; align-items: center; gap: 5px; }
.complaint-stars { margin-bottom: 8px; }
.complaint-text { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* ==========================================
   CUSTOMER COMPLAINTS SECTION
   ========================================== */
.complaints-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: clamp(25px, 5vw, 50px);
}

.complaint-textarea {
    width: 100%; padding: 16px 20px;
    background: var(--bg-darker); border: 1px solid var(--border-color);
    border-radius: 8px; color: var(--text-light); font-family: inherit;
    font-size: 1rem; resize: vertical; transition: var(--transition);
    min-height: 120px;
}
.complaint-textarea:focus { outline: none; border-color: var(--primary-color); }

/* Apply booking-form style to inline elements */
.booking-form {
    width: 100%; padding: 16px 20px;
    background: var(--bg-darker); border: 1px solid var(--border-color);
    border-radius: 8px; color: var(--text-light); font-family: inherit;
    font-size: 1rem; transition: var(--transition); appearance: none;
}
.booking-form:focus { outline: none; border-color: var(--primary-color); }

.complaint-rating { margin-bottom: 20px; }
.complaint-rating label { display: block; margin-bottom: 10px; font-weight: 700; }
.star-rating { display: flex; gap: 8px; }
.star-rating i {
    font-size: 1.8rem; color: #333; cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}
.star-rating i:hover, .star-rating i.active { color: var(--primary-color); transform: scale(1.2); }

.complaint-success {
    flex-direction: column; align-items: center; justify-content: center;
    gap: 15px; padding: 50px 20px; text-align: center;
}
.complaint-success i { font-size: 3.5rem; color: #2ed573; }
.complaint-success h4 { font-size: 1.5rem; }
.complaint-success p  { color: var(--text-gray); }

/* ==========================================
   SECURITY TAB
   ========================================== */
.security-panel { display: flex; flex-direction: column; gap: 20px; }
.security-card {
    background: var(--bg-dark); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 25px;
}
.security-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.security-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 15px; }
.security-icon {
    width: 55px; height: 55px; border-radius: 14px;
    background: rgba(197,160,89,0.1); border: 1px solid rgba(197,160,89,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color); font-size: 1.5rem; margin-bottom: 15px;
}
.device-status { margin-bottom: 15px; }
.device-trusted, .device-untrusted {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 10px; font-size: 0.95rem;
}
.device-trusted   { background: rgba(46,213,115,0.1); color: #2ed573; border: 1px solid rgba(46,213,115,0.3); }
.device-untrusted { background: rgba(255,165,0,0.1); color: #ffa502; border: 1px solid rgba(255,165,0,0.3); }

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197,160,89,0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.team-img {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: var(--bg-darker);
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img img { transform: scale(1.05); }

/* Placeholder when no real photo */
.team-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111, #1d1d1d);
}
.team-placeholder-icon {
    font-size: 6rem;
    color: rgba(197,160,89,0.25);
}

/* Hover Overlay with Book Button */
.team-social {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.team-social a::after { content: ' احجز الآن'; }
.team-social a:hover { background: white; }

/* Team Card Info */
.team-info {
    padding: 20px 22px 22px;
    border-top: 1px solid var(--border-color);
}
.team-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.team-role {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.team-skills span {
    padding: 4px 12px;
    background: rgba(197,160,89,0.08);
    border: 1px solid rgba(197,160,89,0.2);
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-gray);
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-img { height: 280px; }
}
