@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ================= ROOT ================= */
:root{
  --bg:#f8fafc;
  --white:#ffffff;
  --border:#e5e7eb;

  --text:#0f172a;
  --muted:#6b7280;

  --accent:#f97316;          /* brand orange */
  --menu-gray:#6b7280;
  --menu-hover:#111827;
  --blue:#2563eb;
  --green:#22c55e;
}

/* ================= RESET ================= */
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  height:100%;
  font-family:Inter,system-ui,-apple-system;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x: hidden; /* prevent horizontal jitter/shake */
}
img{max-width:100%;display:block}
a{color:inherit}

/* make sure nothing accidentally exceeds viewport */
*{max-width:100vw;}

/* ================= CONTAINER ================= */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 16px;
}

/* ==================================================
   TOP HEADER (BLACK)
================================================== */
.top-header{
  background:#000;
  color:#fff;
  font-size:13px;
}
.top-header-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
}
.top-header a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.top-header span{
  opacity:.6;
  margin:0 6px;
}

/* Hide top header on mobile */
@media(max-width:768px){
  .top-header{display:none}
}

/* ==================================================
   MAIN HEADER (FULL WIDTH)
================================================== */
.main-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:1000;
}
.header-inner{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:0 16px;
}

/* LOGO */
.logo img{
  height:64px;
}

/* ================= DESKTOP MENU ================= */
.desktop-nav{
  display:flex;
  gap:22px;
}
.desktop-nav a{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-weight:600;
  color:var(--menu-gray);
  padding:6px 10px;
  border-radius:8px;
  transition:.25s ease;
}
.desktop-nav a i{
  font-size:14px;
  color:#9ca3af;
}
.desktop-nav a:hover{
  color:var(--menu-hover);
  background:#f1f5f9;
}
.desktop-nav a:hover i{
  color:var(--accent);
}

/* ================= HEADER ACTIONS ================= */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  border:none;
  padding:8px 16px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}
.menu-btn{
  display:none;
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
  color:#374151;
}

/* ==================================================
   OFFCANVAS MENU (LEFT SLIDE)
================================================== */
/* ===== MOBILE OFFCANVAS MENU ===== */
.offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 88%;
  height: 100%;
  background: #fff;
  z-index: 3000;
  transition: .35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,.25);
}

.offcanvas.open {
  left: 0;
}

/* HEADER */
.offcanvas-header {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.offcanvas-logo {
  height: 52px;
}

.close-btn i {
  font-size: 22px;
  color: #6b7280;
}

/* NAV */
.offcanvas-nav {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* COMMON ITEM */
.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  transition: 0.25s;
}

.nav-item i {
  font-size: 18px;
  color: #9ca3af;
  min-width: 22px;
}

.nav-item:hover {
  background: #f8fafc;
}

/* DROPDOWN */
/* ================= MOBILE DROPDOWN – PREMIUM ================= */

.dropdown-mobile {
background: #ffffff;
  border-radius: 16px;
  padding: 6px;
  transition: 0.3s ease;
}

/* Toggle row */
.dropdown-toggle-mobile {
  all: unset;
  width: 100%;
  padding: 14px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #1f2937;
  border-radius: 14px;
}

.dropdown-toggle-mobile .left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dropdown-toggle-mobile i {
  color: #9ca3af;
  font-size: 18px;
}

/* Arrow */
.dropdown-toggle-mobile .arrow {
  transition: transform .3s ease;
}

/* OPEN STATE */
.dropdown-mobile.open .arrow {
  transform: rotate(180deg);
}

/* Submenu panel */
.dropdown-panel {
  display: none;
  margin-top: 6px;
  background: #ffffff;
  border-radius: 14px;
  padding: 6px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* submenu links */
.dropdown-panel a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.2s;
}

.dropdown-panel a:hover {
  background: #f3f4f6;
  color: var(--accent);
}

/* spacing fix */
.offcanvas-nav > .nav-item,
.offcanvas-nav > .dropdown-mobile {
  margin-bottom: 6px;
}

/* FOOTER */
.offcanvas-footer {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

.offcanvas-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
}

.offcanvas-footer i {
  color: var(--accent);
}

.btn-primary.full {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 14px;
}

/* ================= FIXED DROPDOWN (NO FLICKER) ================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* hover-safe zone */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px; /* IMPORTANT hover buffer */
}

/* toggle button */
.nav-dropdown .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size:17px;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--menu-gray);
  transition: 0.25s;
}

.nav-dropdown .dropdown-toggle:hover {
  background: #f1f5f9;
  color: var(--menu-hover);
}

/* caret */
.nav-dropdown .caret {
  font-size: 12px;
  transition: transform 0.25s ease;
}

/* dropdown panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  padding: 10px;

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 3000;
}

/* arrow */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

/* ✅ OPEN STATE — this is the KEY FIX */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* caret rotation */
.nav-dropdown:hover .caret,
.nav-dropdown:focus-within .caret {
  transform: rotate(180deg);
}

/* menu items */
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: var(--menu-hover);
}

/* disable hover dropdown on mobile */
@media (max-width: 900px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 0;
    pointer-events: none;
  }
}

/* ==================================================
   OVERLAY
================================================== */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:1500;
}
.menu-overlay.show{
  opacity:1;
  visibility:visible;
}

