/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'times new roman', sans-serif;
}

body {
  background: #f5f5f5;
  color: #000;
}
/* ===== RESET ===== */


/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* ===== LOGO ===== */
.header .logo img {
  height: 50px;
  margin-top:43px;
}

/* ===== NAV (DESKTOP) ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s;
}

.nav a:hover {
  color: #BF092F;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #272522;
  min-width: 160px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
  
  display: flex;
}

.dropdown-menu a {
  padding: 8px 15px;
  color: #fff;
}

.dropdown-menu a:hover {
  background: #BF092F;
  color:#fff;
}

/* ===== cN BUTTON ===== */
.btn-login{
  position: relative;
  padding: 8px 22px;
  background: #BF092F;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  border: 2px solid #BF092F;
  cursor: pointer;
  overflow: hidden;
}

.btn-login::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.4s;
}

.btn-login span{
  position: relative;
  z-index: 2;
}

.btn-login:hover::before{
  transform: scaleY(1);
}

.btn-login:hover span{
  color: #BF092F;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #BF092F;
  border-radius: 2px;
}

/* ===== CLOSE ICON (DESKTOP HIDE) ===== */
.close-menu{
  display: none;   /* 🔥 MAIN FIX */
}

/* ===== OVERLAY ===== */
.overlay{
  display:none;
}

/* ===== MOBILE / TABLET ===== */
@media(max-width: 992px){

  /* NAV SLIDE MENU */
  .nav{
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100%;
    background: #BF092F;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 20px;
    transition: 0.4s;
    z-index: 999;
  }

  .nav.active{
    left: 0;
  }

  /* LINKS */
  .nav a{
    color:#fff;
    font-size:16px;
  }
  .logo{
    margin-top: 10px;
  }

  /* HAMBURGER */
  .hamburger{
    display:flex;
  }

  /* CLOSE ICON (MOBILE ONLY) */
  .close-menu{
    display:block;
    position:absolute;
    top:20px;
    right:20px;
    font-size:28px;
    color:#fff;
    cursor:pointer;
  }

  /* DROPDOWN MOBILE */
  .dropdown-menu{
    position:relative;
    background:#fff;
    display:none;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
   
  }

  .dropdown-menu a{
    color:#000;
  }

  /* LOGIN BUTTON */
  .btn-login{
    width:100%;
    text-align:center;
  }

  /* OVERLAY */
  .overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    z-index:998;
  }

  .nav.active ~ .overlay{
    display:block;
  }
}
/* --- Footer ----- */
.stackly-footer {
  background: #000000; /* dark black */
  color: #ffffff;
  padding: 80px 20px 30px;
  
}

.sf-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* logo wider, others uniform */
  gap: 30px; /* reduced spacing */
}

/* Columns */
.sf-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.sf-col p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.5;
  display: flex;           /* align icon + text */
  align-items: center;     /* vertical center */
  gap: 8px;                /* space between icon and text */
}

.sf-col ul {
  list-style: none;
  padding: 0;
}

.sf-col ul li {
  margin-bottom: 10px;
}

.sf-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.sf-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Newsletter Form */
.sf-form {
  display: flex;
  gap: 6px;
  margin: 12px 0;
}

.sf-form input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.sf-form button {
  padding: 8px 12px;
  background: #fff;
  color: #BF092F;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-form button:hover {
  background: #fff;
}

.sf-form button i {
  font-size: 14px;
}

/* Social Icons */
.sf-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 16px;
  color: #BF092F;
  transition: 0.3s;
}

.sf-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Icons */
.sf-col p i {
  color: #fff;
  transform: none !important; /* fix flipped icons */
  direction: ltr !important;  /* ensure LTR */
  font-size: 16px;            /* uniform icon size */
}

/* Footer bottom */
.sf-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Logo */
.sf-logo {
  width: 140px;
  margin-bottom: 12px;
}

/* Tablet */
@media (max-width: 991px) {
  .sf-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sf-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sf-form {
    flex-direction: column;
  }
  .sf-form input,
  .sf-form button {
    width: 100%;
  }
}
.phone-icon{
  width:16px;
  height:16px;
  fill:#ffffff;      /* white icon */
  margin-right:8px;
  vertical-align:middle;
}

/* Home page */

/* ================= HERO SECTION ================= */
.hero-banner{
  padding-top:100px; /* header space */
  min-height:90vh;
  display:flex;
  align-items:center;
  background:#000000; /* dark premium look */
}

.hero-container{
  width:90%;
  margin:auto;
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

/* ---------- HERO TEXT ---------- */
.hero-text{
  flex:1;
}

.tag{
  
  font-weight:600;
  color:#BF092F; /* golden accent */
  
  font-size:14px;
}

.hero-title{
  font-size:46px;
  margin:15px 0;
  color:#ffffff;
  font-weight:700;
}

.hero-subtitle{
  max-width:500px;
  margin-bottom:30px;
  color:#cbd5f5;
  font-size:16px;
  line-height:1.6;
}



/* ---------- HERO IMAGE ---------- */
.hero-image{
  flex:1;
  text-align:center;
}

.hero-image img{
  max-width:880px;
  width:90%;
  height: 400px;
  border-radius:22px;
  box-shadow:0 30px 60px rgba(0,0,0,0.4);
}

/* ---------- ANIMATION ---------- */
.animate{
  opacity:0;
  transform:translateY(30px);
  animation:fadeInUp 1s forwards;
}

.hero-image.animate{
  animation-delay:0.4s;
}

@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

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

/* Tablet */
@media(max-width:991px){
  .hero-container{
    flex-direction:column-reverse;
    text-align:center;
    gap:30px;
  }

  .hero-title{
    font-size:36px;
  }

  .hero-subtitle{
    max-width:100%;
  }

  .hero-image img{
    max-width:100%;
    border-radius:16px;
    width: 500px;
  }
}

/* Mobile */
@media(max-width:600px){
  .hero-title{
    font-size:28px;
  }

  .hero-subtitle{
    font-size:14px;
  }

 .hero-banner{
  height: 900px;
 }
.hero-image.animate{
 margin-left: 30px;
}
  .hero-image img{
    border-radius:12px;
   
  }
}


/* contact page */

/* ================= GLOBAL SIDE GAP ================= */
.contact-banner,
.section-header,
.two-col,
.contact-info,
.contact-form{
  padding-left:20px;
  padding-right:20px;
}

/* ================= BANNER ================= */


/* ================= SECTION HEADER ================= */
.section-header{
  margin:80px auto 40px;
  text-align:center;
}

.section-header h2{
  font-size:36px;
  margin-bottom:10px;
  color: #BF092F;
}

.section-header p{
  color:#555;
  font-size:16px;
  max-width:700px;
  margin:auto;
}

/* ================= TWO COLUMN ================= */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:center;
  padding-top:40px;
  padding-bottom:20px;
}

