/* ================= GLOBAL ================= */
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:#222;line-height:1.7}
.container{width:90%;max-width:1100px;margin:auto}
h1{color:#fff}
h2{color:#ed3237}

/* ================= HEADER ================= */
header{
  background:#000;
  color:#fff;
  padding:10px 0;
  position:relative; /* anchor for mobile menu */
}

header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ================= LOGOS ================= */
.logo img{height:37px}
.logo2 img{height:42px}

/* ================= MENU (DESKTOP) ================= */
.top-menu{
  flex:1;
  display:flex;
  justify-content:center;
}

.top-menu ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
}

.top-menu li{
  display:flex;
  align-items:center;
}

.top-menu li:not(:last-child)::after{
  content:"|";
  margin:0 14px;
  color:#fff;
  opacity:.7;
}

.top-menu a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.top-menu a:hover,
.top-menu a.active{color:#ed3237}

/* ================= HAMBURGER ================= */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px 0;
}

/* ================= MOBILE MENU (DROPDOWN) ================= */
@media(max-width:1023px){

  .logo2{display:none}

  .menu-toggle{display:block}

  .top-menu{
    position:absolute;
    top:100%;
    right:0;
    width:220px;
    background:#000;
    display:none;
    padding:15px 0;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
  }

  .top-menu.open{display:block}

  .top-menu ul{
    flex-direction:column;
    gap:14px;
    text-align:right;
    padding:0 20px;
  }

  .top-menu li::after{display:none}

  .top-menu a{font-size:16px}
}




/* HERO HOME PAGE*/

/* HERO */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero-slider{
  height:100%;
  position:relative;
}


/* ================================
   HOME PAGE HERO HEIGHT FIX
   Match Franchise Page Hero
================================ */

/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 550px;
  }
}



/* SLIDES */
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}

.hero-slide.active{
  opacity:1;
  z-index:1;
}

/* OVERLAY – 80% */
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.8);
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:20px;
}

.hero-content h1{
  font-size:42px;
  margin-bottom:30px;
}

.hero-content p{
  font-size:18px;
  margin-bottom:0px;
  max-width:600px;
}

/* BUTTON – FIXED */
.hero-btn{
  display:inline-block;
  padding:14px 34px;
  background:#ed3237;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-size:15px;
  font-weight:600;
  transition:all .3s ease;
}

.hero-btn:hover{
  background:#c6282c;
  transform:translateY(-2px);
}

/* TEXT ANIMATION */
.animate{
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp .8s forwards;
}

.delay{animation-delay:.3s}
.delay2{animation-delay:.6s}

@keyframes fadeUp{
  to{opacity:1;transform:translateY(0)}
}



/* ================= HERO AUTO DOTS ================= */
.hero-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  z-index:5;
}

.hero-dots button{
  width:10px;
  height:10px;
  padding:0;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.5);
  cursor:pointer;
  transition:.3s;
}

.hero-dots button.active{
  background:#ed3237;
  transform:scale(1.4);
}



/* MOBILE */
@media(max-width:768px){
  .hero-content h1{font-size:28px}
  .hero-content p{font-size:16px}
  .hero-arrow{
    width:38px;
    height:38px;
    font-size:18px;
  }
}



.about-story{
  padding:70px 0;
  background:url("images/about-bg.jpg") center/cover no-repeat;
  text-align:center;
  position:relative;
}
.about-story::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.85);
  z-index:1;
}

.about-story .container{
  position:relative;
  z-index:1;
}



.about-story h2{
  font-size:28px;
  margin-bottom:35px;
  color:#ed3237;
}

.about-story p{
  max-width:900px;
  margin:0 auto 18px;
  font-size:16px;
  line-height:1.6;
  color:#333;
}



.favourite-section{
  padding:70px 0;
  background:#fff;
}

.favourite-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:50px;
  align-items:center;
}