/* ==================================================
   MOBILE BREAKPOINT
================================================== */
@media(max-width:900px){
  .desktop-nav{display:none}
  .menu-btn{display:block}
}
/* ==================================================
   MOBILE FOOTER NAV
================================================== */
.mobile-footer{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#fff;
  border-top:1px solid var(--border);
  display:none;
  justify-content:space-around;
  padding:8px 0;
  z-index:1200;
}

.mobile-footer a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  color:var(--menu-gray);
}

.mobile-footer a i{
  font-size:18px;
  color:#9ca3af;
}

.mobile-footer a:hover{
  color:var(--menu-hover);
}
.mobile-footer a:hover i{
  color:var(--accent);
}

/* ==================================================
   DESKTOP FOOTER
================================================== */
.desktop-footer{
  background:#0f172a;
  color:#e5e7eb;
  padding:60px 0 0;
  margin-top:80px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:40px;
}

.footer-brand img{
  height:92px;
  margin-bottom:14px;
}
.footer-brand p{
  color:#9ca3af;
  line-height:1.6;
}

.footer-links h4,
.footer-contact h4{
  margin-bottom:14px;
  font-size:16px;
}

.footer-links a{
  display:block;
  margin-bottom:10px;
  text-decoration:none;
  color:#9ca3af;
  font-weight:500;
}
.footer-links a:hover{
  color:#fff;
}

.footer-contact p{
  display:flex;
  align-items:center;
  gap:8px;
  color:#9ca3af;
  margin-bottom:10px;
}
.footer-contact i{
  color:var(--accent);
}

.footer-contact .btn-primary{
  margin-top:10px;
}

/* FOOTER BOTTOM */
.footer-bottom{
  margin-top:40px;
  padding:16px 0;
  text-align:center;
  font-size:13px;
  color:#9ca3af;
  border-top:1px solid rgba(255,255,255,0.08);
}

/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:900px){
  .desktop-footer{display:none}
  .mobile-footer{display:flex}
}

/* ==================================================
   CREATIVE HERO – FULL WIDTH
================================================== */
.hero-creative {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url("../images/bannerkhn.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
}

/* DIAGONAL GRADIENT OVERLAY */
.hero-gradient{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      110deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.45) 38%,
      rgba(0,0,0,.15) 65%,
      rgba(0,0,0,.05) 100%
    );
  z-index:1;
}

/* SOFT SHINE ANIMATION */
.hero-shine{
  position:absolute;
  top:0;
  left:-40%;
  width:40%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.08),
    transparent
  );
  animation:shineMove 12s ease-in-out infinite;
  z-index:2;
}

@keyframes shineMove{
  0%{left:-40%}
  50%{left:100%}
  100%{left:100%}
}

/* INNER WRAP */
.hero-inner{
  position:relative;
  z-index:3;
  width:100%;
  padding-left:80px;
  padding-right:16px;
}

/* LEFT CONTENT */
.hero-left{
  max-width:540px;
  color:#fff;
  animation:heroEnter .9s ease forwards;
}

@keyframes heroEnter{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

/* CHIP */
.hero-chip{
  display:inline-block;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(4px);
  border-radius:999px;
  margin-bottom:18px;
}

/* HEADING */
.hero-left h1{
  font-size:46px;
  line-height:1.15;
  margin:0 0 14px;
}
.hero-left h1 span{
  color:var(--accent);
}

/* TEXT */
.hero-left p{
  font-size:16px;
  opacity:.92;
  margin-bottom:32px;
}

.hero-filter {
  position: relative;
  display: grid;
  gap: 12px;
  background: rgba(255,255,255,.95);
  padding: 16px;
  border-radius: 18px;
  max-width: 460px;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  overflow: visible; /* ✅ IMPORTANT */
}



/* FIELD */
.filter-field{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  background:#f9fafb;
  border-radius:14px;
}

.filter-field i{
  color:#9ca3af;
}

.filter-field input,
.filter-field select{
  border:none;
  outline:none;
  background:none;
  width:100%;
  font-size:14px;
}

/* BUTTON */
.filter-btn{
  width:100%;
  padding:14px;
  font-size:15px;
}

/* ==================================================
   MOBILE HERO
================================================== */
@media(max-width:900px){
  .hero-creative{
    min-height:100vh;
    align-items:flex-end;
    padding-bottom:120px;
  }

  .hero-inner{
    padding:0 16px;
  }

  .hero-left{
    max-width:100%;
  }

  .hero-left h1{
    font-size:32px;
  }
}

/* ==================================================
   SERVICES – IMAGE + OVERLAP CARD
================================================== */
.services-overlap{
  padding:100px 0;
  background:#f9fafb;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* IMAGE BOX */
.service-image{
  border-radius:22px;
  overflow:hidden;
}
service-image img{ display:block;} /* safety */
.service-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.6s ease;
}
.service-box:hover .service-image img{
  transform:scale(1.08);
}

/* WHITE CARD */
.service-card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  margin:-60px 18px 0;
  position:relative;
  z-index:2;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* TEXT */
.service-card h3{
  font-size:20px;
  margin-bottom:8px;
}
service-card p{ display:block;} /* safety */
.service-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
  margin-bottom:18px;
}
/* ACTION BAR */
.service-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