.two-col.reverse{
  direction:rtl;
}

.two-col.reverse > *{
  direction:ltr;
}

.two-col img{
  width:100%;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ================= WHY SECTION ================= */
.why-content h3{
  font-size:28px;
  margin-bottom:12px;
}

.why-content p{
  margin-bottom:16px;
  color:#555;
}

.why-content ul{
  list-style:none;
}

.why-content ul li{
  margin-bottom:10px;
  font-size:15px;
  position:relative;
  padding-left:20px;
}

.why-content ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#b91c1c;
}


/* Smart Living */

/* ===============================
   BARBER IMAGE STACK SECTION
================================ */

.img-stack{
  width:100%;
  min-height:50vh;        /* IMPORTANT */
  padding:10px 20px;
  background-color:#000000 !important; /* force apply */
  position:relative;
}


.is-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  
}

/* ===== IMAGE STACK ===== */
.is-images{
  position:relative;
}

.main-img{
  width:100%;
  border-radius:20px;
  box-shadow:0 25px 50px rgba(0,0,0,0.35);
  animation:fadeZoom 1.2s ease forwards;
}

.small-img{
  position:absolute;
  width:45%;
  bottom:-30px;
  right:-30px;
  border-radius:16px;
  border:6px solid #ffffff;
  box-shadow:0 18px 40px rgba(0,0,0,0.4);
  animation:floatSmall 5s ease-in-out infinite;
}

/* ===== CONTENT ===== */
.is-content{
  animation:fadeSlide 1.2s ease forwards;
}

.is-tag{
  font-size:13px;
  font-weight:600;
  color:#000000; /* gold accent */
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:12px;
  text-transform:uppercase;
}

.is-content h2{
  font-size:38px;
  color:#ffffff;
  margin-bottom:18px;
  line-height:1.3;
}

.is-content p{
  font-size:16px;
  color:#cbd5f5;
  line-height:1.8;
  max-width:480px;
}

/* ===== ANIMATIONS ===== */
@keyframes floatSmall{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-18px); }
  100%{ transform:translateY(0); }
}

