/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#111;
  color:#fff;
  line-height:1.6;
}

/* NAVBAR */
/* PREMIUM NAVBAR */
.navbar{
  position:sticky;
  top:0;
  z-index:999;
  padding:16px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}


.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo h3{
  font-size:20px;
  font-weight:700;
}

.logo small{
  font-size:12px;
  color:#f4a261;
  letter-spacing:0.5px;
}


nav a{
  color:#fff;
  text-decoration:none;
  margin-left:26px;
  font-size:15px;
  font-weight:600;
  position:relative;
  padding-bottom:6px;
  transition:0.3s;
}

nav a:hover{
  color:#f4a261;
}

/* underline animation */
nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#f4a261;
  transition:0.3s;
}

nav a:hover::after,
nav a.active::after{
  width:100%;
}

nav a:hover{
  color:#f4a261;
}


nav a:hover{
  color:#e63946;
}

/* HERO – FIXED & CINEMATIC */
.hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  padding:60px 40px;

  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("../images/hero.jpg") center center / cover no-repeat;

  background-attachment:scroll;
}

.hero-text h1{
  font-size:48px;
  max-width:600px;
}

.hero-text p{
  margin:12px 0 20px;
  font-size:20px;
  color:#f4a261;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-weight:bold;
  display:flex;
  align-items:center;
  gap:8px;
  transition:transform .2s, box-shadow .2s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 0 15px rgba(255,255,255,.2);
}

.btn img{
  width:20px;
}

.zomato{background:#e63946;}
.call{background:#333;}
.whatsapp{background:#25D366;}

/* POPULAR PIZZAS */
.menu{
  padding:70px 30px;
  text-align:center;
}

.menu h2{
  font-size:32px;
  margin-bottom:40px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.card{
  background:#1a1a1a;
  border-radius:16px;
  padding:15px;
  transition:transform .3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card img{
  width:100%;
  border-radius:12px;
}

.card h3{
  margin-top:12px;
}

/* GOOGLE REVIEWS */
.reviews{
  padding:80px 30px;
  background:#0d0d0d;
  text-align:center;
}

.review-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  margin:40px 0;
}

.review-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:15px;
  max-width:900px;
}

.review-slider::-webkit-scrollbar{
  display:none;
}

.review-card{
  min-width:260px;
  background:#1a1a1a;
  padding:22px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.5);
  transition:transform .3s, box-shadow .3s;
}

.review-card:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px rgba(244,162,97,.6);
}

.review-card h4{
  color:#f4a261;
  margin-bottom:5px;
}

.review-card span{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}

.review-card p{
  font-size:14px;
  opacity:.9;
}

/* ARROWS */
.arrow{
  background:#e63946;
  color:#fff;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  font-size:22px;
  cursor:pointer;
}

.arrow:hover{
  background:#f4a261;
}

/* FOOTER WITH BACKGROUND IMAGE */
footer{
  background:
    linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)),
    url("../images/why-bg.jpg") center/cover no-repeat;

  padding:30px 20px;
  text-align:center;
  font-size:14px;
  color:#fff;
}


/* RESPONSIVE */
@media(max-width:768px){
  .hero-text h1{
    font-size:32px;
  }
  nav{
    display:none;
  }
}
/* MENU PAGE */
.menu-hero{
  padding:80px 20px;
  text-align:center;
  background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
  url("images/hero1.jpg") center/cover no-repeat;
}

.menu-hero h1{
  font-size:42px;
}

.menu-hero p{
  color:#f4a261;
  margin-top:10px;
}

.menu-section{
  padding:70px 30px;
  text-align:center;
}

.menu-section.dark{
  background:#0d0d0d;
}

.menu-section h2{
  font-size:32px;
  margin-bottom:40px;
}

.menu-card{
  background:#1a1a1a;
  border-radius:18px;
  padding:15px;
  transition:.3s;
}

.menu-card:hover{
  transform:translateY(-6px);
}

.menu-card img{
  width:100%;
  border-radius:14px;
}

.menu-card h3{
  margin-top:12px;
}

.menu-card p{
  font-size:14px;
  opacity:.8;
}

.menu-card.small h3{
  margin-top:10px;
}