/* FIXED ICON SIZE */
.service-actions .icon-btn{
  flex:0 0 42px;
}

/* BOOK NOW TAKES REMAINING SPACE */
.book-btn{
  flex:1;
  text-align:center;
}

/* ICON BUTTONS */
.icon-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:17px;
}
.icon-btn.call{
  background:#2563eb;
}
.icon-btn.whatsapp{
  background:#22c55e;
}

/* BOOK BTN */
.btn-primary.small{
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media(max-width:900px){
  .services-grid{
    grid-template-columns:1fr;
  }
  .service-image img{
    height:220px;
  }
  .service-card{
    margin:-50px 16px 0;
  }
}

/* ==================================================
   FINAL CTA SECTION
================================================== */
.cta-section{
  position:relative;
  padding:100px 0;
  background:linear-gradient(
    120deg,
    #0f172a,
    #020617
  );
  overflow:hidden;
}

/* SOFT GLOW */
.cta-overlay::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:#f97316;
  filter:blur(160px);
  opacity:.35;
  top:-120px;
  right:-120px;
}

.cta-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
  color:#fff;
}

/* TEXT */
.cta-left h2{
  font-size:38px;
  line-height:1.2;
  margin-bottom:16px;
}
.cta-left h2 span{
  color:#f97316;
}
.cta-left p{
  font-size:16px;
  color:#cbd5f5;
  max-width:480px;
}

/* ACTIONS */
.cta-actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

/* ICON BUTTONS */
.cta-icon{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(6px);
}

.cta-icon.call{
  background:#2563eb;
}
.cta-icon.whatsapp{
  background:#22c55e;
}

/* MAIN CTA */
.cta-btn{
  padding:14px 26px;
  font-size:15px;
  border-radius:999px;
}

/* ==================================================
   MOBILE
================================================== */
@media(max-width:900px){
  .cta-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-left h2{
    font-size:30px;
  }

  .cta-actions{
    justify-content:center;
  }
}

/* ==================================================
   FAQ – IMAGE + CONTENT SPLIT
================================================== */
.faq-split{
  padding:100px 0;
  background:#fff;
}

.faq-wrap{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.faq-image{
  position:relative;
}
.faq-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:26px;
  box-shadow:0 30px 90px rgba(0,0,0,.2);
}

/* CONTENT */
.faq-content h2{
  font-size:36px;
  margin-bottom:10px;
}
.faq-sub{
  color:var(--muted);
  margin-bottom:30px;
  font-size:15px;
}

/* FAQ LIST */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* ITEM */
.faq-item{
  background:#f9fafb;
  border-radius:18px;
  overflow:hidden;
  transition:.3s;
}
.faq-item:hover{
  background:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* QUESTION */
.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:22px 24px;
  font-size:16px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question i{
  color:var(--accent);
  transition:.3s;
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 24px;
  font-size:14px;
  color:var(--muted);
  transition:max-height .4s ease, padding .3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:200px;
  padding:0 24px 22px;
}
.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

/* ==================================================
   MOBILE
================================================== */
@media(max-width:900px){
  .faq-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .faq-image img{
    height:300px;
  }

  .faq-content h2{
    font-size:28px;
  }
}

/* ==================================================
   DISH SLIDER SECTION
================================================== */
.dish-slider-section{
  padding:90px 0;
  background:#fff;
  overflow:hidden;
}

.section-head.center{
  text-align:center;
  margin-bottom:40px;
}

/* SLIDER */
.dish-slider{
  width:100%;
  overflow:hidden;
}

.dish-track{
  display:flex;
  gap:24px;
  width:max-content;
  animation:dishScroll 30s linear infinite;
}

.dish-slider:hover .dish-track{
  animation-play-state:paused;
}

/* CARD */
.dish-card{
  position:relative;
  min-width:220px;
  height:260px;
  border-radius:22px;
  overflow:hidden;
  background:#f3f4f6; /* fallback */
  box-shadow:0 20px 60px rgba(0,0,0,.15);
}

/* IMAGE */
.dish-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ORANGE BADGE FULL-WIDTH */
.dish-card span{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:12px 10px;
  text-align:center;
  background:linear-gradient(90deg,#f97316,#fb923c);
  color:#fff;
  font-weight:700;
  font-size:15px;
  letter-spacing:.3px;
  border-radius:0 0 22px 22px; /* match card */
  box-shadow:0 -6px 20px rgba(249,115,22,.35);
}

/* ANIMATION */
@keyframes dishScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ==================================================
   MOBILE
================================================== */
@media(max-width:768px){
  .dish-card{
    min-width:180px;
    height:220px;
  }
}

/* ================= TESTIMONIAL ================= */
.testimonial-section{
  padding:100px 0;
  background:#f9fafb;
  overflow:hidden;
}

/* SLIDER */
.testimonial-slider{
  width:100%;
  overflow:hidden;
}

/* TRACK */
.testimonial-track{
  display:flex;
  gap:20px;
  animation:testimonialScroll 40s linear infinite;
  width:max-content;
}

.testimonial-slider:hover .testimonial-track{
  animation-play-state:paused;
}

/* CARD – 4 IN ONE ROW */
.testimonial-card{
  flex:0 0 calc(25% - 15px);
  background:#fff;
  border-radius:22px;
  padding:26px;
  box-shadow:0 20px 60px rgba(0,0,0,.1);
}

/* TEXT */
.testimonial-card p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:18px;
}

/* USER */
.testimonial-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.testimonial-user img{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
}
.testimonial-user span{
  font-size:12px;
  color:#6b7280;
}

/* STARS */
.stars{
  color:#facc15;
  font-size:14px;
}

/* AUTO SLIDE */
@keyframes testimonialScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px){
  .testimonial-card{ flex:0 0 calc(33.333% - 14px); }
}
@media(max-width:900px){
  .testimonial-card{ flex:0 0 calc(50% - 14px); }
}
@media(max-width:640px){
  .testimonial-card{ flex:0 0 100%; }
}