@keyframes fadeZoom{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes fadeSlide{
  from{
    opacity:0;
    transform:translateX(40px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

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

/* Tablet */
@media(max-width:991px){
  .is-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
  }

  .small-img{
    right:20px;
  }

  .is-content p{
    margin:auto;
  }
}

/* Mobile */
@media(max-width:600px){
  .img-stack{
    padding:70px 15px;
  }

  .is-content h2{
    font-size:28px;
  }

  .is-content p{
    font-size:14px;
  }

  .small-img{
    width:55%;
    bottom:-20px;
    right:10px;
  }
}




/* ================= CONTACT INFO ================= */
.contact-info{
  padding-top:70px;
  padding-bottom:70px;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.info-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.info-box i{
  font-size:28px;
  margin-bottom:12px;
  color:#b91c1c;
}

.info-box h4{
  margin-bottom:6px;
  font-size:16px;
}

.info-box p{
  font-size:14px;
  color:#555;
}

/* ================= CONTACT FORM ================= */
.contact-form{
  padding-top:80px;
  padding-bottom:80px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.form-content h2{
  margin-bottom:10px;
  font-size:28px;
}

.form-content p{
  margin-bottom:20px;
  color:#555;
}

.form-content input,
.form-content textarea{
  width:100%;
  padding:14px;
  margin-bottom:14px;
  border-radius:8px;
  border:1px solid #cbd5e1;
  font-size:14px;
}

.form-content textarea{
  resize:none;
  height:120px;
}

.form-content button{
  padding:14px 30px;
  background:#b91c1c;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.form-content button:hover{
  background:#991b1b;
}

.map-content iframe{
  width:100%;
  height:100%;
  min-height:360px;
  border-radius:16px;
  border:none;
}

/* testimonial section */
.ts-section{
  padding:80px 20px;
  background:#fff;
}

.ts-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.ts-heading{
  font-size:34px;
  color:#BF092F;
  margin-bottom:8px;
}

.ts-subheading{
  font-size:16px;
  color:#000000;
  max-width:600px;
  margin:0 auto 50px;
}

.ts-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.ts-card{
  background:#000000;
  padding:30px 25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.4s ease;
}

.ts-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.ts-img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 12px;   /* center */
  display:block;        /* important */
}


.ts-stars{
  color:#fbbf24;
  font-size:18px;
  margin-bottom:12px;
}

.ts-text{
  font-size:15px;
  color:#fff;
  line-height:1.7;
  margin-bottom:18px;
}

.ts-name{
  font-size:16px;
  font-weight:600;
  color:#fff;
}

.ts-place{
  font-size:14px;
  color:#cbd5f5;
}

/* Tablet */
@media(max-width:991px){
  .ts-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* Mobile */
@media(max-width:600px){
  .ts-grid{
    grid-template-columns:1fr;
  }
}




/* ================= VISIT SECTION ================= */
.visit-content h3{
  font-size:28px;
  margin-bottom:12px;
}

.visit-content p{
  margin-bottom:16px;
  color:#555;
}

.visit-points p{
  margin-bottom:8px;
  font-size:15px;
}
/* ===== IMAGE FIX ONLY ===== */
.visit-image{
  width:100%;
  height:auto;          /* ? 10% remove */
  overflow:hidden;
}

.visit-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .info-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .two-col{
    grid-template-columns:1fr;
  }
}
/* ===== DESKTOP IMAGE HEIGHT FIX ONLY ===== */
@media(min-width:993px){
  .visit-image{
    max-height:380px;     /* adjust 320 / 360 / 380 if needed */
  }

  .visit-image img{
    height:100%;
    width: 100%;
    object-fit:cover;
  }
}

@media(max-width:576px){
  .faq-banner h1{
    font-size:30px;
  }

  .section-header h2{
    font-size:28px;
  }

  .info-grid{
    grid-template-columns:1fr;
  }
}

/* about page */



img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

/* ================= GLOBAL SIDE GAP ================= */
.faq-banner,
.about-section,
.why-modern,
.img-stack,
.team-section{
  padding-left:20px;
  padding-right:20px;
}

/* ================= COMMON ANIMATION ================= */
@keyframes fadeUp{
  0%{
    opacity:0;
    transform:translateY(30px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= BANNER ================= */
.faq-banner{
  background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
  url("../images/barber-banner.jpg") center/cover no-repeat;
  padding:100px 0;
  color:#fff;
}

.faq-banner-content{
  text-align:center;
  animation:fadeUp 1s ease forwards;
}

.faq-banner h1{
  font-size:44px;
  margin-bottom:10px;
}

.faq-banner p{
  font-size:14px;
  opacity:0.85;
}

/* ================= ABOUT SECTION ================= */

.about-banner{
  background:#000000;
  padding-top:180px;
  padding-bottom:150px;

  color:#fff;
}

.about-banner-content{
  text-align:center;
}

.about-banner h1{
  font-size:42px;
  margin-bottom:10px;
}

.about-banner p{
  font-size:14px;
  opacity:0.85;
}
.about-section{
  padding:90px 0;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}

.about-left{
  animation:fadeUp 1s ease forwards;
}

.about-tag{
  font-size:14px;
  font-weight:600;
  color:#b91c1c;
}

.about-heading{
  font-size:38px;
  line-height:1.3;
  margin:15px 0 20px;
}

.about-text{
  font-size:16px;
  color:#000000;
  margin-bottom:16px;
}

.about-points{
  list-style:none;
  margin:25px 0;
}

.about-points li{
  margin-bottom:10px;
  font-size:15px;
  padding-left:22px;
  position:relative;
}

.about-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#b91c1c;
}

.about-btn{
  display:inline-block;
  padding:12px 28px;
  background:#b91c1c;
  color:#fff;
  border-radius:6px;
  font-weight:600;
  transition:0.4s;
}

.about-btn:hover{
  background:#fff;
  transform:translateY(-3px);
}

/* Right stats */
.about-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  animation:fadeUp 1.2s ease forwards;
}

.about-box{
  background:#fff;
  padding:30px 20px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s;
}

.about-box:hover{
  transform:translateY(-8px);
}

.about-box h3{
  font-size:34px;
  color:#b91c1c;
}

.about-box p{
  font-size:14px;
}
/* ===============================
   RESPONSIVE – TABLET & MOBILE
================================ */

/* Tablet view */
@media (max-width: 992px){

  /* Banner */
  .about-banner{
    padding-top:150px;
    padding-bottom:120px;
  }

  .about-banner h1{
    font-size:34px;
  }

  .about-banner p{
    font-size:14px;
  }

  /* Section spacing */
  .about-section{
    padding:70px 0;
  }

  /* Container */
  .about-container{
    grid-template-columns:1fr;
    gap:40px;
    padding:0 15px;   /* 🔥 left & right margin */
  }

  .about-heading{
    font-size:32px;
  }

  .about-text{
    font-size:15px;
  }

  /* Right stats */
  .about-right{
    grid-template-columns:1fr 1fr;
  }
}

/* Mobile view */
@media (max-width: 576px){

  /* Banner */
  .about-banner{
    padding-top:130px;
    padding-bottom:100px;
  }

  .about-banner-content{
    padding:0 15px;   /* 🔥 left & right margin */
  }

  .about-banner h1{
    font-size:26px;
  }

  .about-banner p{
    font-size:13px;
  }

  /* Section */
  .about-section{
    padding:60px 0;
  }

  /* Container */
  .about-container{
    padding:0 15px;   /* 🔥 left & right margin */
    gap:30px;
  }

  .about-heading{
    font-size:26px;
  }

  .about-text{
    font-size:14px;
  }

  .about-points li{
    font-size:14px;
  }

  /* Stats boxes */
  .about-right{
    grid-template-columns:1fr;
  }

  .about-box h3{
    font-size:28px;
  }

  .about-box p{
    font-size:13px;
  }
}
/* ================= WHY MODERN ================= */
.why-modern{
  padding:90px 0;
  background:#ffffff;
}

.wm-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  align-items:center;
}

/* LEFT CONTENT */
.wm-left{
  animation:fadeUp 1s ease forwards;
}

.wm-tag{
  font-size:14px;
  font-weight:600;
  color:#b91c1c;
  letter-spacing:1px;
}

.wm-left h2{
  font-size:34px;
  margin:12px 0;
  line-height:1.3;
}

.wm-left p{
  color:#555;
  font-size:15px;
  line-height:1.7;
}

/* IMAGE */
.wm-image{
  animation:fadeUp 1.2s ease forwards;
  text-align:center;
}

.wm-image img{
  width:100%;
  max-width:320px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.wm-right{
  animation:fadeUp 1.4s ease forwards;
}

.wm-item{
  display:flex;
  gap:14px;
  margin-bottom:20px;
}

.wm-icon{
  color:#b91c1c;
  font-size:18px;
  margin-top:4px;
}

.wm-item h4{
  font-size:16px;
  margin-bottom:6px;
}

.wm-item p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= TAB VIEW ================= */
@media (max-width:992px){
  .wm-container{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }

  .wm-image{
    grid-column:1 / -1;
    
    order:2;
  }

  .wm-left{
    order:1;
  }

  .wm-right{
    order:3;
  }

  .wm-left h2{
    font-size:30px;
  }
}

@media (max-width:600px){

  .why-modern{
    padding:60px 0;
  }

  .wm-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .wm-left h2{
    font-size:26px;
  }

  /* 🔧 FIXED ALIGNMENT */
  .wm-item{
    justify-content:flex-start;
    align-items:flex-start;
    text-align:left;
  }

  .wm-icon{
    margin-top:2px;
  }

  .wm-image img{
    max-width:260px;
  }
}


/* ================= IMAGE STACK ================= */
.img-stack{
  padding:90px 0;
  background:#f8fafc;
}

.is-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.is-images{
  position:relative;
  animation:fadeUp 1s ease forwards;
}

.main-img{
  border-radius:18px;
}

.small-img{
  position:absolute;
  width:45%;
  bottom:-30px;
  right:-20px;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.is-content{
  animation:fadeUp 1.2s ease forwards;
}

.is-tag{
  font-size:14px;
  font-weight:600;
  color:#b91c1c;
}

.is-content h2{
  font-size:34px;
  margin:12px 0;
}
@media (max-width:992px){

  .img-stack{
    padding:70px 15px;
  }

  .is-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .is-images{
    justify-self:center;
  }

  .main-img{
    max-width:100%;
  }

  .small-img{
    width:40%;
    bottom:-25px;
    right:-10px;
  }

  .is-content{
    text-align:center;
  }

  .is-content h2{
    font-size:30px;
  }
}

/* ================= TEAM SECTION ================= */
/* ================= TEAM SECTION ================= */
.team-section{
  padding:90px 0;
  background:#ffffff;
}

.team-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.team-heading{
  font-size:36px;
  margin-bottom:10px;
  color:#BF092F;
}

.team-subheading{
  color:#555;
}

/* ================= GRID ================= */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr); /* Desktop = 4 cards */
  gap:30px;
  margin-top:40px;
}

/* ================= CARD ================= */
.team-card{
  background:#f8fafc;
  padding:20px;
  border-radius:16px;
  transition:0.4s;
  animation:fadeUp 1.3s ease forwards;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */
.team-img img{
  width:100%;
  height:250px; /* Desktop height */
  object-fit:cover;
  border-radius:14px;
  margin-bottom:15px;
}

/* ================= CARD TEXT ================= */
.team-card h4{
  font-size:18px;
  margin-bottom:5px;
}

.team-card span{
  font-size:14px;
  color:#555;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= TABLET FIX ================= */
@media (max-width:991px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .team-card{
    display:flex;
    flex-direction:column-reverse; /* text top, image bottom */
    align-items:center;
  }

  .team-img img{
    height350px; /* reduce image height */
    width:300px; /* slightly smaller to fit nicely */
    margin-top:15px; /* spacing between text and image */
  }

  .team-card h4,
  .team-card span{
    text-align:center;
  }
}

/* ================= MOBILE ================= */
@media (max-width:600px){
  .team-grid{
    grid-template-columns:repeat(2,1fr); /* Mobile = 2 cards */
    gap:20px;
  }

  .team-img img{
    height:180px; /* Mobile image height */
  }

  .team-heading{
    font-size:28px;
  }

  .team-subheading{
    font-size:14px;
  }

  .team-card{
    text-align:center;
  }

  .team-card:hover{
    transform:none; /* no hover lift on mobile */
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
  }
}
/* ================= ABOUT / STORY SECTION ================= *//* ================= ABOUT STORY ================= */
.about-story{
  padding:80px 20px;
}

.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr; /* Desktop: 2 columns */
  gap:40px;
  align-items:center;
}

/* IMAGE */
.story-img img{
  width:100%;
  height:500px; /* Desktop height */
  border-radius:16px;
  box-shadow:0 12px 25px rgba(0,0,0,0.15);
  object-fit:cover;
}

/* CONTENT */
.story-content h2{
  font-size:32px;
  margin-bottom:12px;
}

.story-content p{
  color:#555;
  margin-bottom:12px;
  line-height:1.7;
}

/* ================= TABLET ================= */
@media(max-width:992px){
  .story-grid{
    grid-template-columns:1fr; /* single column for tablet */
    gap:30px;
  }

  .story-img img{
    height:550px; /* reduce height for tablet */
    object-fit: cover;
    width:900px;
  }

  .story-content h2{
    font-size:28px;
  }

  .story-content p{
    font-size:15px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:600px){
  .about-story{
    padding:60px 15px;
  }

  .story-img img{
    height:250px; /* reduce height for mobile */
  }

  .story-content h2{
    font-size:24px;
    margin-bottom:10px;
  }

  .story-content p{
    font-size:14px;
    line-height:1.6;
  }
}

/* ====================== ABOUT / GALLERY SECTION ====================== */
.gallery-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.gallery-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  
}

.gallery-section p {
  text-align: center;
  color: #555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===== GALLERY GRID ===== */
/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;   /* 🔥 THIS IS THE FIX */
  gap: 20px;
}

/* ===== IMAGE ===== */
.gallery-grid img {
  width: 100%;
  height: 100%;            /* NOW IT WILL WORK */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.6s cubic-bezier(.4,0,.2,1),
              box-shadow 0.6s ease,
              filter 0.6s ease;
  cursor: pointer;
  display: block;
}

/* ===== HOVER ANIMATION ===== */
.gallery-grid img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== TABLET RESPONSIVE (always 3 columns per row) ===== */
@media (max-width: 992px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* fixed 3 columns */
    gap: 20px; /* space between items */
    justify-items: center; /* center items inside column */
  }

  .gallery-grid .gallery-item{
    width:100%; /* each item fills its column */
  }
}



/* ===== DESKTOP RESPONSIVE (already 4 columns) ===== */
@media (min-width: 993px) {
  .gallery-grid {
    
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== BARBER TIPS SECTION ===== */
.barber-tips-section{
  padding:80px 20px;
  background:#f8f8f8;
}

.barber-tips-container{
  display:grid;
  grid-template-columns:1.3fr 0.7fr; /* left content bigger */
  gap:40px;
  align-items:center;
  max-width:1200px;
  margin:auto;
}

/* LEFT CONTENT */
.barber-tag{
  color:#BF092F;
  font-weight:600;
  letter-spacing:1px;
  display:inline-block;
  margin-bottom:12px;
}

.barber-heading{
  font-size:38px;
  margin-bottom:20px;
  color:#111;
}

.barber-text{
  font-size:16px;
  line-height:1.8;
  color:#333;
  margin-bottom:20px;
}

.barber-points{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}

.barber-points li{
  position:relative;
  padding-left:25px;
  margin-bottom:12px;
  font-size:15px;
  color:#333;
}

.barber-points li::before{
  content:"✔"; /* tick mark */
  position:absolute;
  left:0;
  color:#BF092F;
  font-weight:bold;
}

/* BUTTON */
.barber-btn{
  padding:10px 24px;
  background:#BF092F;
  color:#fff;
  font-weight:600;
  border-radius:5px;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}

.barber-btn:hover{
  background:#fff;
  color:#BF092F;
  border:2px solid #BF092F;
}

/* RIGHT IMAGE */
.barber-tips-right{
  display:flex;
  justify-content:flex-end;
}

.barber-tips-right img{
  width:100%;
  max-width:380px; /* fixed width */
  height:auto;
  border-radius:16px;
  object-fit:cover;
}

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

/* Tablet */
@media(max-width:991px){
  .barber-tips-container{
    grid-template-columns:1fr;
    gap:30px;
  }
  .barber-tips-right{
    justify-content:center;
  }
  .barber-tips-right img{
    max-width:350px;
  }
}

/* Mobile */
@media(max-width:600px){
  .barber-tips-right img{
    max-width:100%;
  }
  .barber-heading{
    font-size:28px;
  }
  .barber-text, .barber-points li{
    font-size:14px;
  }
}


/* ====================== SERVICES PAGE ====================== */
.services-banner {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("../images/barber-banner.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.services-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.services-banner .breadcrumb {
  font-size: 14px;
  opacity: 0.85;
}

/* ================= SECTION HEADER ================= */
.section-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  margin-top: 50px;
  color: #991b1b;
}

.section-subheading {
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ================= SERVICES GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0 20px 60px;
}

/* ================= SERVICE CARD ================= */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}

.service-icon img {
  width: 100%;
  height: 100%;
 
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services-banner h1 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-subheading {
    font-size: 14px;
  }
  
    
  
}

/* services page */
/* ================== GLOBAL ================== */
body {
  font-family: 'Montserrat', sans-serif;
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ================== SECTION HEADINGS ================== */
.section-heading {
  font-size:36px;
  color:#BF092F;
  font-weight:600;
  text-align:center;
}

.section-subheading {
  font-size:16px;
  text-align:center;
  margin-top:10px;
  opacity:0.9;
}
/* ================= PRICING SECTION ================= */
.pricing-section{
  padding:90px 20px;
  background:#000000;
}

.pricing-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.pricing-heading{
  font-size:36px;
  color:#BF092F;
  margin-bottom:10px;
}

.pricing-subheading{
  font-size:16px;
  color:#cbd5e1;
  max-width:600px;
  margin:0 auto 60px;
}

/* ================= GRID ================= */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr); /* Desktop = 3 cards */
  gap:30px;
}

/* ================= CARD ================= */
.pricing-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.4);
  position:relative;
  transition:all 0.4s ease;
}

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

/* POPULAR CARD */
.pricing-card.popular{
  border:2px solid #b91c1c;
}

/* BADGE */
.badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#b91c1c;
  color:#fff;
  font-size:13px;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
}

/* ================= CONTENT ================= */
.package-title{
  font-size:22px;
  color:#000000;
  margin-bottom:12px;
}

.package-price{
  font-size:34px;
  font-weight:700;
  color:#b91c1c;
  margin-bottom:25px;
}

.package-features{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.package-features li{
  font-size:15px;
  color:#000000;
  margin-bottom:12px;
}

/* ================= PRICE BUTTON ================= */
.price-btn{
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  background: #BF092F;
  border: 2px solid #BF092F;
  border-radius: 5px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
}

/* slide background */
.price-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}

/* text */
.price-btn span{
  position: relative;
  z-index: 2;
  color: #ffffff;
  transition: color 0.4s ease;
}

/* hover effect */
.price-btn:hover::before{
  transform: scaleY(1);
}

.price-btn:hover span{
  color: #BF092F;
}

/* ================= TABLET ================= */
@media(max-width:991px){
  .pricing-grid{
    grid-template-columns:repeat(3,1fr); /* Tablet = 2 cards */
    gap:25px;
  }

  .package-title{
    font-size:20px;
  }

  .package-price{
    font-size:28px;
  }

  .package-features li{
    font-size:14px;
  }

  .price-btn{
    padding:10px 28px;
    font-size:14px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:600px){
  .pricing-grid{
    grid-template-columns:1fr; /* Mobile = 1 card */
    gap:20px;
  }

  .package-title{
    font-size:18px;
  }

  .package-price{
    font-size:24px;
  }

  .package-features li{
    font-size:13px;
  }

  .price-btn{
    width:100%; /* Full width button */
    padding:12px 0;
    font-size:15px;
  }
}


/* special offers page */

.services-section{
  padding:80px 0;
  background:#f8fafc;
}

.services-wrapper{
  width:90%;
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.services-title{
  font-size:36px;
  color:#BF092F;
  font-weight:700;
  margin-bottom:10px;
}

.services-subtitle{
  color:#6b7280;
  margin-bottom:50px;
  font-size:16px;
}

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

/* CARD */
.service-card{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:12px;
  overflow:hidden;
}

.service-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */
.service-name{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
}

.service-desc{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}

/* ================== GALLERY SECTION ================== */
.gallery-section {
  padding: 80px 20px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  grid-auto-rows: 200px; /* Each row height fixed */
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05) rotate(0.5deg);
  filter: brightness(1.1);
}

/* ================== RESPONSIVE ================== */
@media(max-width: 992px){ /* Tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-auto-rows: 180px; /* slightly smaller row height */
  }
}

@media(max-width: 576px){ /* Mobile */
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 column */
    grid-auto-rows: 200px; /* row height */
  }
}
/* ================== OFFERS SECTION ================== */
.offers-section {
  padding:80px 20px;
  background:#f8fafc;
}

