:root {
    --gold: #d4af37;
    --dark: #1a1a1a;
    --light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--dark);
    color: white;
    overflow-x: hidden;
}

/* Header */
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
}

/* Navbar */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

/* Links */
nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

/* Booking Button */
.btn-booking,
.btn-booking-mobile {
    background: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-booking:hover,
.btn-booking-mobile:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212,175,55,0.5);
}

/* Menu toggle icon for mobile */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        border-radius: 12px;
        border: 1px solid rgba(212,175,55,0.2);
        gap: 5px;
        display: none; /* نبدأ مخفي */
        width: auto;   /* العرض على قد المحتوى */
        max-width: 200px; /* الحد الأقصى */
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .menu-toggle {
        display: block;
    }

    .btn-booking {
        font-size: .8rem;
    }

    .btn-booking-mobile {
        display: block;
    }
}

@media (max-width: 330px) {
    header .container {
        padding: 0 10px;
    }

    nav ul li a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .logo {
        font-size: 20px;
    }

    .menu-toggle {
        font-size: 1.1rem;
    }
    .btn-booking {
        font-size: .8rem;
        margin-right: 5px;
    }
}

/* Super small screens < 300px */
@media (max-width: 300px) {
    header .container {
        padding: 0 10px;
    }

    nav ul li a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .logo {
        font-size: 20px;
    }

    .menu-toggle {
        font-size: 1.3rem;
    }
    .btn-booking {
        font-size: .6rem;
        margin-right: 15px;
    }
}



/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&q=80&w=1474&ixlib=rb-4.0.3')
                no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero span {
    color: var(--gold);
}

.btn-main {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.05);
}

/* --- التنسيق المشترك للعناوين --- */
.section-title {
    text-align: center;
    font-size: 4.5rem;
    margin: 60px 0 40px;
    position: relative;
    color: var(--gold);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto;
}


/* ===== INTRO VIDEO SECTION ===== */

.intro-video-section {
  padding: 120px 20px 80px;
  background: linear-gradient(to bottom, #111, #1a1a1a); /* نفس خلفية الريلز */
  text-align: center;
}

.intro-video-container {
  max-width: 900px;
  margin: auto;
}

.intro-title {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
  animation: fadeUp 1s ease forwards;
}

.intro-subtitle {
  color: #ccc;
  margin-bottom: 40px;
  animation: fadeUp 1.2s ease forwards;
}

.intro-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* فيديو كبير عريض */
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid var(--gold);
  transition: 0.4s ease;
  cursor: pointer;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.intro-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* Hover Effects */
.intro-video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(212,175,55,0.5);
}

.intro-video-card:hover video {
  transform: scale(1.05);
}

/* Overlay */
.intro-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: 0.4s ease;
}

.intro-video-card:hover .intro-overlay {
  transform: translateY(0);
}

.intro-overlay h3 {
  color: var(--gold);
  margin-bottom: 5px;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:992px){
  .intro-title{ font-size: 2rem; }
}

@media(max-width:600px){
  .intro-title{ font-size: 1.7rem; }
  .intro-video-card{ aspect-ratio: 9/16; } /* يتحول عمودي على الموبايل */
}