.menu-cta{
  padding:80px 20px;
  text-align:center;
  background:#e63946;
}
.menu-cta h2{
  margin-bottom:20px;
}
/* MENU CTA FIX */
.menu-cta{
  padding:70px 20px;
  text-align:center;
  background:linear-gradient(135deg,#e63946,#c1121f);
}

.menu-cta h2{
  font-size:34px;
  margin-bottom:10px;
}

.menu-cta p{
  margin-bottom:25px;
  opacity:.9;
}

.zomato-cta{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 30px;
  background:#fff;
  color:#e63946;
  font-weight:bold;
  text-decoration:none;
  border-radius:40px;
  font-size:16px;
  transition:.3s;
}

.zomato-cta img{
  width:26px;
}

.zomato-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.3);
}
/* ABOUT PAGE */
.about-hero{
  padding:90px 20px;
  text-align:center;
  background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
  url("../images/hero.jpg") center/cover no-repeat;
}

.about-hero h1{
  font-size:42px;
}

.about-hero p{
  color:#f4a261;
  margin-top:10px;
}

.about-section{
  padding:80px 30px;
}

.about-section.dark{
  background:#0d0d0d;
}

.about-content{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}

.about-content.reverse{
  flex-direction:row-reverse;
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:30px;
  margin-bottom:15px;
}

.about-text p{
  margin-bottom:15px;
  opacity:.9;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:18px;
}

/* VISION */
.about-vision{
  padding:90px 30px;
  text-align:center;
  background:#e63946;
}

.about-vision h2{
  font-size:34px;
  margin-bottom:20px;
}

.about-vision p{
  max-width:800px;
  margin:10px auto;
}
/* CONTACT PAGE */
.contact-hero{
  padding:90px 20px;
  text-align:center;
  background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
  url("../images/hero1.jpg") center/cover no-repeat;
}

.contact-hero h1{
  font-size:42px;
}

.contact-hero p{
  color:#f4a261;
  margin-top:10px;
}

/* CONTACT GRID */
.contact-section{
  padding:80px 30px;
}

.contact-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
}

.contact-card{
  background:#1a1a1a;
  padding:25px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
}

.contact-card:hover{
  transform:translateY(-6px);
}

.contact-card h3{
  margin-bottom:10px;
}

.contact-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  background:#333;
  color:#fff;
  font-weight:bold;
  transition:.3s;
}

.contact-btn:hover{
  transform:translateY(-3px);
}

.contact-btn.whatsapp{
  background:#25D366;
}

.contact-btn.zomato{
  background:#e63946;
}

/* MAP */
.map-section{
  padding:80px 30px;
  text-align:center;
  background:#0d0d0d;
}

.map-section h2{
  margin-bottom:30px;
}

.map-box{
  max-width:1100px;
  margin:auto;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
}

.map-box iframe{
  width:100%;
  height:400px;
  border:0;
}
/* STICKY ACTION BUTTONS */
.sticky-actions{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

.sticky-btn{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.4);
  transition:.3s;
}

.sticky-btn:hover{
  transform:scale(1.1);
}

.sticky-btn.call{
  background:#333;
}

.sticky-btn.whatsapp{
  background:#25D366;
}