/* ==================================================
   CONTACT SECTION – CREATIVE
================================================== */
.contact-section{
  padding:110px 0;
  background:#fff7ed;
}
.contact-wrap{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.contact-info .section-tag{
  display:inline-block;
  padding:6px 14px;
  background:#fff;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  margin-bottom:14px;
}
.contact-info h2{ font-size:38px; line-height:1.2; margin-bottom:14px; }
.contact-info h2 span{ color:var(--accent); }
.contact-info p{ font-size:15px; color:#6b7280; max-width:420px; margin-bottom:30px; }

/* CONTACT CARDS */
.contact-cards{ display:flex; gap:18px; flex-wrap:wrap; }
.contact-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 22px;
  background:#fff;
  border-radius:18px;
  text-decoration:none;
  color:#111827;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-card i{ font-size:22px; color:#2563eb; }
.contact-card.whatsapp i{ color:#22c55e; }

/* RIGHT FORM */
.contact-form{ background:#fff; padding:36px; border-radius:26px; box-shadow:0 30px 80px rgba(0,0,0,.12); }
.contact-form h3{ font-size:22px; margin-bottom:22px; }

/* FORM */
.form-group{ margin-bottom:16px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  font-size:14px;
  outline:none;
}
.form-group textarea{ resize:none; height:110px; }
.btn-primary.full{ width:100%; padding:14px; font-size:15px; }

/* ==================================================
   MOBILE
================================================== */
@media(max-width:900px){
  .contact-wrap{ grid-template-columns:1fr; gap:40px; }
  .contact-info h2{ font-size:30px; }
  .contact-cards{ flex-direction:column; }
}

/* ============================================
   CONTACT PAGE – MOBILE FIXES (STACKING + NO OVERFLOW)
============================================ */

/* Container safety */
.container{ padding-left:16px; padding-right:16px; }

/* Stack main layout on tablet/mobile */
@media (max-width: 992px) {
  .contact-wrap{

    flex-direction:column !important;
    gap:40px;
  }
  .contact-info, .contact-form{
    max-width:100% !important;
    padding-right:0 !important;
  }
}

/* HERO small-screen adjustments */
@media (max-width: 768px) {
  .page-hero .container{ display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
  .page-hero h1{ font-size:24px !important; }
  .page-hero a{ font-size:14px; padding:10px 14px !important; white-space:nowrap; }
  .hero-inner{ padding-left:16px !important; padding-right:16px !important; }
}

/* CONTACT INFO CARDS: ensure wrapping */
@media (max-width: 768px) {
  .contact-info > div{ max-width:100% !important; }
  .contact-info a.contact-card{ flex-direction:row; padding:14px; }
}

/* TWO INPUT ROW → STACK ON MOBILE (targets inline style rows too) */
@media (max-width: 768px) {
  .form-group[style*="display:flex"], .form-group[style*="display: flex"]{
    display:flex !important;
    flex-direction:column !important;
    gap:10px !important;
  }
  input, textarea, select, button{ min-width:0; }
}

/* FORM CARD smaller padding on mobile */
@media (max-width: 768px) {
  .contact-form > div, .contact-form{ padding:20px !important; border-radius:18px; }
  iframe{ max-width:100% !important; width:100% !important; height:220px !important; }
  .btn-primary.full{ width:100%; padding:14px; }
  .contact-info h2{ font-size:26px !important; line-height:1.25; }
  .contact-info p{ font-size:14px; }
}

/* =====================================================
   CHEF LIST – PREMIUM WHITE (MATCHES SITE THEME)
===================================================== */

.chef-section {
  padding: 40px 0;
  background: var(--bg);
}

.chef-grid {
  display: grid;

  gap: 14px;
}

/* Tablet */
@media (min-width: 768px) {
  .chef-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .chef-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= CARD ================= */
.chef-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: 0.25s ease;
  overflow: hidden;
}

.chef-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
}

/* FLOAT ACTIONS */
.chef-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.chef-action {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
  transition: .2s ease;
}

.chef-action:hover {
  transform: scale(1.08);
}

.chef-action.whatsapp {
  background: #22c55e;
}

.chef-action.call {
  background: #2563eb;
}

/* ================= HEADER ROW ================= */
.chef-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* IMAGE */
.chef-avatar {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.chef-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.chef-meta {
  flex: 1;
  min-width: 0;
}

.chef-name {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.chef-verified {
  font-size: 11px;
  font-weight: 600;
  background: #22c55e;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}

.chef-location {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chef-rating {
  font-size: 12px;
  color: #f59e0b;
  margin-top: 4px;
  display: flex;
  gap: 4px;
}

/* DIVIDER */
.chef-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

/* FOOTER */
.chef-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chef-exp {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
}

/* CTA */
.chef-btn {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
  transition: .2s;
}

.chef-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.45);
}

/* EXTRA SAFETY FOR VERY SMALL SCREENS */
@media (max-width: 360px) {
  .chef-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= LAYOUT ================= */
.profile-layout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:28px;
}

/* ================= LEFT CARD ================= */
.profile-card{
  background:#fff;
  border-radius:22px;
  padding:22px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}

/* ONLY STICKY ON DESKTOP */
@media (min-width: 992px){
  .profile-card{
    position:sticky;
    top:20px;
  }
}

/* MOBILE FIX */
@media (max-width: 991px){
  .profile-card{
    position:relative !important;
    top:auto !important;
  }
}

/* AVATAR */
.avatar{
  display:flex;
  justify-content:center;
  margin-bottom:14px;
}

.avatar img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.name{
  text-align:center;
  font-size:22px;
  font-weight:700;
}

.verified{
  display:flex;
  justify-content:center;
  gap:6px;
  font-size:13px;
  color:#16a34a;
  margin-top:4px;
}

.location{
  text-align:center;
  font-size:13px;
  color:var(--muted);
  margin-top:6px;
}

/* STATS */
.quick-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:16px 0;
}

.stat{
  background:#f9fafb;
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px;
  font-size:12px;
  text-align:center;
}

.stat i{ color:var(--accent); }

/* ACTIONS */
.actions{
  display:grid;
  gap:10px;
}

.btn{
  padding:12px;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  color:#fff;
}

.btn.call{background:var(--blue);}
.btn.whatsapp{background:var(--green);}
.btn.book{background:linear-gradient(135deg,#fb923c,#f97316);}

/* ================= RIGHT CONTENT ================= */
.profile-content{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* SECTION */
.block{
  background:#fff;
  border-radius:22px;
  padding:26px;
  box-shadow:0 18px 50px rgba(0,0,0,.06);
}

.block h3{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:20px;
  margin-bottom:14px;
}

.block h3 i{ color:var(--accent); }

/* ABOUT */
.about-text{
  font-size:15px;
  line-height:1.75;
  color:#475569;
}

/* FEATURES */
.features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:16px;
}

.feature{
  display:flex;
  gap:10px;
  padding:14px;
  border-radius:14px;
  background:#f9fafb;
  border:1px solid var(--border);
  font-size:14px;
}
.feature i{color:var(--accent);}

/* TAGS */
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

/* STATS GRID */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.stat-box{
  background:#f9fafb;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  text-align:center;
}

.stat-box i{
  color:var(--accent);
  font-size:22px;
}

.stat-box strong{
  display:block;
  margin-top:6px;
  font-size:18px;
}

.stat-box span{
  font-size:13px;
  color:var(--muted);
}

/* RESPONSIVE FIXES */
@media(max-width:900px){
  .profile-layout{
    grid-template-columns:1fr;
  }

  .features{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE BOTTOM BAR */
.mobile-bar{
  
  bottom:0;
  left:0;
  width:100%;
  background:#fff;
  border-top:1px solid var(--border);
  padding:10px;
  display:none;
  gap:10px;
  z-index:999;
  margin-bottom:50px !important;
}

.mobile-bar a{
  flex:1;
  text-align:center;
  padding:14px;
  border-radius:12px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}

.mobile-bar .call{background:var(--blue);}
.mobile-bar .wa{background:var(--green);}

@media(max-width:768px){
  .mobile-bar{display:flex;}
}
/* ================= GLOBAL HELPERS ================= */
.muted { color: var(--muted); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover { opacity: .9; }

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.icon-btn.call { background:#2563eb; }
.icon-btn.whatsapp { background:#22c55e; }

/* ==================================================
   HERO
================================================== */
.hero-creative {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,.7),
    rgba(0,0,0,.4),
    rgba(0,0,0,.1)
  );
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent,
    rgba(255,255,255,.12),
    transparent);
  animation: shineMove 12s infinite linear;
}

@keyframes shineMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.hero-left {
  max-width: 520px;
  color: #fff;
}

.hero-chip {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-left h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-left h1 span {
  color: var(--accent);
}

.hero-left p {
  opacity: .95;
  font-size: 16px;
  margin-bottom: 26px;
}

/* SEARCH CARD */
.hero-filter {
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
  max-width: 480px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.filter-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  padding: 14px 16px;
  border-radius: 14px;
}

.filter-field i {
  color: #9ca3af;
}

.filter-field input,
.filter-field select {
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-size: 14px;
}

.filter-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
}

/* ==================================================
   INTRO SECTION
================================================== */
.intro-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-chip {
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* ==================================================
   PACKAGES GRID
================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin-top: 30px;
}

.package-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

.package-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-body h4 {
  font-size: 20px;
}

.package-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.package-meta span {
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.package-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.book-full {
  flex: 1;
  text-align: center;
}

/* ==================================================
   FAQ
================================================== */
.faq-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}

.faq-list {
  margin-top: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: .3s;
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--muted);
  transition: .35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 18px 16px;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 900px) {
  .hero-left h1 { font-size: 32px; }
  .intro-row,
  .packages-grid,
  .faq-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-filter { padding: 14px; }
  .package-image img { height: 200px; }
}
.location-results {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;

  background: #ffffff;
  border-radius: 14px;
  margin-top: 6px;

  max-height: 260px;
  overflow-y: auto;

  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  z-index: 9999;

  display: none;
}
.location-results div {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #111827; /* FIXED */
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.location-results div:last-child {
  border-bottom: none;
}

.location-results div:hover {
  background: #f3f4f6;
  color: #f97316;
}
/* ===============================
   FILTER ROW (DESKTOP INLINE)
================================ */
.filter-wrapper {
  width: 100%;
  margin-bottom: 28px;
}

.filter-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 14px;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

/* Input box */
.filter-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 14px;
  position: relative;
}

/* Selects */
.filter-select {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

/* Button */
.filter-btn {
  height: 52px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
}

/* Location dropdown */
.location-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-radius: 14px;
  margin-top: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  max-height: 260px;
  overflow-y: auto;
}

/* ===============================
   RESPONSIVE (STACK ON MOBILE)
================================ */
@media (max-width: 900px) {
  .filter-row {
    grid-template-columns: 1fr;
  }

  .filter-btn {
    width: 100%;
  }
}
/* ================= MOBILE FOOTER DROPDOWN ================= */

.mobile-footer-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* main button */
.mobile-footer-btn {
  background: none;
  border: none;
  font: inherit;
  color: var(--menu-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.mobile-footer-btn i {
  font-size: 18px;
}

/* submenu */
.mobile-footer-submenu {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 15px 40px rgba(0,0,0,.18);
  display: none;
  z-index: 9999;
}

/* arrow */
.mobile-footer-submenu::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
}

/* links */
.mobile-footer-submenu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: 0.2s;
}

.mobile-footer-submenu a:hover {
  background: #f3f4f6;
  color: var(--accent);
}

/* active state */
.mobile-footer-dropdown.open .mobile-footer-submenu {
  display: block;
}
.icon-btn, .icon-btn:link, .icon-btn:visited { text-decoration: none; }
/* remove underline and remove baseline gap for icon buttons */
.icon-btn {
  text-decoration: none;      /* removes the link underline */
  display: grid;              /* you already have this, keep it */
  place-items: center;
}

.icon-btn i {
  display: inline-block;
  line-height: 0;             /* prevents baseline/underline overlap */
  vertical-align: middle;
  font-size: 17px;            /* adjust as needed */
}
/* ==================================================
           HERO SECTION BASE - FIXED IMAGE SHOWING
        ================================================== */
        .hero-creative {
            position: relative;
            width: 100%;
            min-height: 90vh;
            /* REMOVED: original user background image here */
            display: flex;
            align-items: center;
            overflow: hidden;
            -webkit-backface-visibility: hidden;
        }

        /* THE SLIDER CONTAINER */
        .hero-slider {
            position: absolute;
            inset: 0; /* fills parent */
            z-index: 0; /* Base layer */
        }

        /* INDIVIDUAL SLIDES */
        .hero-slider .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0; /* Hidden by default */
            transition: opacity 1.2s ease-in-out; /* Smooth crossfade */
        }

        /* SHOW ACTIVE SLIDE */
        .hero-slider .slide.active {
            opacity: 1;
        }

        /* DIAGONAL GRADIENT OVERLAY - Layer 1 */
        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                110deg,
                rgba(0,0,0,.9) 0%,
                rgba(0,0,0,.6) 40%,
                rgba(0,0,0,.2) 70%,
                rgba(0,0,0,.1) 100%
            );
            z-index: 1;
        }

        /* SOFT SHINE ANIMATION - Layer 2 */
        .hero-shine {
            position: absolute;
            top: 0;
            left: -40%;
            width: 40%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255,255,255,.08),
                transparent
            );
            animation: shineMove 12s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes shineMove {
            0% { left: -40% }
            50% { left: 100% }
            100% { left: 100% }
        }

        /* INNER WRAP - Layer 3 (Highest) */
        .hero-inner {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1400px; /* Prevents stretching too wide on huge screens */
            margin: 0 auto; /* Centers the container */
            padding-left: 20px; /* Minimal padding for edge safety */
            padding-right: 20px;
        }

        /* LEFT CONTENT - START FROM LEFT FIX */
        .hero-left {
            max-width: 600px; /* Slightly wider for new content */
            color: #fff;
            animation: heroEnter .9s ease forwards;
            /* Content naturally aligns left here */
        }

        @keyframes heroEnter {
            from { opacity: 0; transform: translateY(20px) }
            to { opacity: 1; transform: translateY(0) }
        }

        /* ==================================================
           CONTENT STYLING
        ================================================== */
        /* CHIP */
        .hero-chip {
            display: inline-block;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 600;
            background: rgba(255,255,255,.18);
            backdrop-filter: blur(4px);
            border-radius: 999px;
            margin-bottom: 18px;
        }

        /* HEADING */
        .hero-left h1 {
            font-size: 48px;
            line-height: 1.15;
            margin: 0 0 14px;
            font-weight: 800;
        }
        
        .hero-left h1 span {
            color: var(--accent);
        }

        /* TEXT */
        .hero-left p {
            font-size: 18px;
            opacity: .92;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        /* DUAL CTAS */
        .hero-ctas {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .btn {
            padding: 14px 28px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

      
       

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-outline:hover {
            background: #fff;
            color: #333;
        }

        /* TRUST ELEMENTS */
        .hero-trust {
            display: flex;
            gap: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 24px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
        }

        .trust-item i {
            font-size: 24px;
            color: var(--accent);
        }

        .trust-item div {
            display: flex;
            flex-direction: column;
        }

        .trust-item strong {
            font-size: 16px;
            line-height: 1.2;
        }

        .trust-item span {
            font-size: 13px;
            opacity: 0.8;
        }

        /* ==================================================
           RESPONSIVE MOBILE
        ================================================== */
        @media(max-width: 900px) {
            .hero-creative {
                min-height: 100vh;
                align-items: flex-end; /* Push content to bottom on mobile */
                padding-bottom: 60px;
            }

            .hero-inner {
                padding-left: 16px; /* standard mobile padding */
                padding-right: 16px;
            }

            .hero-left h1 {
                font-size: 32px;
            }

            .hero-ctas {
                flex-direction: column;
                gap: 12px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
                box-sizing: border-box;
            }

            .hero-trust {
                flex-direction: column;
                gap: 16px;
                border-top: none;
            }
        }
        
        
        
        /* ==================================================
   HOW IT WORKS SECTION
================================================== */
.how-it-works {
  padding: 80px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.how-it-works .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 50px;
}

/* Wrapper for the steps */
.process-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

/* Individual Step */
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* Circular Icon Container */
.step-icon {
  width: 80px;
  height: 80px;
  background-color: #f3f4f6; /* Light Gray */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 30px;
  color: #4b5563; /* Dark Gray */
}

/* Active State (matches your reference image) */
.step-icon.active {
  background-color: #fce7f3; /* Light Pink/Red */
}

.step-icon.active i {
  color: #be123c; /* Deep Pink/Red */
}

/* Step Text */
.process-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  margin: 0;
  max-width: 140px;
}

/* Dashed Arrows */
.step-arrow {
  flex: 0.5;
  height: 40px; /* Align with center of the 80px circle */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}

.step-arrow::after {
  content: '\f30b'; /* FontAwesome long arrow right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 24px;
  color: #9ca3af;
  letter-spacing: -2px; /* Pulls dashes together if using text */
}

/* ==================================================
   MOBILE RESPONSIVENESS
================================================== */
@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    width: 100%;
    max-width: 300px;
    align-items: center;
    gap: 20px;
  }

  .process-step h3 {
    max-width: 100%;
  }

  /* Hide horizontal arrows on mobile and add vertical ones */
  .step-arrow {
    display: none; 
  }

  /* Optional: Add vertical connector lines for mobile */
  .process-step:not(:last-child)::after {
    content: '\f063'; /* FontAwesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    color: #d1d5db;
    font-size: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 95px;
  }
}



/* ==================================================
   HOW IT WORKS SECTION (THEMED & ANIMATED)
================================================== */
.how-it-works {
  padding: 80px 20px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.how-it-works .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 50px;
}

.process-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

/* Individual Step */
.process-step {
  flex: 0 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}

/* Circular Icon Container */
.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 28px;
  color: var(--muted);
}

/* Active State using your --accent color */
.step-icon.active {
  background-color: rgba(249, 115, 22, 0.1); /* Light wash of --accent */
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.15); /* Soft orange glow */
}

.step-icon.active i {
  color: var(--accent);
}

/* Step Text */
.process-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

/* ==================================================
   FLOWING DASHED ARROW ANIMATION
================================================== */
.step-arrow {
  flex: 1;
  height: 3px;
  margin-top: 40px; /* Aligns perfectly with the center of the 80px icon */
  position: relative;
  margin-left: 10px;
  margin-right: 15px;
  
  /* Creates the dashed line using your brand orange */
  background: repeating-linear-gradient(
    to right, 
    var(--accent) 0, 
    var(--accent) 8px, 
    transparent 8px, 
    transparent 16px
  );
  background-size: 32px 100%;
  animation: flowHorizontal 1s linear infinite;
  opacity: 0.7;
}

/* Arrowhead at the end of the line */
.step-arrow::after {
  content: '\f054'; /* FontAwesome chevron-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 14px;
  background-color: var(--white); /* Masks the line behind the arrow */
  padding-left: 4px;
}

/* The horizontal movement animation */
@keyframes flowHorizontal {
  0% { background-position: 0 0; }
  100% { background-position: 32px 0; }
}

/* ==================================================
   MOBILE RESPONSIVENESS (Vertical Flow)
================================================== */
@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    flex: auto;
    width: 100%;
    max-width: 300px;
  }

  /* Convert horizontal arrows to vertical flowing lines */
  .step-arrow {
    width: 3px;
    height: 40px;
    margin: 10px 0;
    
    background: repeating-linear-gradient(
      to bottom, 
      var(--accent) 0, 
      var(--accent) 8px, 
      transparent 8px, 
      transparent 16px
    );
    background-size: 100% 32px;
    animation: flowVertical 1s linear infinite;
  }

  /* Point the arrowhead down */
  .step-arrow::after {
    content: '\f078'; /* FontAwesome chevron-down */
    right: auto;
    left: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(-50%);
    padding-left: 0;
    padding-top: 4px;
  }
}

/* The vertical movement animation */
@keyframes flowVertical {
  0% { background-position: 0 0; }
  100% { background-position: 0 32px; }
}



/* ==================================================
   PREMIUM SERVICES SECTION
================================================== */
.premium-services {
  padding: 100px 20px;
  background-color: var(--bg); /* Using your root background var */
}

.premium-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 20px;
}

/* Animated accent line */
.header-line {
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.section-header:hover .header-line {
  width: 100px;
}

/* ==================================================
   STAGGERED GRID LAYOUT
================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* Create the staggered "up and down" effect */
.service-card:nth-child(even) {
  margin-top: 48px;
}

/* ==================================================
   INTERACTIVE CARDS
================================================== */
.service-card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Background Image with Zoom on Hover */
.service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.service-card:hover .service-bg {
  transform: scale(1.1);
}

/* Gradient Overlay - Darkens on hover to make text pop */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, 
    rgba(0,0,0,0.1) 0%, 
    rgba(0,0,0,0.6) 60%, 
    rgba(0,0,0,0.9) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  background: linear-gradient(
    to bottom, 
    rgba(0,0,0,0.3) 0%, 
    rgba(0,0,0,0.8) 50%, 
    var(--text) 100%
  );
}

/* Card Content Area */
.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px;
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--white);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: translateY(-5px);
}