.offers-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr); /* Desktop: 3 columns */
  gap:25px;
  margin-top:40px;
}

.offer-card {
  position:relative;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor:pointer;
}

.offer-card img{
  width:100%;
  height:320px;   /* Desktop height */
  display:block;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.offer-card h3{
  font-size:20px;
  margin:15px 15px 8px;
  color:#020617;
}

.offer-card p{
  font-size:14px;
  color:#555;
  margin:0 15px 20px;
}

.offer-card:hover {
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

.offer-card:hover img {
  transform:scale(1.05);
}

/* ================== TABLET ================== */
@media(max-width:992px){
  .offers-grid{
    grid-template-columns:repeat(3,1fr); /* Tablet: 2 columns */
    gap:20px;
  }

  .offer-card img{
    height:280px; /* smaller image for tablet */
  }

  .offer-card h3{
    font-size:18px;
  }

  .offer-card p{
    font-size:13px;
  }
}

/* ================== MOBILE ================== */
@media(max-width:600px){
  .offers-grid{
    grid-template-columns:1fr; /* Mobile: 1 column */
    gap:15px;
  }

  .offer-card img{
    height:220px; /* smaller image for mobile */
  }

  .offer-card h3{
    font-size:16px;
  }

  .offer-card p{
    font-size:12px;
  }
}


/* ================== TIPS SECTION ================== */
.tips-section {
  padding: 80px 20px;
  
}

.tips-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
}

.section-subheading {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* GRID */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 20px;
  margin-top: 40px;
}

    

/* admin-dashboard page */
:root{
  --primary:#BF092F;
  --dark:#000000;
  --light:#f4f6f8;
  --white:#ffffff;
  --gray:#6b7280;
}

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

body{
  background:var(--light);
}

/* LAYOUT */
.dashboard-layout{
  display:flex;
  min-height:100vh;
}

/* SIDEBAR */
.sidebar{
  width:240px;
  background:var(--dark);
  color:var(--white);
  padding:25px 20px;
  margin-top: 60px;
}

.logo{
  text-align:center;
  margin-bottom:40px;
}

.menu{
  list-style:none;
}

.menu li{
  padding:14px;
  margin-bottom:10px;
  border-radius:8px;
  cursor:pointer;
  display:flex;
  gap:12px;
  align-items:center;
}

.menu li:hover,
.menu li.active{
  background:var(--primary);
}

/* MAIN */
.main-content{
  flex:1;
  padding:30px;
}

/* TOP BAR */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.topbar h1{
  color:var(--primary);
}

.admin-profile{
  display:flex;
  gap:10px;
  align-items:center;
}

.admin-profile img{
  border-radius:50%;
}

/* QUICK ACTIONS */
.quick-actions{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.btn{
  background:var(--primary);
  color:var(--white);
  border:none;
  padding:10px 18px;
  border-radius:8px;
  cursor:pointer;
}

.btn:hover{
  opacity:0.9;
}

/* STATS */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:30px;
}

.stat-card{
  background:var(--white);
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  position:relative;
}

.stat-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:var(--primary);
  border-radius:14px 0 0 14px;
}

