body {
    font-family: 'Poppins', sans-serif;
}


/* APP FLOAT – SMALLER & CLEANER */
.app-float{
  display:none;
  position:fixed;
  right:16px;
  bottom:16px;
  width:230px; /* smaller */
  background:#111;
  color:#fff;
  border-radius:16px;
  box-shadow:0 14px 45px rgba(0,0,0,.45);
  z-index:9999;
  overflow:hidden;
  font-family:Poppins, sans-serif;
}

/* HEADER */
.app-float-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 12px;
  background:linear-gradient(135deg,#d50000,#ff3b3b);
  font-size:14px;
  font-weight:600;
}

.app-close{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  line-height:1;
}

/* STORE BUTTONS */
.app-btn{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  text-decoration:none;
  color:white;
  transition:.25s;
  border-top:1px solid rgba(255,255,255,.08);
}

.app-btn i{
  font-size:28px; /* more visible */
}

/* GOOGLE PLAY */
.app-btn.android{
  background:linear-gradient(135deg,#1db954,#1aa34a);
}

/* APP STORE */
.app-btn.ios{
  background:linear-gradient(135deg,#000,#333);
}

.app-btn span small{
  font-size:11px;
  opacity:.85;
}

.app-btn span strong{
  font-size:14px;
  font-weight:700;
}

/* HOVER */
.app-btn:hover{
  opacity:.95;
  transform:translateY(-1px);
}

/* RESTORE ARROW */
.app-restore{
  display:none;
  position:fixed;
  right:0;
  bottom:22px;
  background:#d50000;
  color:white;
  padding:10px 12px;
  border-radius:12px 0 0 12px;
  cursor:pointer;
  z-index:9999;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  transition:.2s;
}

.app-restore:hover{
  background:#ff3b3b;
}

/* BRAND COLORS */
.bg-red {
    background:#d50000 !important;
}
.text-red {
    color:#d50000;
}
.btn-red {
    background:#d50000;
    color:white;
}
.btn-red:hover {
    background:#b40000;
}

/* HERO SLIDER */
.hero {
    position: relative;
    margin-top: 70px; /* navbar offset */
}

.hero-img {
    height: 90vh;
    object-fit: cover;
}

/* HERO OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* BRANCHES SECTION */
.branches-section {
    background: #fff;
}

.branch-card-modern {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.branch-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(213,0,0,0.2);
}

.branch-icon {
    font-size: 36px;
    color: #d50000;
    margin-bottom: 15px;
}

.branch-card-modern h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.branch-phone {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.branch-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.branch-actions .btn {
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .branch-card-modern {
        padding: 25px 15px;
    }
}


.hero-overlay h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

.hero-overlay p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .hero-img {
        height: 70vh;
    }
}


/* HERO */
.hero {
    height:90vh;
    background:url('../images/hero.jpg') center/cover no-repeat;
    position:relative;
}
.hero-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}

/* SECTION */
.section {
    padding:80px 0;
}

/* MENU CARD */
.menu-card {
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.menu-card img {
    width:100%;
    height:240px;
    object-fit:cover;
}
.menu-card h5 {
    margin:15px 0 5px;
}

/* BRANCH CARD */
.branch-card {
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,.15);
    text-align:center;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.4);
}
.whatsapp-float:hover {
    background:#1ebe5d;
    color:white;
}

/* MENU SECTION */
.menu-section {
    background: #f8f9fa;
}

.menu-card-modern {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.menu-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(213,0,0,0.25);
}

.menu-card-modern img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.menu-body {
    padding: 20px;
    text-align: left;
}

.menu-body h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.menu-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 18px;
    font-weight: 700;
    color: #d50000;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-body {
        text-align: center;
    }
    .menu-footer {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===============================
   RESERVATION FORM – MODERN TOUCH
================================ */
#reservation .form-control {
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    transition: all .2s ease;
}

#reservation .form-control:focus {
    border-color: #b00000;
    box-shadow: 0 0 0 3px rgba(176,0,0,.15);
}

#reservation textarea {
    resize: none;
}

#reservation button {
    padding: 14px 50px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: .5px;
}

/* ===============================
   RESERVATION FORM – MODERN TOUCH
================================ */
#reservation .form-control {
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    transition: all .2s ease;
}