.service-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

/* Hidden elements that reveal on hover */
.service-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #e5e7eb;
  margin: 0 0 20px 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.1s; /* Slight delay for staggered entrance */
}

/* Reveal Hover States */
.service-card:hover .service-desc {
  max-height: 100px;
  opacity: 1;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   RESPONSIVE DESIGN
================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Reset the stagger for 2 columns */
  .service-card:nth-child(even) {
    margin-top: 0;
  }
  .service-card:nth-child(2),
  .service-card:nth-child(4) {
    margin-top: 48px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Remove stagger entirely for mobile */
  .service-card:nth-child(even),
  .service-card:nth-child(2),
  .service-card:nth-child(4) {
    margin-top: 0;
  }
  
  /* Always show descriptions on mobile so users don't have to hover */
  .service-desc {
    max-height: 100px;
    opacity: 1;
  }
  
  .service-link {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================
   WHY CHOOSE US SECTION
================================================== */
.why-choose {
  padding: 100px 20px;
  background-color: var(--text); /* Using your dark color for contrast */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle background glow pattern */
.why-choose::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-choose .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Adjustments for Dark Mode */
.section-header.dark-mode h2 {
  color: var(--white);
}

.section-header.dark-mode p {
  color: #9ca3af;
}

/* ==================================================
   GLASSMORPHISM FEATURES GRID
================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow effect on hover */
.feature-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-box:hover::after {
  transform: scaleX(1);
}

/* Icons */
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent);
  transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent);
  color: var(--white);
}

/* Text Formatting */
.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
}