/* ===== HERO ===== */
.hero-3d {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tools-wrapper {
    display: flex;
    gap: 120px;
    perspective: 1200px;
    flex-wrap: wrap;
    justify-content: center;
}

.tool {
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

/* ================= SCISSORS ================= */
.scissors {
    width: 120px;
    height: 320px;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.scissor-half {
    position: absolute;
    width: 44px;
    height: 300px;
    left: 50%;
    top: 10px;
    transform-origin: center 70px;
    border-radius: 30px 30px 14px 14px;
    background: linear-gradient(180deg,#fff,#bdbdbd,#6f6f6f);
    box-shadow:
        inset 0 0 12px rgba(255,255,255,.6),
        0 20px 40px rgba(0,0,0,.6);
}

.scissor-half.left {
    transform: translateX(-50%) rotateZ(-26deg);
    animation: openLeft 3s infinite ease-in-out;
}

.scissor-half.right {
    transform: translateX(-50%) rotateZ(26deg);
    animation: openRight 3s infinite ease-in-out;
}

.scissor-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle,#fff,var(--gold));
    box-shadow: 0 0 18px rgba(212,175,55,.8);
}

/* ===== HAIR PARTICLES ===== */
.hair {
    position: absolute;
    width: 3px;
    height: 18px;
    background: #2b1b0f;
    border-radius: 50%;
    top: 120px;
    left: 50%;
    opacity: 0;
    animation: hairFly 3s infinite;
}

.hair1 { animation-delay: 0s; }
.hair2 { animation-delay: 0.3s; }
.hair3 { animation-delay: 0.6s; }
.hair4 { animation-delay: 0.9s; }

@keyframes hairFly {
    0% { opacity: 0; transform: translate(0,0) rotate(0deg); }
    40% { opacity: 1; }
    70% { opacity: 1; }
    100% { 
        opacity: 0; 
        transform: translate(calc(-30px + 60px * 0.5), -80px) rotate(120deg);
    }
}

/* ================= CLIPPER ================= */
.clipper {
    width: 120px;
    height: 300px;
    animation: float 4s ease-in-out infinite reverse;
}

.clipper-head {
    width: 90px;
    height: 40px;
    margin: auto;
    background: linear-gradient(180deg,#e6e6e6,#9e9e9e);
    border-radius: 8px;
}

.clipper-blade {
    width: 80px;
    height: 20px;
    margin: 5px auto;
    background: repeating-linear-gradient(90deg,#aaa 0,#aaa 2px,#666 2px,#666 4px);
    animation: bladeVibe 0.1s infinite linear;
}

.clipper-body {
    width: 100px;
    height: 180px;
    margin: auto;
    background: linear-gradient(180deg,#2b2b2b,#111);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.7);
}

.clipper-grip {
    width: 100px;
    height: 40px;
    margin: auto;
    background: linear-gradient(180deg,#1a1a1a,#000);
    border-radius: 0 0 18px 18px;
}

/* ================= TEXT ================= */
.hero-text {
    margin-top: 40px;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    letter-spacing: 4px;
    color: var(--gold);
    animation: textGlow 2.5s infinite alternate;
}

.hero-text p {
    color: #ccc;
    margin-top: 8px;
    font-size: 1.4rem;
}

.hero-text p:hover {
    color: goldenrod;
}

/* ================= ANIMATIONS ================= */
@keyframes openLeft {
    0%,100% { transform: translateX(-50%) rotateZ(-28deg); }
    50% { transform: translateX(-50%) rotateZ(-10deg); }
}

@keyframes openRight {
    0%,100% { transform: translateX(-50%) rotateZ(28deg); }
    50% { transform: translateX(-50%) rotateZ(10deg); }
}

@keyframes bladeVibe {
    from { background-position: 0 0; }
    to { background-position: 10px 0; }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes textGlow {
    from { text-shadow:0 0 10px rgba(212,175,55,.3); }
    to { text-shadow:0 0 30px rgba(212,175,55,.9); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .tools-wrapper {
        gap: 80px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .tools-wrapper {
        gap: 50px;
        flex-direction: column;
    }

    .scissors, .clipper {
        width: 90px;
        height: 250px;
    }

    .scissor-half {
        width: 32px;
        height: 250px;
    }

    .hair {
        height: 14px;
        width: 2px;
        top: 100px;
    }

    .clipper-head {
        width: 70px;
        height: 30px;
    }

    .clipper-blade {
        width: 60px;
        height: 15px;
    }

    .clipper-body {
        width: 80px;
        height: 150px;
    }

    .clipper-grip {
        width: 80px;
        height: 30px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tools-wrapper {
        gap: 30px;
    }

    .scissors, .clipper {
        width: 70px;
        height: 200px;
    }

    .scissor-half {
        width: 25px;
        height: 200px;
    }

    .hair {
        height: 10px;
        width: 2px;
        top: 80px;
    }

    .clipper-head {
        width: 60px;
        height: 25px;
    }

    .clipper-blade {
        width: 50px;
        height: 12px;
    }

    .clipper-body {
        width: 70px;
        height: 120px;
    }

    .clipper-grip {
        width: 70px;
        height: 25px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .tools-wrapper {
        gap: 20px;
    }

    .scissors, .clipper {
        width: 60px;
        height: 180px;
    }

    .scissor-half {
        width: 22px;
        height: 180px;
    }

    .hair {
        height: 8px;
        width: 2px;
        top: 70px;
    }

    .clipper-head {
        width: 50px;
        height: 20px;
    }

    .clipper-blade {
        width: 40px;
        height: 10px;
    }

    .clipper-body {
        width: 60px;
        height: 100px;
    }

    .clipper-grip {
        width: 60px;
        height: 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.8rem;
    }
}


/* icons */
.quick-links {
  padding: 70px 5%;
  background: #1a1a1a;
}

.quick-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.quick-item {
  text-decoration: none;
  color: #fff;
  transition: 0.4s ease;
}

.icon-circle {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.icon-circle i {
  font-size: 2.5rem;
  color: #111;
}

.quick-item span {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
}

/* Hover */
.quick-item:hover .icon-circle {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.quick-item:hover span {
  color: var(--gold);
}

/* ===== Mobile Optimization ===== */
@media (max-width: 480px) {
  .icon-circle {
    width: 85px;
    height: 85px;
  }

  .icon-circle i {
    font-size: 2rem;
  }

  .quick-item span {
    font-size: 0.85rem;
  }
}
.quick-item.signup .icon-circle {
  background: var(--light);
}

.quick-item.signup i {
  color: var(--dark);
}

.quick-item.signup span {
  font-weight: bold;
}


@media (max-width: 300px) {
  .icon-circle {
    width: 70px;
    height: 70px;
  }

  .icon-circle i {
    font-size: 1.7rem;
  }

  .quick-item span {
    font-size: 0.75rem;
  }
}

/* icons inimations*/
/* ===== Scroll Reveal Animation ===== */
.quick-item {
  opacity: 1;
  transform: translateY(40px) scale(0.9);
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease;
}

.quick-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* --- 1. سكشن المميزات (Features) --- */
.features {
    padding: 60px 10%;
    background-color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #222;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.4s ease;
}

.feature-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .features-grid {
        gap: 25px;
    }

    .feature-card {
        padding: 35px 15px;
    }

    .feature-card i {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 50px 8%;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 30px 15px;
    }

    .feature-card i {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 40px 5%;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-card {
        padding: 25px 10px;
    }

    .feature-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }
}

/* ========= EXTRA SMALL SCREENS (<320px) ========= */
@media (max-width: 320px) {
    .features {
        padding: 20px 3%;
    }

    .features-grid {
        grid-template-columns: 1fr; /* كل كارد في صف منفصل */
        gap: 10px;
    }

    .feature-card {
        padding: 15px 8px;
    }

    .feature-card i {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }
}

/*time*/
.work-hours {
  padding: 80px 5%;
  background: linear-gradient(145deg,#0f0f0f,#1a1a1a);
  display: flex;
  justify-content: center;
}

.hours-card {
  background: #111;
  border: 1px solid var(--gold);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: floatCard 4s ease-in-out infinite;
}

.hours-card h2 {
  color: var(--gold);
  margin-bottom: 25px;
}

.hours-card ul {
  list-style: none;
  padding: 0;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  margin-bottom: 15px;
}

.note {
  margin-top: 20px;
  color: #aaa;
  font-size: 0.9rem;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* ===== Services Section ===== */
.services {
    padding: 60px 10%;
    background: #111; 
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-item {
    background: linear-gradient(145deg, #1e1e1e, #111);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-right: 4px solid var(--gold);
    transition: 0.3s;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: bold;
}

.service-item:hover {
    background: var(--gold);
}

.service-item:hover h3, 
.service-item:hover p {
    color: var(--dark);
}

.service-item::before {
    content: '\f0c4'; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    left: -10px;
    font-size: 4rem;
    opacity: 0.05;
    transform: rotate(-20deg);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .clients-grid, .services-container {
        gap: 25px;
    }

    .client-card {
        height: 400px;
    }

    .service-item {
        padding: 25px;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .clients-grid, .services-container {
        gap: 20px;
    }

    .client-card {
        height: 360px;
    }

    .service-item {
        padding: 20px;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .clients-grid, .services-container {
        gap: 15px;
    }

    .client-card {
        height: 320px;
    }

    .service-item {
        padding: 18px;
    }

    .service-item h3 {
        font-size: 1.1rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .clients-grid, .services-container {
        gap: 10px;
        grid-template-columns: 1fr; /* كل كارد في صف منفصل */
    }

    .client-card {
        height: 280px;
    }

    .service-item {
        padding: 15px;
    }

    .service-item h3 {
        font-size: 1rem;
    }

    .service-item p {
        font-size: 0.85rem;
    }

    .service-item::before {
        font-size: 3rem;
    }
}


/* Barbers Section */
.barbers {
    padding: 80px 5%;
    background-color: var(--dark);
}

.barbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= CARD ================= */
.barber-card {
    background: #1e1e1e;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #333;
}

.barber-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

/* ================= IMAGE ================= */
.barber-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;   /* أهم تعديل */
    overflow: hidden;
}

.barber-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* الصورة تملأ بدون تشويه */
    object-position: center;
    transition: transform 0.6s ease;
}

.barber-card:hover img {
    transform: scale(1.1);
}

/* ================= OVERLAY ================= */
.barber-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.barber-card:hover .barber-overlay {
    opacity: 1;
}

.book-now-mini {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.barber-card:hover .book-now-mini {
    transform: translateY(0);
}

/* ================= INFO ================= */
.barber-info {
    padding: 18px;
    text-align: center;
}

.barber-info h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.specialty {
    color: #bbb;
    font-size: 0.95rem;
}

/* ================= RESPONSIVE ================= */

/* تابلت */
@media (max-width: 768px) {
    .barbers {
        padding: 60px 4%;
    }

    .barber-info h3 {
        font-size: 1.3rem;
    }

    .specialty {
        font-size: 0.9rem;
    }
}

/* موبايل */
@media (max-width: 480px) {
    .barbers-grid {
        gap: 20px;
    }

    .barber-info {
        padding: 15px;
    }

    .barber-info h3 {
        font-size: 1.2rem;
    }

    .book-now-mini {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* شاشات صغيرة جدًا (300px وأقل) */
@media (max-width: 320px) {
    .barbers {
        padding: 40px 3%;
    }

    .barbers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .barber-info h3 {
        font-size: 1.05rem;
    }

    .specialty {
        font-size: 0.8rem;
    }

    .book-now-mini {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}


.rating {
    color: #f1c40f; /* لون النجوم الذهبي */
    font-size: 0.85rem;
}

.rating i {
    margin-left: 3px;
}

/*review*/
.reviews-section {
  padding: 80px 5%;
  background: #111;
  text-align: center;
}

.reviews-slider {
  display: flex;
  gap: 30px;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto 0;
}

.review-card {
  min-width: 280px;
  background: #1e1e1e;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #333;
  animation: slideReviews 12s infinite;
}

.review-card p {
  color: #ccc;
  margin: 15px 0;
}

.review-card span {
  color: var(--gold);
  font-size: 0.9rem;
}

.stars {
  color: gold;
  font-size: 1.2rem;
}

@keyframes slideReviews {
  0% { transform: translateX(0); }
  33% { transform: translateX(-310px); }
  66% { transform: translateX(-620px); }
  100% { transform: translateX(0); }
}


/* scroll buttons */
/* ===== Scroll Buttons ===== */
.scroll-btn {
  position: fixed;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
  transition: all 0.4s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

/* Positions */
.scroll-btn.up {
  bottom: 90px;
}

.scroll-btn.down {
  bottom: 30px;
}

/* Hover */
.scroll-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(212,175,55,0.6);
}

/* Show */
.scroll-btn.show {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile */
@media (max-width: 480px) {
  .scroll-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    right: 15px;
  }

  .scroll-btn.up {
    bottom: 80px;
  }

  .scroll-btn.down {
    bottom: 25px;
  }
}

/*whatsapp*/
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  z-index: 999;
  animation: pulse 2s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, #111, #000);
  border-top: 1px solid rgba(212,175,55,0.3);
  padding: 60px 20px 30px;
  color: #ccc;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Brand */
.footer-brand h3 {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-brand span {
  color: #fff;
}

.footer-brand p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #aaa;
}

/* Social Icons */
.footer-social {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 30px rgba(212,175,55,0.5);
}

/* Copy */
.footer-copy p {
  font-size: 0.85rem;
  margin: 6px 0;
  color: #888;
}

.footer-copy .credit span {
  color: var(--gold);
  font-weight: bold;
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
  .footer-brand h3 {
    font-size: 1.6rem;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}