.sticky-btn.zomato{
  background:#e63946;
}
nav a.active{
  color:#f4a261;
  border-bottom:2px solid #f4a261;
  padding-bottom:4px;
}
/* HOME PAGE RATINGS */
.rating-badges{
  margin-top:25px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.rating{
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:bold;
  text-decoration:none;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:6px;
  box-shadow:0 6px 15px rgba(0,0,0,.4);
  transition:.3s;
}

.rating:hover{
  transform:translateY(-3px);
}

.rating.google{
  background:#4285F4; /* Google blue */
}

.rating.zomato{
  background:#e63946; /* Zomato red */
}
/* =========================
   MOBILE POLISH (STEP 1)
========================= */
@media(max-width:768px){

  /* HERO CENTER ALIGN */
  .hero{
    padding:30px 20px;
    text-align:center;
    justify-content:center;
  }

  .hero-text{
    width:100%;
  }

  .hero-text h1{
    font-size:30px;
    line-height:1.3;
  }

  .hero-text p{
    font-size:18px;
  }
  .logo img{
  height:60px;
  width:auto;
  object-fit:contain;
}


  /* HERO BUTTONS */
  .hero-buttons{
    justify-content:center;
  }

  .hero-buttons .btn{
    width:100%;
    justify-content:center;
    font-size:15px;
  }

  /* RATINGS BADGES */
  .rating-badges{
    justify-content:center;
  }

  .rating{
    width:100%;
    justify-content:center;
    font-size:14px;
  }

  /* MENU CARDS */
  .menu-grid{
    gap:18px;
  }

  .card h3{
    font-size:17px;
  }

  /* REVIEW SECTION */
  .review-wrapper{
    gap:10px;
  }

  .review-slider{
    padding:10px;
  }

  .review-card{
    min-width:240px;
  }

  /* ABOUT & CONTACT SPACING */
  .about-content,
  .contact-grid{
    gap:20px;
  }

  /* MAP HEIGHT */
  .map-box iframe{
    height:300px;
  }
}
/* =========================
   TRUST SUMMARY (STEP 2)
========================= */
.trust-summary{
  padding:40px 20px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.trust-box{
  min-width:220px;
  padding:18px 25px;
  border-radius:16px;
  text-align:center;
  font-weight:bold;
  font-size:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.5);
}

.trust-box span{
  display:block;
  margin-top:6px;
  font-size:14px;
  font-weight:normal;
  opacity:.85;
}

.trust-box.google{
  background:#4285F4;
}

.trust-box.zomato{
  background:#e63946;
}
/* PROFESSIONAL TRUST BADGES */
.trust-summary{
  padding:35px 20px;
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.trust-badge{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 20px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(6px);
  border-radius:14px;
  box-shadow:0 4px 15px rgba(0,0,0,.25);
}

.trust-badge img{
  width:34px;
  height:34px;
}

.trust-badge strong{
  font-size:18px;
  display:block;
}

.trust-badge span{
  font-size:13px;
  opacity:.85;
}
/* =========================
   RATING BUTTONS (FINAL)
========================= */
.rating-buttons{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.rate-btn{
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:bold;
  text-decoration:none;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:.25s;
}

/* GOOGLE */
.rate-btn.google{
  background:#ffffff;
  color:#333;
  border:1px solid #ddd;
}

.rate-btn.google:hover{
  background:#f5f5f5;
}

/* ZOMATO */
.rate-btn.zomato{
  background:#e63946;
}

.rate-btn.zomato:hover{
  background:#c1121f;
}

/* MOBILE */
@media(max-width:768px){
  .rating-buttons{
    justify-content:center;
  }

  .rate-btn{
    width:100%;
    justify-content:center;
  }
}
/* REVIEW CTA FIX */
.review-cta{
  margin-top:30px;
  text-align:center;
}

.review-cta a{
  display:inline-block;
  padding:12px 26px;
  border-radius:30px;
  background:#4285F4;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  transition:.25s;
}

.review-cta a:hover{
  background:#3367d6;
  transform:translateY(-2px);
}
/* MAP CARD FIX */
.home-map{
  padding:70px 20px;
  text-align:center;
}

.home-map h2{
  margin-bottom:25px;
}

.map-card{
  max-width:800px;
  margin:0 auto;
  background:#1a1a1a;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
}

.map-card iframe{
  width:100%;
  height:320px;
  border:0;
}

.map-card a{
  display:block;
  padding:14px;
  background:#e63946;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

.map-card a:hover{
  background:#c1121f;
}
/* MENU LIST STYLE */
.menu-list{
  max-width:900px;
  margin:40px auto 0;
  text-align:left;
}

.menu-list h3{
  margin:35px 0 15px;
  color:#f4a261;
}

.menu-list ul{
  list-style:none;
}

.menu-list li{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  border-bottom:1px dashed rgba(255,255,255,.15);
  font-size:15px;
}

.menu-list li span{
  opacity:.9;
}
/* PREMIUM PIZZA SIZE TABLE */
.size-header{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  font-weight:bold;
  padding:12px 0;
  border-bottom:2px solid rgba(255,255,255,.3);
  margin-top:25px;
}

.price-table{
  list-style:none;
  padding:0;
}

.price-table li{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.15);
  font-size:15px;
}

/* MOBILE FRIENDLY */
@media(max-width:768px){
  .size-header,
  .price-table li{
    font-size:14px;
  }
.logo img{
  max-height:50px;
  max-width:50px;
}

}
/* WHY CHOOSE US - WITH BACKGROUND IMAGE */
.why-us{
  padding:90px 30px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  text-align:center;

  background:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url("images/why-bg.jpg") center/cover no-repeat;
}

.why-card{
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  padding:30px 20px;
  border-radius:18px;
  transition:.3s;
  border:1px solid rgba(255,255,255,.15);
}


.why-card:hover{
  transform:translateY(-6px);
}

.why-card h3{
  margin:15px 0 10px;
}

.why-card p{
  font-size:14px;
  opacity:.85;
}
/* STICKY WHATSAPP ICON IMAGE */
.sticky-btn img{
  width:26px;
  height:26px;
}
/* FOOTER DESIGNER CREDIT */
footer .designer{
  margin-top:6px;
  font-size:12px;
  opacity:.6;
}
.logo img{
  max-height:60px;
  max-width:60px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
/* CONTACT PAGE */
.contact-section{
  padding:80px 30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-info h2{
  margin-bottom:15px;
}

.contact-info p{
  margin-bottom:10px;
  opacity:.9;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:none;
  outline:none;
  font-size:14px;
}

.contact-form textarea{
  min-height:120px;
  resize:none;
}

.contact-form button{
  background:#e63946;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:30px;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  background:#c1121f;
}

/* MOBILE */
@media(max-width:768px){
  .contact-section{
    grid-template-columns:1fr;
  }
}
/* CONTACT PAGE POLISH */
.contact-section{
  padding:80px 20px;
}

.contact-box{
  max-width:1100px;
  margin:0 auto;
  background:rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border-radius:20px;
  padding:40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-info h2{
  margin-bottom:15px;
  color:#ffb703;
}

.contact-info p{
  margin-bottom:10px;
  color:#ddd;
  font-size:15px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:15px;
  border-radius:10px;
  border:none;
  outline:none;
  font-size:14px;
}

.contact-form button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:#e63946;
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#ffb703;
  color:#000;
}
@media(max-width:768px){
  .contact-box{
    grid-template-columns:1fr;
    padding:25px;
  }
}
/* CONTACT ALIGNMENT FIX */
.contact-section{
  padding:80px 20px;
  display:flex;
  justify-content:center;
}

.contact-box{
  width:100%;
  max-width:1100px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:rgba(0,0,0,0.75);
  border-radius:20px;
  padding:40px;
}
/* CONTACT CARDS CENTER */
.contact-cards{
  max-width:1200px;
  margin:60px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
  justify-items:center;
}

.contact-cards .card{
  width:100%;
  max-width:260px;
}
@media(max-width:768px){
  .contact-box{
    grid-template-columns:1fr;
  }
}
/* CONTACT FORM ONLY CENTER */
.single-form{
  max-width:520px;
  margin:0 auto;
  background:rgba(0,0,0,0.75);
  padding:40px;
  border-radius:20px;
  text-align:center;
}

.form-title{
  margin-bottom:25px;
  color:#ffb703;
  font-size:28px;
}
/* CONTACT FORM WITH IMAGE */
.with-image{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  background:rgba(0,0,0,0.75);
  padding:40px;
  border-radius:20px;
}

.contact-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
}
@media(max-width:768px){
  .with-image{
    grid-template-columns:1fr;
  }

  .contact-image{
    margin-top:20px;
  }
}
nav a{
  color:#fff;
  text-decoration:none;
  margin-left:25px;
  font-size:15px;
  position:relative;
  transition:0.3s;
}

/* hover underline animation */
nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#ffb703;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

nav a:hover{
  color:#ffb703;
}
/* ACTIVE MENU LINK */
nav a.active{
  color:#ffb703;
}
/* =========================
   MOBILE RESPONSIVE FIX
========================= */
@media (max-width:768px){

  /* HEADER FIX */
  .navbar{
    padding:12px 16px;
    flex-wrap:wrap;
  }

  nav{
    display:flex;
    width:100%;
    justify-content:space-around;
    margin-top:10px;
  }

  nav a{
    font-size:14px;
    margin:0;
  }

  /* LOGO FIX */
  .logo img{
    height:50px;
  }

}
.social-follow{
  margin-top:20px;
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.social-follow a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  color:#fff;
  transition:0.3s;
}

.social-follow img{
  width:24px;
  height:24px;
}

.social-follow .insta{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
}

.social-follow .fb{
  background:#1877f2;
}

.social-follow a:hover{
  transform:translateY(-3px);
  opacity:0.9;
}
/* FIX SOCIAL ICON IMAGE SIZE */
.social-follow img{
  width:24px;
  height:24px;
  object-fit:contain;
}

/* SAFETY: kisi bhi image ko full screen hone se roko */
img{
  max-width:100%;
  height:auto;
}
.social-follow .insta img{
  filter: brightness(0) invert(1);
}
.social-follow img{
  background:transparent;
  border-radius:50%;
}