/* ==================================================
   RESPONSIVE DESIGN
================================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ==================================================
   1. CHEF DIRECTORY (DARK SECTION)
================================================== */
.chef-directory {
  padding: 80px 20px;
  background-color: #000000; /* Pure black to match reference */
  color: var(--white);
}

.chef-directory .container {
  max-width: 1200px;
  margin: 0 auto;
}

.cooks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cook-card {
  background: #111111;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cook-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.cook-img-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.cook-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; /* Keeps faces in frame */
}

.cook-info {
  padding: 20px;
}

.cook-info h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: var(--white);
}

.cook-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.cook-meta .rating {
  color: #10b981; /* Green color from your reference image */
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.cook-meta .exp {
  color: #9ca3af;
}

/* ==================================================
   2. TEXT TESTIMONIALS
================================================== */
.text-testimonials {
  padding: 80px 20px;
  background-color: #f1f5f9; /* Light grayish blue */
}

.text-testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px; /* Space for avatars */
}

.review-card {
  background-color: #2b4539; /* Deep green from reference */
  color: var(--white);
  padding: 50px 30px 30px; /* Extra top padding for avatar */
  border-radius: 16px;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-avatar {
  position: absolute;
  top: -35px; /* Pulls the image halfway out of the card */
  left: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #f1f5f9; /* Matches background to create cutout effect */
  object-fit: cover;
}

.review-stars {
  color: #fbbf24; /* Golden yellow */
  font-size: 14px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 24px;
  font-style: italic;
}

.review-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

/* ==================================================
   3. INSTAGRAM VIDEO TESTIMONIALS
================================================== */
.ig-testimonials {
  padding: 80px 20px;
  background-color: var(--white);
}

.ig-testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16; /* Standard IG Reel vertical format */
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.reel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.reel-card:hover .reel-bg {
  transform: scale(1.05);
}

/* Gradient to make text readable */
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
}

.ig-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--white);
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.reel-card:hover .play-btn {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px;
  color: var(--white);
}

.ig-user {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.ig-user::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent); /* Placeholder for user avatar */
}

.reel-info p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

/* ==================================================
   RESPONSIVE DESIGN FOR ALL 3 SECTIONS
================================================== */
@media (max-width: 1024px) {
  .cooks-grid, .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 50px; /* More gap needed because of overlapping avatars */
  }
}

@media (max-width: 640px) {
  .cooks-grid, .reels-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
}