.stat-card p{
  color:var(--gray);
  margin-bottom:10px;
}

.stat-card h2{
  font-size:28px;
}

/* PANELS */
.dashboard-sections{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
  margin-bottom:30px;
}

.panel{
  background:var(--white);
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.panel h3{
  margin-bottom:15px;
}

.list{
  list-style:none;
}

.list li{
  padding:8px 0;
  border-bottom:1px solid #eee;
}

/* PROGRESS BAR */
.amount{
  margin-bottom:10px;
}

.progress-bar{
  width:100%;
  height:10px;
  background:#e5e7eb;
  border-radius:10px;
}

.progress-bar span{
  display:block;
  height:100%;
  width:72%;
  background:var(--primary);
  border-radius:10px;
}

/* TABLE */
.booking-table{
  width:100%;
  border-collapse:collapse;
}

.booking-table th,
.booking-table td{
  padding:12px;
  border-bottom:1px solid #eee;
  text-align:left;
}

.success{
  color:green;
  font-weight:600;
}

.pending{
  color:var(--primary);
  font-weight:600;
}

/* =====================
   RESPONSIVE LAYOUT
===================== */

/* Laptop / Medium screens ≤1024px */
@media (max-width:1024px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .dashboard-sections{
    grid-template-columns:repeat(2,1fr);
  }
  .main-content{
    padding:20px;
  }
  .stat-card h2{
    font-size:24px;
  }
  .panel h3{
    font-size:18px;
  }
}

/* Tablet / Small screens ≤768px */
@media (max-width:768px){

  /* Layout stacked */
  .dashboard-layout{
    flex-direction:column;
  }

  /* Sidebar becomes topbar menu */
  .sidebar{
    width:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:10px 15px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:var(--dark);
    color:var(--white);
  }

  /* Logo / Dashboard name on left */
  .logo{
    flex-shrink:0;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
  }

  /* Menu scrollable on right */
  .menu{
    display:flex;
    overflow-x:auto;
    gap:10px;
    flex:1;
    margin-left:20px; /* space between logo and menu */
  }

  .menu li{
    flex-shrink:0;
    padding:8px 12px;
    font-size:14px;
    white-space:nowrap;
    border-radius:8px;
    cursor:pointer;
  }

  .menu li:hover,
  .menu li.active{
    background:var(--primary);
  }

  /* Main content padding to avoid overlap with fixed sidebar */
  .main-content{
    padding:90px 15px 20px 15px;
  }

  /* Stats cards stacked */
  .stats-grid{
    grid-template-columns:1fr;
    gap:15px;
    margin-bottom:20px;
  }

  /* Panels stacked */
  .dashboard-sections{
    grid-template-columns:1fr;
    gap:15px;
    margin-bottom:20px;
  }

  /* Tables scroll horizontally */
  .booking-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
    width:100%;
  }

  .booking-table th,
  .booking-table td{
    padding:10px 8px;
    font-size:13px;
  }

  /* Buttons full width */
  .btn{
    width:100%;
    padding:10px;
    font-size:14px;
  }
}