#reservation .form-control:focus {
    border-color: #b00000;
    box-shadow: 0 0 0 3px rgba(176,0,0,.15);
}

#reservation textarea {
    resize: none;
}

#reservation button {
    padding: 14px 50px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: .5px;
}


/* ===============================
   REVIEWS – SLIDER STYLE
================================ */
.reviews-slider .review-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s ease;
}

.reviews-slider .review-card:hover {
    transform: translateY(-6px);
}

.review-stars {
    color: #f4c150;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 15px;
    color: #555;
}

.review-card strong {
    display: block;
    margin-top: 10px;
    color: #b00000;
}


/* ===============================
   CONTACT SECTION – CLEAN LOOK
================================ */
#contact {
    background: linear-gradient(135deg,#111,#000);
}

#contact i {
    color: #f4c150;
    margin: 0 6px;
}

#contact p {
    font-size: 16px;
    opacity: .9;
}
/* ===============================
   CONTACT SECTION – PRO UPGRADE
================================ */
#contact h2 {
    font-weight: 700;
    letter-spacing: .5px;
}

#contact p {
    font-size: 16px;
    margin-bottom: 8px;
}

#contact i {
    font-size: 18px;
    color: #f4c150;
}

#contact .container {
    max-width: 900px;
}

#contact p:last-child {
    font-size: 17px;
    font-weight: 500;
}

/* ===========================
   GALLERY LIGHTBOX
=========================== */
.gallery-img {
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: zoomIn .35s ease;
}