.favourite-image img{
  width:100%;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.favourite-content h2{
  color:#ed3237;
  font-size:28px;
  margin-bottom:20px;
}

.favourite-content p{
  font-size:16px;
  line-height:1.6;
  color:#333;
  margin-bottom:16px;
}

/* MOBILE */
@media(max-width:768px){
  .favourite-grid{
    grid-template-columns:1fr;
  }
}





/* ======================================================
   OUR PRODUCTS SECTION
====================================================== */

.products-section{
  padding:20px 0px 70px 0px;
  background:#ffffff;
  text-align:center;
}

/* TITLE */
.products-title{
  font-size:28px;
  color:#ed3237;
  margin-bottom:40px;
  letter-spacing:2px;
}

/* SLIDER WRAPPER */
.products-slider{
  position:relative;
  overflow:hidden;
}

/* TRACK */
.products-track{
  display:flex;
  gap:30px;
  transition:transform 0.6s ease;
  will-change:transform;
}

/* PRODUCT CARD */
.product-card{
  flex:0 0 calc(33.33% - 20px);
  background:#ffffff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.product-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:transform 0.5s ease;
}

/* PRODUCT NAME BAR */
.product-name{
  background:#ed3237;
  color:#ffffff;
  padding:18px;
  font-size:18px;
  font-weight:600;
  letter-spacing:1px;
  text-align:center;
}

/* HOVER ZOOM (DESKTOP ONLY) */
@media (hover:hover){
  .product-card:hover{
    transform:scale(1.05);
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
  }

  .product-card:hover img{
    transform:scale(1.08);
  }
}

/* ARROWS */
.product-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ffffff;
  border:none;
  font-size:20px;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  z-index:10;
  transition:all 0.3s ease;
  color:#ed3237; 
}

.product-arrow.prev{
  left:10px;
}

.product-arrow.next{
  right:10px;
}

.product-arrow:hover{
  background:#ed3237;
  color:#ffffff;
}

/* DOTS */
.products-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:30px;
}

.products-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#cccccc;
  cursor:pointer;
  transition:all 0.3s ease;
}

.products-dots span.active{
  background:#ed3237;
  transform:scale(1.3);
}

/* CTA BUTTON */
.products-cta{
  margin-top:40px;
  text-align:center;
}

.menu-btn{
  display:inline-block;
  padding:14px 40px;
  background:#ed3237;
  color:#ffffff;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  letter-spacing:2px;
  border-radius:30px;
  transition:all 0.3s ease;
}

.menu-btn:hover{
  background:#c6282c;
  transform:translateY(-2px);
}

/* ================= TABLET ================= */
@media(max-width:1023px){
  .product-card{
    flex:0 0 calc(50% - 15px);
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .product-card{
    flex:0 0 100%;
  }

  .product-card img{
    height:280px;
  }

  .product-arrow{
    width:36px;
    height:36px;
    font-size:18px;
  }
}






/* ================= OUR PRESENCE ================= */

.presence-section{
  padding:70px 0;
  background:#ffffff;
}

.presence-title{
  text-align:center;
  font-size:28px;
  color:#ed3237;
  margin-bottom:50px;
}

.presence-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
}

/* CONTENT */
.presence-content p{
  font-size:16px;
  color:#444;
  line-height:1.7;
  margin-bottom:18px;
}

/* IMAGE */
.presence-image img{
  width:100%;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .presence-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .presence-title{
    font-size:24px;
    margin-bottom:35px;
  }

  .presence-content p{
    font-size:15px;
  }
}





footer .footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

footer .footer-links a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

footer .footer-links a:hover{
  color:#ed3237;
  text-decoration:underline;
}

footer .footer-links span{
  color:#fff;
  font-size:14px;
}