/* Mobile / Extra small screens ≤480px */
@media (max-width:480px){

  /* Topbar stacked */
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  /* Sidebar margin for top fixed */
  .sidebar{
    margin-top:60px;
  }

  /* Stats cards full width */
  .stats-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  /* Panels padding reduce */
  .panel{
    padding:15px;
  }

  /* Booking / quick action forms stacked */
  .quick-actions{
    flex-direction:column;
    gap:10px;
  }

  /* Sidebar menu smaller */
  .menu li{
    padding:8px 10px;
    font-size:13px;
  }

  /* Tables scroll horizontally */
  .booking-table{
    font-size:12px;
  }
}

/* user dashboard page  */
:root{
  --primary:#BF092F;
  --dark:#000000;
  --light:#f4f6f8;
  --white:#ffffff;
  --gray:#6b7280;
}

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

body{
  background:var(--light);
}

.logout a{
  color:#BF092F;
  text-decoration:none;
  display:flex;
  align-items:center;
  color:#fff;
  
  gap:8px;
}

.logout a:hover{
  color:#fff;
}

/* LAYOUT */
.user-layout{
  display:flex;
  min-height:100vh;
}

/* SIDEBAR */
.user-sidebar{
  width:240px;
  background:var(--dark);
  color:var(--white);
  padding:25px 20px;
  margin-top:70px ;
}

.user-logo{
  text-align:center;
  margin-bottom:35px;
}

.user-menu{
  list-style:none;
}

.user-menu li{
  padding:14px;
  margin-bottom:10px;
  border-radius:8px;
  display:flex;
  gap:12px;
  align-items:center;
  cursor:pointer;
}

.user-menu li:hover,
.user-menu li.active{
  background:var(--primary);
}

.logout{
  margin-top:30px;
  background:#7f1d1d;
}

/* MAIN */
.user-main{
  flex:1;
  padding:30px;
}

/* TOP BAR */
.user-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
  margin-top: 60px;
}

.user-topbar img{
  border-radius:50%;
}

/* STATS */
.user-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:30px;
 
}