@keyframes zoomIn {
    from { transform: scale(.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.social-float{
    position: fixed;
    right: 18px;
    bottom: 90px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    transition: all .3s ease;
}

.social-icon:hover{
    transform: scale(1.12);
    opacity: 0.9;
}

/* Brand Colors */
.whatsapp{ background:#25D366; }
.facebook{ background:#1877F2; }
.instagram{ 
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); 
}
.tiktok{ background:#000; }

/* Mobile Optimization */
@media(max-width:768px){
    .social-icon{
        width:42px;
        height:42px;
        font-size:20px;
    }
}
.section-tag{
    color:#b30000;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:13px;
}

.about-image-wrapper{
    position:relative;
}

.about-highlight{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#b30000;
    margin-top:10px;
}

.about-highlight i{
    font-size:20px;
}

.info-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    height:100%;
    transition:all .3s ease;
}

.info-card:hover{
    transform:translateY(-6px);
}

.icon-box{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#b30000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:15px;
}

.bg-red{
    background:#a30000;
}

.navbar-brand{
    letter-spacing:0.5px;
}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    font-size:26px;
    padding:14px 16px;
    border-radius:50%;
    z-index:999;
    box-shadow:0 6px 20px rgba(0,0,0,.3);
}

.whatsapp-float:hover{
    background:#1ebe5d;
    color:#fff;
}

.menu-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.menu-card-horizontal{
    display:flex;
    gap:20px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s ease;
}

.menu-card-horizontal:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 40px rgba(0,0,0,.15);
}

.menu-card-horizontal img{
    width:200px;
    height:150px;
    object-fit:cover;
}

.menu-details{
    flex:1;
    padding:16px;
}

.menu-details h5{
    font-weight:600;
    margin-bottom:6px;
}

.menu-desc{
    font-size:14px;
    color:#666;
    margin-bottom:12px;
}

.menu-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu-bottom .price{
    font-size:18px;
    font-weight:700;
    color:#a30000;
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){
    .menu-card-horizontal{
        flex-direction:column;
    }

    .menu-card-horizontal img{
        width:100%;
        height:220px;
    }
}


.branch-section{
    background:#f9f9f9;
}

.branch-card{
    background:rgba(255,255,255,0.95);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    transition:.3s ease;
}

.branch-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.branch-info{
    padding:18px 20px;
    background:linear-gradient(135deg,#a30000,#d50000);
    color:#fff;.branch-actions{
    margin-top:10px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.branch-actions .btn{
    font-size:13px;
    padding:6px 10px;
    border-radius:8px;
}

.gallery-item img{
    transition:transform .3s ease, box-shadow .3s ease;
    cursor:pointer;
}

.gallery-item img:hover{
    transform:scale(1.05);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.gallery-filter button{
    margin:5px;
    border-radius:30px;
    padding:6px 18px;
    font-weight:500;
}

.gallery-filter .active{
    background:#c40000;
    color:white;
}

.card{
  border-radius:18px;
}

.form-control, .form-select{
  border-radius:12px;
  padding:12px;
}

.btn-red{
  background:#c40000;
  color:white;
  border:none;
}

.btn-red:hover{
  background:#a80000;
}

.bg-black{ background:#000; }
.rounded-4{ border-radius:18px; }

.btn-outline-light:hover{
  background:#c40000;
  border-color:#c40000;
}

.card{
  border-radius:18px;
}

}

.branch-info h5{
    font-weight:600;
    margin-bottom:6px;
}

.branch-info p{
    margin:0;
    font-size:14px;
}

.branch-card iframe{
    width:100%;
    height:280px;
    border:0;
}
.branch-actions{
    margin-top:10px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.branch-actions .btn{
    font-size:13px;
    padding:6px 10px;
    border-radius:8px;
}

.gallery-item img{
    transition:transform .3s ease, box-shadow .3s ease;
    cursor:pointer;
}

.gallery-item img:hover{
    transform:scale(1.05);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.gallery-filter button{
    margin:5px;
    border-radius:30px;
    padding:6px 18px;
    font-weight:500;
}

.gallery-filter .active{
    background:#c40000;
    color:white;
}

.card{
  border-radius:18px;
}

.form-control, .form-select{
  border-radius:12px;
  padding:12px;
}

.btn-red{
  background:#c40000;
  color:white;
  border:none;
}

.btn-red:hover{
  background:#a80000;
}

.bg-black{ background:#000; }
.rounded-4{ border-radius:18px; }

.btn-outline-light:hover{
  background:#c40000;
  border-color:#c40000;
}

.card{
  border-radius:18px;
}

/* APP FLOAT */
.app-float{
  position:fixed;
  right:0;
  top:45%;
  transform:translateY(-50%);
  width:190px;
  background:#fff;
  box-shadow:-4px 8px 30px rgba(0,0,0,.25);
  border-radius:14px 0 0 14px;
  z-index:9999;
  overflow:hidden;
  font-family:'Poppins',sans-serif;
}

.app-float-header{
  background:#c40000;
  color:#fff;
  text-align:center;
  padding:10px;
  font-weight:600;
  font-size:14px;
}

.app-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  text-decoration:none;
  border-bottom:1px solid #eee;
  transition:.25s;
}

.app-btn:last-child{ border-bottom:none; }

.app-btn i{
  font-size:26px;
}

.app-btn span{
  line-height:1.1;
}

.app-btn.android{
  color:#3ddc84;
}

.app-btn.ios{
  color:#000;
}

.app-btn:hover{
  background:#f7f7f7;
  transform:translateX(-4px);
}

/* MOBILE BEHAVIOR */
@media(max-width:768px){
  .app-float{
    width:60px;
  }
  .app-float-header,
  .app-btn span{
    display:none;
  }
  .app-btn{
    justify-content:center;
  }
}

/* APP FLOAT */
.app-float{
  display:none;
  position:fixed;
  right:18px;
  bottom:18px;
  width:260px;
  background:#111;
  color:#fff;
  border-radius:14px;
  box-shadow:0 12px 40px rgba(0,0,0,.4);
  z-index:9999;
  overflow:hidden;
}

.app-float-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 14px;
  background:#d50000;
  font-weight:600;
}

.app-close{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.app-btn{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  text-decoration:none;
  color:white;
  transition:.2s;
}

.app-btn i{
  font-size:26px;
}

.app-btn.android{background:#1e7e34}
.app-btn.ios{background:#000}

.app-btn:hover{
  opacity:.9;
  transform:translateY(-1px);
}

/* RESTORE ARROW */
.app-restore{
  display:none;
  position:fixed;
  right:0;
  bottom:22px;
  background:#d50000;
  color:white;
  padding:12px 14px;
  border-radius:12px 0 0 12px;
  cursor:pointer;
  z-index:9999;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}


.nav-login-btn{
    background: #d50000;          /* brand red */
    color: #fff !important;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    margin-left: 10px;
    transition: all .25s ease;
}

.nav-login-btn:hover{
    background: #a80000;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