/* FOOTER */
footer{background:#000000;color:#fff;padding:30px 0;text-align:center}

.head1 h1{
  color:#000;
  margin-bottom:20px;
}

/* FIXED ENQUIRE BUTTON */
.enquire-fixed{position:fixed;z-index:9999;background:#ed3237;color:#fff;font-weight:700;text-decoration:none;padding:8px 14px;box-shadow:0 10px 25px rgba(0,0,0,.25);letter-spacing:1px;text-transform:uppercase}
@media(min-width:769px){.enquire-fixed{top:50%;right:-50px;transform:translateY(-50%) rotate(-90deg);transform-origin:center;border-radius:6px 6px 0 0}}
@media(max-width:768px){.enquire-fixed{bottom:10px;left:50%;transform:translateX(-50%);border-radius:6px}}








/* Franchise Page */
.home{position:relative;height:110vh;overflow:hidden}
@media(max-width:768px){.home{height:95vh}}
.home-bg{position:absolute;inset:0;background-size:cover;background-position:center;background-image:url('images/hero_bg1.webp');animation:heroSlide 18s infinite;animation-delay:2s;will-change:background-image}
.home-overlay{position:absolute;inset:0;background:rgba(0,0,0,.8)}
.home-content{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;color:#fff;padding:20px}
.home-mark{font-size:48px;margin-bottom:0px}
.home-content h1{font-size:42px;margin-bottom:0px}
.home-content p{font-size:18px}
.home-stats{font-size:22px;font-weight:600;margin:0px 0px 20px 0px;color:#ed3237}
.home-cta{padding:8px 30px;border-radius:8px;color:#fff;text-decoration:none;background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.35)}
.home-cta:hover{background:#ed3237;border-color:#ed3237}
@keyframes heroSlide{0%{background-image:url('images/hero_bg1.webp')}33%{background-image:url('images/hero_bg2.webp')}66%{background-image:url('images/hero_bg3.webp')}100%{background-image:url('images/hero_bg1.webp')}}
.brand-name{
  display:block;
  color:#ed3237;
  font-size:1.1em;
}
.brand-name{letter-spacing:2px;font-weight:700}



/* FORM */
.form{background:#f3f3f3;padding:60px 0}
.form-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:30px}
@media(max-width:768px){.form-grid{grid-template-columns:1fr}}
.highlight{background:#ed3237;color:#fff;padding:12px;display:inline-block;margin-bottom:20px}
.form-content{padding:10px 20px}
.form-intro{font-size:16px;color:#444;max-width:490px;margin-bottom:20px}
.form-points{list-style:none;padding:0;margin:0}
.form-points li{display:flex;align-items:center;gap:10px;font-size:16px;color:#222;margin-bottom:12px}
.form-points i{color:#ed3237;font-size:18px}
.form-box{background:#fff;padding:20px;border-radius:6px;box-shadow:0 0 10px rgba(0,0,0,.1)}

/* ================= FORM ================= */
.form input,
.form select,
.form textarea,
.form button{
  width:100%;
  padding:10px;
  margin-top:10px;
  border:1px solid #ccc;
  border-radius:4px;
}


button{background:#ed3237;color:#fff;border:none;font-weight:700;cursor:pointer}
.form-box-title{
  background:#ed3237;
  color:#fff;
  font-weight:700;
  text-align:center;
  padding:14px;
  margin:-20px -20px 10px;
  border-radius:6px 6px 0 0;
  letter-spacing:1px;
}
.form-box-title{text-transform:uppercase}
.form-note{
  font-size:13px;
  color:#666;
  margin-top:10px;
}


/* ABOUT */
.about{padding:70px 0}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
@media(max-width:768px){.about-grid{grid-template-columns:1fr}}
.about-content p{margin-bottom:15px;color:#444}
.about-slider{overflow:hidden;border-radius:12px}
.about-slides{display:flex;transition:transform .2s ease}
.about-slides img{width:100%;flex-shrink:0;object-fit:cover;border-radius:12px}

/* REASONS PARTNER */
.reasons-partner{padding:55px 0 75px;text-align:center;background:#ed3237}
.reasons-title{font-size:28px;margin-bottom:50px;text-transform:uppercase;font-weight:700;color:#fff}
.reasons-title:after{content:"";display:block;width:60px;height:3px;background:#fff;margin:10px auto 0}
.reasons-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:40px}
@media(max-width:992px){.reasons-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:576px){.reasons-grid{grid-template-columns:1fr}}
.reason-icon{font-size:52px;color:#fff;margin-bottom:20px}
.reason-item h3{color:#fff;font-size:18px;margin-bottom:10px}
.reason-item p{font-size:15px;color:#fff}
.reason-item:hover .reason-icon{transform:scale(1.1);transition:.3s}

/* WHY FRANCHISE */
.why-franchise{padding:60px 0;text-align:center}
.why-title{font-size:28px;margin-bottom:30px}
.why-title:after{content:"";display:block;width:60px;height:3px;background:#ed3237;margin:10px auto 0}
.why-subtitle{max-width:700px;margin:0 auto 60px;color:#555}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px}
@media(max-width:768px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.why-grid{grid-template-columns:1fr}}
.why-icon{font-size:48px;color:#ed3237;margin-bottom:15px}
.why-item h3{color:#000;font-size:17px;font-weight:500}
.why-item:hover .why-icon{transform:scale(1.1);transition:.3s}

/* INVESTMENT */
.investment-details{padding:70px 0;background:#fafafa;text-align:center}
.investment-title{font-size:28px;margin-bottom:20px;font-weight:700}
.investment-title:after{content:"";display:block;width:60px;height:3px;background:#ed3237;margin:10px auto 0}
.investment-subtitle{max-width:700px;margin:0 auto 60px;color:#555}
.investment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:25px}
@media(max-width:992px){.investment-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:576px){.investment-grid{grid-template-columns:1fr}}
.investment-card{background:#fff;padding:30px 20px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.08)}
.investment-card h3{font-size:14px;font-weight:700;letter-spacing:1px;margin-bottom:15px;color:#000}
.investment-card p{font-size:16px}
.investment-note{margin-top:25px;font-size:13px}

/* AWARDS */
.awards{background:#ed3237;padding:40px 0px 90px 0px;color:#fff}
.awards-title{color:#fff;text-align:center;font-size:32px;margin-bottom:10px}
.awards-title:after{content:"";display:block;width:60px;height:3px;background:#fff;margin:10px auto 0}
.awards-subtitle{text-align:center;font-size:16px;opacity:.9;margin-bottom:40px}

.awards-slider{overflow:hidden}
.awards-track{display:flex;gap:10px;transition:transform .6s ease}
.awards-track img{flex:0 0 calc(20% - 8px);max-width:calc(20% - 8px);background:#fff;padding:5px;border-radius:6px}
@media(max-width:768px){.awards-track img{flex:0 0 calc(50% - 5px);max-width:calc(50% - 5px)}}





/* FRANCHISE PAGE – MOBILE HERO IMAGE ONLY */
@media (max-width: 768px) {
  body.franchise-page .home {
    background-image: url("images/franchise-home-mobile.jpeg") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width:768px){
  body.franchise-page .home::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.7);
    z-index:1;
  }
  body.franchise-page .home > *{
    position:relative;
    z-index:2;
  }

/* REDUCE HERO HEIGHT ON MOBILE – FRANCHISE PAGE */
  body.franchise-page .home {
    height: 80vh;
    min-height: 550px;
  }
  
  /* MOBILE FONT SIZE FIX – FRANCHISE HOME SECTION */
  .home h1 {
    font-size: 35px;
    line-height: 1.4;
  }
  .home p{font-size:16px}  
  
}







/* ======================================================
   MENU PAGE
====================================================== */

/* ================= MENU HERO ================= */
.menu-hero{
  width:100%;
  height:98vh;
  background:url("images/menu_h.webp") center/cover no-repeat;
}

/* ================= MENU CONTENT ================= */
.menu-page{
  padding:30px 0;
  background:#ffffff;
  text-align:center;
}

/* TITLE */
.menu-title{
  font-size:32px;
  color:#ed3237;
  margin-bottom:10px;
  letter-spacing:2px;
}

/* SUBTITLE */
.menu-subtitle{
  font-size:16px;
  color:#555;
  margin-bottom:40px;
}

/* MENU IMAGES GRID */
.menu-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:flex-start;
}

/* MENU IMAGE */
.menu-image img{
  width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* DISCLAIMER */
.menu-note{
  margin-top:50px;
  font-size:14px;
  color:#666;
  text-align:center;
  letter-spacing:0.5px;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  /* MOBILE HERO — FIT WIDTH */
  .menu-hero{
    height:37vh;
    background:url("images/menu_h_m.webp") top center no-repeat;
    background-size:contain;   /* FIT WIDTH */
    background-color:#fff;     /* fills empty space if any */
  }

  .menu-images{
    grid-template-columns:1fr;
    gap:30px;
  }

  .menu-title{
    font-size:26px;
  }
}



/* LOCATION PAGE – MOBILE BUTTON SPACING FIX */
@media (max-width: 768px) {
  .presence-content .menu-btn {
    display: inline-block;
    margin-bottom: 20px;
  }
}