.user-card{
  background:var(--white);
  padding:20px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.user-card p{
  color:var(--gray);
  margin-bottom:8px;
}

/* PANELS */
.panel{
  background:var(--white);
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  margin-bottom:30px;
}

.panel h2{
  margin-bottom:20px;
}

/* TABLE */
.user-table{
  width:100%;
  border-collapse:collapse;
}

.user-table th,
.user-table td{
  padding:12px;
  border-bottom:1px solid #eee;
  text-align:left;
}

/* STATUS */
.confirmed{
  color:green;
  font-weight:600;
}

.completed{
  color:var(--primary);
  font-weight:600;
}

/* BOOKING FORM */
.booking-form{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:15px;
}

.booking-form select,
.booking-form input{
  padding:10px;
  border-radius:8px;
  border:1px solid #ddd;
}

.booking-form button{
  background:var(--primary);
  color:var(--white);
  border:none;
  border-radius:8px;
  cursor:pointer;
}
@media (max-width:1024px){
  .user-sidebar{
    width:200px;
  }

  .user-main{
    padding:20px;
  }

  .user-topbar h1{
    font-size:20px;
  }
}
@media (max-width:768px){

  /* Layout change */
  .user-layout{
    flex-direction:column;
    
  }

  /* Sidebar becomes top menu */
  .user-sidebar{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
   
  }

  
  .user-menu{
    display:flex;
    overflow-x:auto;
    gap:10px;
  }

  .user-menu li{
    white-space:nowrap;
    margin-bottom:0;
    
  }

  .logout{
    display:none;
  }

  .user-main{
    padding:20px;
  }
  .user-stats{
    margin-top: 209px;
    
  }


  /* Tables scroll */
  .user-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
}
@media (max-width:480px){

  /* Topbar */
  .user-topbar{
    
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
.user-sidebar{
    margin-top: 60px;
  }
  /* Stats cards full width */
  .user-stats{
    margin-top: 20px;
    grid-template-columns:1fr;
  }

  /* Panels padding reduce */
  .panel{
    padding:18px;
    
  }

  /* Booking form stacked */
  .booking-form{
    grid-template-columns:1fr;
  }

  /* Sidebar menu smaller */
  .user-menu li{
    padding:10px;
    font-size:14px;
  }
}

/* login page */
:root{
  --primary:#BF092F;
  --secondary:#111827;
  --accent:#000000;
  --white:#fff;
  --gray:#888;
}



/* Login Container */
.login-container{
  display:flex;
  margin-top: 200px ;
  margin-bottom: 190px;
  margin-left: 155px;
  width:90%;
  max-width:1000px;
  background:var(--white);
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
  animation:fadeIn 1s ease;
}

.login-left{
  flex:1;
  background:linear-gradient(45deg,#BF092F,#f43f5e);
  color:var(--white);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:40px;
  text-align:center;
}

.login-left h1 span{
  color:var(--accent);
}

.login-left p{
  margin-top:20px;
  font-size:16px;
  line-height:1.5;
}

.login-right{
  flex:1;
  padding:40px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.login-form{
  width:100%;
  max-width:300px;
  display:flex;
  flex-direction:column;
}

.login-form h2{
  margin-bottom:30px;
  color:var(--primary);
  text-align:center;
}

.input-group{
  position:relative;
  margin-bottom:20px;
}

.input-group i{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  color:var(--gray);
}

.input-group input{
  width:100%;
  padding:12px 12px 12px 35px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
  transition:0.3s;
}

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

.form-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  font-size:14px;
}

.form-options a{
  color:var(--primary);
  text-decoration:none;
}

.form-options a:hover{
  text-decoration:underline;
}

.btn-login{
  background:var(--primary);
  color:var(--white);
  border:none;
  padding:12px;
  border-radius:8px;
  cursor:pointer;
  font-size:16px;
  transition:0.3s;
}

.btn-login:hover{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--primary);
}

.register-text{
  margin-top:20px;
  text-align:center;
  font-size:14px;
}

.register-text a{
  color:var(--primary);
  text-decoration:none;
  font-weight:600;
}

.register-text a:hover{
  text-decoration:underline;
}

/* Responsive */
/* ================== RESPONSIVE ================== */

/* Tablets & small laptops */
@media(max-width:992px){
  .login-container{
    flex-direction:column; /* stack left & right */
    align-items:center;    /* center horizontally */
    margin:100px auto;
  }
  .login-left, .login-right{
    padding:30px;
    width:100%; /* full width */
    max-width:500px; /* optional: limit max width */
  }

  .login-right{
    justify-content:center !important; /* center the form */
    align-items:center !important;     /* center vertically in container */
  }
}

/* Mobile phones */
@media(max-width:600px){
  .login-container{
    flex-direction:column;

    align-items:center;
    margin:0px 17px 50px;
    margin-top: 150px;
  }
  .login-left, .login-right{
    width:100%;
    padding:20px;
  }

  .login-left h1{
    font-size:24px;
  }

  .login-left p{
    font-size:14px;
  }

  .login-right{
    justify-content:center !important; /* center form */
    align-items:center !important;
  }

  .login-form h2{
    font-size:20px;
    margin-bottom:20px;
  }

  .input-group input{
    padding:10px 10px 10px 35px;
    font-size:13px;
  }

  .btn-login{
    font-size:14px;
    padding:10px;
  }

  .register-text{
    font-size:13px;
  }
}


/* Animation */
@keyframes fadeIn{
  0%{opacity:0; transform:translateY(-20px);}
  100%{opacity:1; transform:translateY(0);}
}


/* price details page */

:root{
  --primary:#BF092F;
  --secondary:#000000;
  --white:#fff;
  --gray:#6b7280;
}




/* Hero */



/* 2-Column Layout */
.booking-container{
  display:flex;
  gap:20px;
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

.left-column, .right-column{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* Package Details & Order Summary */
.package-details, .order-summary{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.package-details h2, .order-summary h2{
  color:var(--primary);
  margin-bottom:10px;
}

.package-price{
  font-size:24px;
  font-weight:600;
  margin-bottom:5px;
}

.package-duration{
  color:var(--gray);
  margin-bottom:15px;
}

.package-features{
  list-style:none;
  padding-left:0;
}

.package-features li{
  margin-bottom:8px;
}

/* Booking Form */
.booking-form{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  gap:15px;
}

.booking-form h2{
  color:var(--primary);
  margin-bottom:15px;
  text-align:center;
}

.form-group input,
.form-group textarea{
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
}

textarea{
  resize:none;
}

.booking-form button{
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:8px;
  padding:12px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.booking-form button:hover{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--primary);
}



/* Responsive */
@media(max-width:992px){
  .booking-container{
    flex-direction:column;
  }

/* Terms & Conditions */
.terms-section{
  background:#fff;
  padding:15px 20px;
  border-radius:12px;
  box-shadow:0 6px 15px rgba(0,0,0,0.08);
  margin-bottom:20px;
}

.terms-section label{
  font-size:14px;
  color:#333;
}

.terms-section a{
  color:var(--primary);
  text-decoration:underline;
}

/* Booking Form Button */
.booking-form .btn-book{
  width:100%;
  background:var(--primary);
  color:#fff;
  padding:14px;
  border:none;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.booking-form .btn-book:hover{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--primary);
}
}

/* FAQ Page */

 
.faq-banner{
  min-height:450px;
  background-color: #020617;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#ffffff;
}

.faq-banner-content h1{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.breadcrumb{
  font-size:16px;
  color:#fff;
}

.breadcrumb a{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
}

.breadcrumb a:hover{
  text-decoration:underline;
}

/* Responsive */
@media(max-width:768px){
  .faq-banner{
    min-height:420px;
  }
  .faq-banner-content h1{
    font-size:34px;
  }
}

/* FAQ Page */

.faq-box-section{
  padding:80px 20px;
  background:#f8fafc;
  font-family:"Segoe UI", sans-serif;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section-title{
  font-size:32px;
  margin:50px 0 30px;
  color:#BF092F;
  text-align:left;
}

.section-title.mt{
  margin-top:70px;
}

/* GRID */
.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* BOX */
.faq-box{
  background:#ffffff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.faq-box:hover{
  transform:translateY(-6px);
}

.faq-box h4{
  font-size:18px;
  margin-bottom:12px;
  color:#000000;
}

.faq-box p{
  font-size:15px;
  line-height:1.6;
  color:#4b5563;
  margin-bottom:15px;
}

.faq-date{
  font-size:13px;
  color:#6b7280;
}

/* TABLET */
@media(max-width:991px){
  .faq-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:576px){
  .faq-grid{
    grid-template-columns:1fr;
  }
  .section-title{
    font-size:26px;
  }
}

/* FAQ Secion - 2 */

.more-questions-section{
  padding:90px 20px;
  background:#000000; /* dark professional */
  color:#ffffff;
  font-family:"Segoe UI", sans-serif;
}

.more-box{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.more-box h2{
  font-size:36px;
  margin-bottom:20px;
}

.more-box p{
  font-size:16px;
  line-height:1.7;
  color:#d1d5db;
  margin-bottom:40px;
}


/* Responsive */
@media(max-width:600px){
  .more-box h2{
    font-size:28px;
  }
  .q-btn{
    width:100%;
    justify-content:center;
  }
}


/* 404 page */

.error-wrapper{
  margin-top: 100px;
  text-align:center;
}

.error-wrapper h1{
  font-size:120px;
  color:#BF092F;
}

.error-wrapper h2{
  margin-bottom:10px;
}

.error-wrapper p{
  color:#000000;
  margin-bottom:25px;
}

.btn-back{
  text-decoration:none;
  background:#BF092F;
  color:#fff;
  padding:12px 25px;
  border-radius:8px;
  transition:0.3s;
}

.btn-back:hover{
  background:#fff;
  color:#BF092F;
}

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


.maintenance{
  position:relative;
  width:100%;
  text-align:center;
}

.circle{
  width:380px;
  height:380px;
  background:#eef7ff;
  border-radius:50%;
  margin:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.circle h1{
  color:#0b3c7a;
  font-size:26px;
  margin-bottom:10px;
}

.circle p{
  color:#4d6fa5;
  font-size:14px;
}

/* Plug area */
.plug-wrap{
  position:relative;
  margin-top:-40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.wire{
  width:260px;
  height:4px;
  background:#0b3c7a;
}

/* Plug design */
.plug{
  width:50px;
  height:26px;
  border:3px solid #0b3c7a;
  border-radius:6px;
  position:relative;
}

.plug.left{
  margin-right:-6px;
}

.plug.right{
  margin-left:-6px;
}

.plug span{
  width:4px;
  height:10px;
  background:#0b3c7a;
  position:absolute;
  top:-10px;
}

.plug span:first-child{
  left:14px;
}

.plug span:last-child{
  right:14px;
}

/* home 2 page */
/* ================= HERO FRESH DESIGN ================= */
.hero-fresh{
  padding-top:100px;
  min-height:90vh;
  display:flex;
  align-items:center;
  background: linear-gradient(135deg,#f0f0f0,#ffffff);
}

.hero-fresh-container{
  width:90%;
  margin:auto;
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

/* ---------- HERO IMAGE ---------- */
.hero-fresh-image{
  flex:1;
  text-align:center;
}

.hero-fresh-image img{
  max-width:100%;
  width:100%;
  height:450px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
  object-fit:cover;
}

/* ---------- HERO CONTENT ---------- */
.hero-fresh-content{
  flex:1;
}

.hero-fresh-tag{
  display:inline-block;
  font-weight:600;
  color:#BF092F;
  font-size:14px;
  margin-bottom:10px;
}

.hero-fresh-title{
  font-size:44px;
  margin:15px 0;
  color:#111827;
  font-weight:700;
}

.hero-fresh-subtitle{
  font-size:16px;
  color:#555;
  line-height:1.6;
  margin-bottom:30px;
}


/* ANIMATION */
.animate{
  opacity:0;
  transform:translateY(30px);
  animation:fadeInUp 1s forwards;
}

.hero-fresh-image.animate{
  animation-delay:0.4s;
}

@keyframes fadeInUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

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

/* Tablet */
@media(max-width:991px){
  .hero-fresh-container{
    flex-direction:column;
    text-align:center;
    gap:30px;
  }

  .hero-fresh-title{
    font-size:36px;
  }

  .hero-fresh-subtitle{
    font-size:15px;
  }

  .hero-fresh-image img{
    height:350px;
    border-radius:16px;
  }
}

/* Mobile */
@media(max-width:600px){
  .hero-fresh-title{
    font-size:28px;
  }

  .hero-fresh-subtitle{
    font-size:14px;
  }

  .hero-fresh-image img{
    height:250px;
    border-radius:12px;
  }

  .hero-fresh-btn{
    padding:10px 25px;
    font-size:14px;
  }
}

/* Homw 2 Dark */
.offers-sectionn{
  background-color: #000000;
  padding: 50px 50px  ;
}
.gallery-sectionn{
  background-color: #000000;
  padding: 50px 90px ;

}

.section-subtitlee{
  color:#fff;
}/* ================= ABOUT + COUNTER DESIGN ================= */
.about-counter{
  padding:90px 20px;
  background:#000000;
}

.about-counter-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-counter-left{
  animation:fadeUp 1s ease forwards;
}

.about-counter-tag{
  font-size:14px;
  font-weight:600;
  color:#BF092F;
}

.about-counter-heading{
  font-size:36px;
  margin:15px 0 20px;
  color:#fff;
}

.about-counter-text{
  font-size:16px;
  color:#fff;
  margin-bottom:16px;
}
.team-sectionn{
  background-color: #000000;
  padding: 50px 50px;
  
}
.team-subheadingg{
  color:#fff;}

/* IMAGE RIGHT */
.about-counter-right img{
  width:100%;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
  animation:fadeUp 1.2s ease forwards;
}

/* COUNTER SECTION */
.counter-section{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1200px;
  margin:50px auto 0;
  text-align:center;
}

.counter-box{
  background:#fff;
  padding:25px 15px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s;
}

.counter-box:hover{
  transform:translateY(-6px);
}

.counter-box h3{
  font-size:32px;
  color:#BF092F;
  margin-bottom:8px;
}

.counter-box p{
  font-size:14px;
  color:#555;
}

/* ANIMATION */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

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

/* Tablet */
@media(max-width:991px){
  .about-counter-container{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .about-counter-right img{
    max-width:100%;
  }

  .counter-section{
    grid-template-columns:1fr 1fr;
  }
}

/* Mobile */
@media(max-width:576px){
  .about-counter-heading{
    font-size:28px;
  }

  .about-counter-text{
    font-size:14px;
  }

  .counter-section{
    grid-template-columns:1fr 1fr;
    gap:15px;
  }
}
