body {
    background-color: #131112;
}

/* --- NAVIGATION BAR --- */
.main-nav {
    position: fixed;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    height: 80px;
    width: 90%;
    padding: 0;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 80px;
    box-shadow: 0 4px 30px #0004;
    transition: box-shadow 0.18s;
}

.nav-left {
  width: 11%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-left: 32px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo {
  height: 58px;
  user-select: none;
  pointer-events: none;
  outline: none;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-left:hover,
.nav-left:focus {
  transform: scale(1.08) translateY(-2px) translateX(2px);
  opacity: 0.85;
}
.nav-center {
  width: 78%;
}
.nav-right {
  width: 11%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-right: 32px;
}

.nav-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  z-index: 1201;
  position: relative;
  transition: color 0.14s;
}

.nav-drawer-socials a {
  text-decoration: none;
  color: #2fc960;
  font-size: 24px;
}

.nav-drawer-socials a:nth-child(2) {
  padding-left: 12px;
}

.nav-drawer-socials a i {
  text-shadow: 0 0 8px #00c756, 0 0 16px #00c756;
  transition: text-shadow 0.18s;
}
.nav-drawer-socials a:hover i,
.nav-drawer-socials a:focus i {
  text-shadow: 0 0 16px #00e061, 0 0 32px #00e061;
}

.menu-bar {
  width: 24px;
  height: 3px;
  background: #00c756;
  display: block;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.nav-menu-btn.active .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-menu-btn.active .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
.nav-menu-btn.active .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- OVERLAY --- */
.nav-overlay {
  position: fixed;
  z-index: 1200;
  inset: 0;
  background: rgba(16, 16, 16, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.66,0,.34,1.01);
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- DRAWER MENU --- */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 370px;
  min-width: 180px;
  background: #161616;
  box-shadow: -7px 0 28px #00c7561e;
  z-index: 1202;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(.66,0,.34,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 0 24px 0;
  border-radius: 32px 0 0 32px;
}
.nav-drawer.active {
  transform: translateX(0%);
}

.nav-close-btn {
  position: absolute;
  top: 29px;
  right: 24px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 1203;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-close-btn span {
  position: absolute;
  width: 34px;
  height: 3px;
  background: #00c756;
  border-radius: 3px;
  transition: all 0.3s;
}
.nav-close-btn span:first-child {
  transform: rotate(45deg);
}
.nav-close-btn span:last-child {
  transform: rotate(-45deg);
}

.nav-drawer-list {
  list-style: none;
  padding: 0;
  margin: 56px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-drawer-list li {
  width: 100%;
}
.nav-drawer-list a {
  display: block;
  width: 100%;
  font-size: 1.26rem;
  color: #fff;
  text-decoration: none;
  padding: 18px 36px 18px 36px;
  border-radius: 0 16px 16px 0;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.16s, padding 0.18s;
  outline: none;
}
.nav-drawer-list a:hover,
.nav-drawer-list a:focus {
  background: #00c75622;
  color: #00c756;
  padding-left: 50px;
}

.nav-drawer-socials {
  margin-top: auto;
  display: flex;
  gap: 18px;
  padding-left: 36px;
  align-items: center;
}
.nav-drawer-socials a img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(70%) sepia(84%) saturate(706%) hue-rotate(86deg) brightness(90%) contrast(110%);
  transition: filter 0.13s;
}
.nav-drawer-socials a:hover img,
.nav-drawer-socials a:focus img {
  filter: brightness(0) saturate(100%) invert(59%) sepia(79%) saturate(1041%) hue-rotate(86deg) brightness(120%) contrast(120%);
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  .main-nav {
    height: 52px;
    border-radius: 38px;
    width: 98vw;
    min-width: 0;
    max-width: 99vw;
    top: 7px;
  }
  .logo {
    height: 35px;
  }
  .nav-left {
    padding-left: 12px;
  }
  .nav-right {
    padding-right: 12px;
  }
  .nav-menu-btn {
    width: 32px;
    height: 32px;
    gap: 4px;
  }
  .menu-bar {
    width: 19px;
    height: 2.5px;
  }
  .nav-drawer {
    max-width: 90vw;
    min-width: 0;
    padding: 16px 0 18px 0;
    border-radius: 20px 0 0 20px;
  }
  .nav-close-btn {
    width: 30px;
    height: 30px;
    top: 14px;
    right: 14px;
  }
  .nav-close-btn span {
    width: 25px;
    height: 2.5px;
  }
  .nav-drawer-list {
    margin-top: 35px;
    gap: 7px;
  }
  .nav-drawer-list a {
    font-size: 1.02rem;
    padding: 13px 22px 13px 22px;
    border-radius: 0 10px 10px 0;
  }
  .nav-drawer-list a:hover,
  .nav-drawer-list a:focus {
    padding-left: 32px;
  }
  .nav-drawer-socials {
    gap: 12px;
    padding-left: 18px;
  }
  .nav-drawer-socials a img {
    width: 22px;
    height: 22px;
  }
}


.main-image-container {
  width: 100%;
  height: 1200px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 600px) {
  .main-image-container, .menu-hero-img{
    margin-top: 100px;
  }
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments for phones and smaller screens */
@media (max-width: 600px) {
  .main-image-container {
    height: 300px;
  }
}

/* Videos on loop section */

.double-video-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  background: #131112;
  padding: 25px 0;
}

.video-wrapper {
  width: 500px;
  height: 800px;
  background: #181616;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

@media (max-width: 1200px) {
  .video-wrapper {
    width: 350px;
    height: 450px;
  }
  .double-video-section {
    gap: 16px;
  }
}

@media (max-width: 800px) {
  .double-video-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .video-wrapper {
    width: 90vw;
    max-width: 400px;
    height: 700px;
  }
}

/* Badges section */

.features-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  background: #131112;
  padding: 48px 0;
}

.feature-box {
    background: #232222;
    border-radius: 16px;
    width: 230px;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.feature-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 32px 0 rgba(0,153,71,0.22), 0 0 24px 6px rgba(0,153,71,0.18), 0 0 8px 2px rgba(255,255,255,0.18);
}

.feature-icon {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img, .feature-icon svg {
  width: 80px;
  height: 80px;
  filter: brightness(0) invert(1);
}

.feature-text {
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 8px;
}

@media (max-width: 950px) {
  .features-section {
    gap: 24px;
  }
  .feature-box {
    width: 150px;
    height: 150px;
  }
  .feature-icon img, .feature-icon svg {
    width: 40px;
    height: 40px;
  }
  .feature-text {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .features-section {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }
  .feature-box {
    width: 90vw;
    max-width: 320px;
    height: 110px;
    flex-direction: row;
    padding: 0 18px;
  }
  .feature-icon {
    margin-bottom: 0;
    margin-right: 16px;
  }
  .feature-text {
    margin-top: 0;
    font-size: 14px;
    text-align: left;
  }
}

/* Best seller section */

.menu-title {
    color: #fff;
    font-size: 32px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    margin: 48px 0 48px;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 10px;
}

.carousel-arrow {
  background: transparent;
  color: #009947;
  border: 2px solid #038C3E;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 25px;
  cursor: pointer;
  padding: -10px 0 0 0;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  transition: background 0.18s, color 0.18s, border 0.18s;
  position: relative;
  z-index: 2;
}

.carousel-arrow:hover {
    color: #00e061;
    transform: scale(1.1);
    transition: color 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.22s cubic-bezier(0.4,0,0.2,1);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  border: 2px solid #555;
  color: #555;
}

.menu-cards {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  gap: 36px;
  transition: transform 0.5s cubic-bezier(.4,1.3,.6,1);
  overflow: hidden;
  width: 1120px;
  justify-content: center;
}

.menu-card {
  background: #232222;
  border-radius: 14px;
  width: 240px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: none;
  flex-shrink: 0;
  text-decoration: none;
}

.menu-card:hover {
    transform: scale(1.03);
}

.menu-img {
  width: 200px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 28px;
  margin-top: 16px;
  user-select: none;
  -webkit-user-drag: none;
}

.menu-card-title {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  text-align: center;
}

@media (max-width: 1200px) {
  .menu-cards {
    width: 860px;
    gap: 18px;
  }
  .menu-card {
    width: 200px;
    height: 220px;
  }
  .menu-img {
    width: 120px;
    height: 90px;
    margin-bottom: 16px;
  }
}

@media (max-width: 950px) {
  .menu-cards {
    width: 420px;
    gap: 10px;
  }
  .menu-card {
    width: 180px;
    height: 180px;
  }
  .menu-img {
    width: 90px;
    height: 70px;
  }
}

@media (max-width: 700px) {
  .carousel-container {
    max-width: 98vw;
  }
  .menu-cards {
    width: 90vw;
    gap: 10px;
  }
  .menu-card {
    width: 90vw;
    max-width: 320px;
    height: 120px;
    flex-direction: row;
    padding: 0 10px;
  }
  .menu-img {
    width: 70px;
    height: 70px;
    margin: 0 16px 0 0;
  }
  .menu-card-title {
    font-size: 15px;
    margin-bottom: 0;
    text-align: left;
  }
}

.show-all-btn {
    display: inline-block;
    margin: 32px auto 0 auto;
    color: #fff;
    background: none;
    border: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: color 0.15s;
    outline: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.show-all-btn:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    margin: 6px auto 0 auto;
    background: #fff;
    border-radius: 2px;
    transition: 0.2s;
}

.show-all-btn:hover,
.show-all-btn:focus {
    transform: translate(-50%, -50%) scale(1.05);
    color: #009947;
    transition: color 0.2s, transform 0.2s;
}

.show-all-btn:hover:after,
.show-all-btn:focus:after {
    background: #009947;
}

.menu-section {
  padding-bottom: 64px;
}

@media (max-width: 600px) {
  .menu-section {
    padding-bottom: 32px;
  }
}

/* About us and Instagram containers */

.beef-double-card-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding-bottom: 100px;
}

.beef-card {
    position: relative;
    flex: 1 1 0;
    min-width: 340px;
    max-width: 700px;
    height: 600px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.beef-card--orange {
    background: #038C3E;
    color: #fff;
}

.beef-card--white {
    background: #fff;
    color: #191919;
}

.beef-card-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 0 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.beef-card-lines {
    font-size: 38px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 48px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    padding-top: 80px;
}

.beef-card-line {
    display: block;
    margin-bottom: 12px;
}

.beef-card-line--orange {
    color: #038C3E;
}

.beef-card-line--bold {
    font-weight: 700;
}

.beef-card-btn {
    width: 140px;
    margin-top: 32px;
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-family: 'Inter', Arial, sans-serif;
    color: #191919;
    background: none;
    border: 2px solid #191919;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border 0.15s;
}

.beef-card-btn:hover,
.beef-card-btn:focus {
    background: #191919;
    color: #fff;
    border-color: #191919;
}

.beef-card-btn--white {
    color: #038C3E;
    border-color: #038C3E;
}

.beef-card-btn--white:hover,
.beef-card-btn--white:focus {
    background: #038C3E;
    color: #fff;
    border-color: #038C3E;
}

.beef-card-logo {
    position: absolute;
    right: 40px;
    width: 320px;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.beef-card-logo--bg {
    right: 40px;
    opacity: 0.13;
}

/* Responsive styles for beef-double-card-section and beef-card */

@media (max-width: 1200px) {
    .beef-double-card-section {
        gap: 24px;
        padding-bottom: 60px;
    }
    .beef-card {
        min-width: 260px;
        max-width: 520px;
        height: 420px;
    }
    .beef-card-content {
        padding: 40px 24px 24px 32px;
    }
    .beef-card-lines {
        font-size: 28px;
        margin-bottom: 24px;
        padding-top: 40px;
    }
    .beef-card-logo {
        width: 180px;
        right: 24px;
    }
    .beef-card-logo--bg {
        width: 180px;
        right: 24px;
    }
}

@media (max-width: 900px) {
    .beef-double-card-section {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-bottom: 40px;
    }
    .beef-card {
        min-width: 0;
        max-width: 90vw;
        width: 90vw;
        height: auto;
        border-radius: 12px;
        flex: unset;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    }
    .beef-card-content {
        padding: 32px 20px 24px 20px;
        height: auto;
    }
    .beef-card-lines {
        font-size: 22px;
        margin-bottom: 18px;
        padding-top: 24px;
    }
    .beef-card-logo {
        width: 120px;
        right: 16px;
    }
    .beef-card-logo--bg {
        width: 120px;
        right: 16px;
    }
}

@media (max-width: 600px) {
    .beef-double-card-section {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 24px;
        align-items: center;
    }
    .beef-card {
        min-width: 0;
        max-width: 98vw;
        width: 98vw;
        height: auto;
        border-radius: 10px;
        flex: unset;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0 2px 12px 0 rgba(0,0,0,0.12);
    }
    .beef-card-content {
        padding: 22px 10px 18px 10px;
        height: auto;
    }
    .beef-card-lines {
        font-size: 16px;
        margin-bottom: 12px;
        padding-top: 12px;
    }
    .beef-card-line {
        margin-bottom: 6px;
    }
    .beef-card-btn {
        width: auto;
        min-width: 90px;
        font-size: 14px;
        padding: 8px 14px;
        margin-top: 14px;
    }
    .beef-card-logo {
        position: static;
        width: 100px;
        margin: 12px auto 0 auto;
        display: block;
        opacity: 0.7;
    }
    .beef-card-logo--bg {
        width: 100px;
        opacity: 0.08;
    }
}

/* Location section */

.location-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  background: #131112;
  padding: 80px 0;
}

.location-container {
  border-radius: 20px;
  background: #232222;
  box-sizing: border-box;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 350px;
  max-width: 600px;
  width: 100%;
  height: 600px;
}

.location-container--right {
  background: #fff;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.location-header {
  font-size: 38px;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.location-desc {
  color: #e3e3e3;
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0 0 30px 0;
  line-height: 1.5;
  font-weight: 400;
}

.location-list {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
  margin-bottom: 32px;
}
.location-list li {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.location-list-title {
  font-size: 19px;
  color: #00c756;
  font-weight: 600;
  font-family: 'Inter', Arial, sans-serif;
}
.location-list-address {
  font-size: 16px;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  margin-left: 2px;
}

.location-btn {
  display: inline-block;
  margin-top: auto;
  padding: 16px 48px;
  background: #038C3E;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
}
.location-btn:hover,
.location-btn:focus {
  background: #00c756;
}

.location-map-img {
  display: block;
  max-width: 600px;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-container--left {
  margin-bottom: 16px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .location-section {
        gap: 20px;
        padding: 32px 0;
    }
    .location-container,
    .location-container--right {
        min-width: 0;
        max-width: 350px;
        height: auto;
        border-radius: 14px;
    }
    .location-map-img {
        max-width: 350px;
        max-height: 100vh;
        border-radius: 14px;
    }
    .location-header {
      font-size: 28px; /* was 24px */
    }
    .location-btn {
      font-size: 20px; /* was 17px */
      padding: 12px 28px;
      margin-top: 22px;
    }
    .location-desc {
      font-size: 18px; /* was 15px */
      margin-bottom: 18px;
    }
    .location-list-title {
      font-size: 19px; /* was 16px */
    }
    .location-list-address {
      font-size: 15px; /* was 13px */
    }
  }

  @media (max-width: 900px) {
    .location-section {
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
    }
    .location-container,
    .location-container--right {
      width: 100vw;
      max-width: 100vw;
      min-width: 0;
      height: auto;
      border-radius: 12px;
    }
    .location-map-img {
      max-width: 100vw;
      height: auto;
      border-radius: 12px;
    }
  }

  @media (max-width: 600px) {
    .location-section {
      width: 95vw;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 8px 0px;
    }
    .location-container,
    .location-container--right {
      min-width: 0;
      max-width: 100vw;
      width: 100vw;
      height: auto;
      border-radius: 8px;
      box-sizing: border-box;
    }
    .location-header {
      font-size: 20px; /* was 17px */
      margin-bottom: 7px;
    }
    .location-desc {
      font-size: 14px; /* was 12px */
      margin-bottom: 8px;
    }
    .location-list-title {
      font-size: 15px; /* was 13px */
    }
    .location-list-address {
      font-size: 12px; /* was 10px */
    }
    .location-list li {
      margin-bottom: 10px;
    }
    .location-btn {
      font-size: 17px; /* was 14px */
      padding: 10px 18px;
      margin-top: 11px;
      border-radius: 16px;
    }
    .location-map-img {
      max-width: 100vw;
      max-height: 100vh;
      height: auto;
      border-radius: 8px;
    }
}

/* Google reviews section */

.reviews-section {
  padding: 40px 0 20px 0;
}

.reviews-title {
    color: #fff;
    font-size: 48px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    margin: 0 auto 40px auto;
    letter-spacing: 1px;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 100vw;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 90vw;
  margin: 0 auto;
}

.review-card {
  background: #232222;
  border-radius: 12px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  position: relative;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.review-stars {
  color: #009947;
  font-size: 24px;
  letter-spacing: 2px;
}

.review-google-icon {
  margin-left: 8px;
  display: flex;
  align-items: center;
  opacity: 1;
}

.review-card-user {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.review-card-text {
  font-size: 16px;
  color: #f2f2f2;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .reviews-title { margin-left: 32px; font-size: 32px; }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 850px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reviews-title { margin-left: 16px; }
  .review-card { padding: 24px 12px 18px 12px; }
}

/* Footer section */

.site-footer {
  background: #038C3E;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 0 0 110px 0;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 0 0 64px 0;
  }
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  gap: 60px;
  padding: 32px 0 0 0;
  max-width: 1800px;
  margin: 0 auto;
}

.footer-logo-col {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo {
  width: 370px;
  max-width: 100%;
  margin-left: 0;
  margin-top: 12px;
}

.footer-menu-col {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 48px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.footer-menu li {
    margin-bottom: 20px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color 0.2s;
}

.footer-menu a:hover {
    font-weight: 1000;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  padding: 24px;
}

.footer-social {
  transition: background 0.15s, color 0.15s, transform 0.22s cubic-bezier(0.4,0,0.2,1);
}

.footer-social:hover {
  transform: scale(1.1);
  background: #ffffff3d;
}

.footer-img-col {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}

.footer-map-img {
  width: 340px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.11);
}

.footer-divider {
  border: none;
  border-top: 1.5px solid #fff;
  margin: 38px 44px 12px 44px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 44px;
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  flex-wrap: wrap;
}

.footer-social i {
  font-size: 22px;
  color: #fff;
}

@media (max-width: 1200px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 0 0 0;
  }
  .footer-logo-col, .footer-menu-col, .footer-img-col {
    margin-top: 0;
    align-items: center;
    justify-content: center;
  }
  .footer-logo { margin: 0 auto;}
  .footer-map-img { margin: 0 auto; }
  .footer-divider { margin: 32px 24px 8px 24px; }
  .footer-bottom { margin: 0 24px; }
}

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-logo-col, .footer-img-col {
    justify-content: center;
    width: 100%;
  }
  .footer-map-img, .footer-logo {
    width: 100%;
    max-width: 350px;
  }
  .footer-menu-col {
    align-items: center;
    width: 100%;
  }
  .footer-menu a {
    font-size: 18px;
  }
}

.footer-atol-gift {
    color: #ffffff;
    font-weight: 1000;
    text-decoration: none;  
}

.footer-atol-gift:hover {
    color: black;
    transform: scale(1.1);
    text-shadow: 0 0 8px #038C3E, 0 0 16px #038C3E;
}

/* Catering section */

.katering-section {
  background: #131112;
  padding: 64px 0 64px 0;
}

.katering-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.katering-title {
  color: #fff;
  font-size: 38px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 38px;
  letter-spacing: 0.01em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.katering-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.katering-left {
  background: #232222;
  border-radius: 20px;
  flex: 1 1 0;
  min-width: 340px;
  max-width: 700px;
  padding: 64px 40px 64px 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.katering-cta {
  font-size: 32px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
  z-index: 2;
  position: relative;
}
.katering-orange {
  color: #009947;
  display: inline;
}
.katering-white {
  color: #fff;
  display: inline;
}

.katering-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 38px;
  border-radius: 30px;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  cursor: pointer;
  width: 180px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .katering-btn {
    font-size: 13px;
    padding: 9px 18px;
    width: 100%;
    min-width: 0;
    border-radius: 18px;
    margin-top: 16px;
  }
}

.katering-btn:hover, .katering-btn:focus {
  background: #fff;
  color: #232222;
  border-color: #fff;
}

.katering-logo-bg {
  position: absolute;
  top: 32px;
  right: 32px;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
}

.katering-logo-bg img {
  width: 220px;
  max-width: 100%;
}

.katering-right {
  flex: 1 1 0;
  min-width: 340px;
  max-width: 700px;
  border-radius: 20px;
  overflow: hidden;
  background: #191919;
  display: flex;
  align-items: center;
  justify-content: center;
}

.katering-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .katering-left,
  .katering-right {
    min-width: 240px;
    max-width: 100vw;
    padding: 32px 14px;
  }
  .katering-logo-bg img {
    width: 120px;
  }
  .katering-cta {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .katering-grid {
    flex-direction: column;
    gap: 18px;
  }
  .katering-left,
  .katering-right {
    border-radius: 12px;
    width: 100%;
    min-width: 0;
    padding: 24px 8vw;
  }
  .katering-logo-bg img {
    width: 90px;
  }
}
@media (max-width: 600px) {
  .katering-title {
    font-size: 19px;
    margin-bottom: 16px;
  }
  .katering-left {
    padding: 30px 10px;
    border-radius: 8px;
  }
  .katering-right {
    padding: 0;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .katering-image {
    min-height: 120px;
    height: auto;
    max-height: 300px;
    width: 100%;
    display: block;
    object-fit: cover;
  }
  .katering-cta {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .katering-logo-bg img {
    width: 54px;
  }
  .katering-btn {
    font-size: 13px;
    padding: 9px 18px;
  }
}

/* O nama section */
.about-hero-section {
  background: #131112;
  padding: 32px 0;
  margin-top: 100px;
}

/* Make height bigger on smaller screens */
@media (max-width: 800px) {
  .about-hero-section {
    padding-bottom: 10px;
    padding: 10px;
    margin-top: 100px;
  }
}

.about-hero-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
  background: #232222;
  border-radius: 0 28px 0 0;
  overflow: hidden;
}

.about-hero-left {
  flex: 2 1 0;
  padding: 90px 56px 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-title {
  color: #fff;
  font-size: 46px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  line-height: 1.1;
}

.about-hero-orange {
  color: #009947;
}

.about-hero-subtitle {
  color: #fff;
  font-size: 23px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 10px;
  line-height: 1.5;
}

.about-hero-subtitle .about-hero-orange {
  font-weight: 500;
}

.about-hero-right {
  flex: 1.2 1 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 380px;
  max-width: 540px;
}

.about-hero-img-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #009947;
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 40% 100%);
  z-index: 1;
  border-radius: 0 28px 0 0;
}
.about-hero-img {
  position: relative;
  z-index: 2;
  width: 480px; /* Increased from 380px */
  max-width: 100%;
  object-fit: cover;
  margin-right: 32px;
  margin-bottom: 0;
  border-radius: 0 20px 0 0;
  background: transparent;
}

@media (max-width: 1100px) {
  .about-hero-left {
    padding: 42px 22px 42px 22px;
  }
  .about-hero-title {
    font-size: 30px;
  }
  .about-hero-right {
    min-width: 280px; /* Increased from 230px */
    max-width: 420px; /* Increased from 320px */
  }
  .about-hero-img {
    width: 260px; /* Increased from 180px */
    margin-right: 14px;
  }
}

@media (max-width: 800px) {
  .about-hero-container {
    flex-direction: column;
    border-radius: 0 0 18px 0;
  }
  .about-hero-left {
    padding: 24px 10px 12px 10px;
  }
  .about-hero-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about-hero-subtitle {
    font-size: 13px;
  }
  .about-hero-right {
    min-width: 0;
    max-width: 100vw;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 12px;
  }
  .about-hero-img {
    width: 160px; /* Increased from 100px */
    margin-right: 0;
  }
  .about-hero-img-bg {
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 40% 100%);
    border-radius: 0 0 18px 0;
  }
}


.ph-story-section {
  background: #131112;
  padding: 48px 0 0 0;
}

.ph-story-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 700px;
}

.ph-story-left {
  flex: 1.1 1 0;
  background: transparent;
  padding: 60px 36px 36px 48px;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ph-story-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 28px;
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
}
.ph-story-orange {
  color: #009947;
}

.ph-story-left p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 0;
}

.ph-story-contact {
  color: #009947;
  font-weight: 600;
  font-size: 17px;
  word-break: break-all;
  display: inline-block;
  margin-top: 20px;
}

.ph-story-right {
  flex: 1 1 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
  min-width: 300px;
  max-width: 600px;
  position: relative;
}

.ph-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: 2px solid #191919;
  background: #191919;
}

@media (max-width: 1100px) {
  .ph-story-container {
    min-height: 0;
  }
  .ph-story-title { font-size: 32px; }
  .ph-story-left { padding: 30px 16px 16px 16px; font-size: 15px; }
}

@media (max-width: 800px) {
  .ph-story-container {
    flex-direction: column;
    min-height: 0;
  }
  .ph-story-left {
    padding: 24px 10px 10px 10px;
    font-size: 14px;
  }
  .ph-story-title { font-size: 20px; }
  .ph-story-right {
    min-width: 0;
    max-width: 100vw;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 12px;
  }
  .ph-story-img {
    width: 100vw;
    min-height: 200px;
    max-height: 320px;
    border-left: none;
    border-top: 2px solid #191919;
    border-radius: 0 0 18px 18px;
  }
}
/* Gallery section*/

.ph-gallery-section {
  outline-offset: 4px;
  padding: 6px 0;
}

.ph-gallery-container {
  outline-offset: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
}

.ph-gallery-container img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* About us badges section */

.ph-stats-section {
  background: #131112;
  padding: 48px 0 36px 0;
  display: flex;
  justify-content: center;
}

.ph-stats-container {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ph-stat-box {
  background: #232222;
  border-radius: 18px;
  width: 240px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: none;
}

.ph-stat-box--orange {
  background: #009947;
  color: #fff;
}

.ph-stat-icon img {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.ph-stat-box--orange .ph-stat-icon img {
  filter: none;
}

.ph-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  font-family: 'Inter', Arial, sans-serif;
}

.ph-stat-label {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.01em;
  font-family: 'Inter', Arial, sans-serif;
}

.ph-stat-box--orange .ph-stat-label,
.ph-stat-box--orange .ph-stat-number {
  color: #fff;
}

@media (max-width: 950px) {
  .ph-stats-container { gap: 18px; }
  .ph-stat-box { width: 160px; height: 130px; }
  .ph-stat-number { font-size: 28px; }
  .ph-stat-label { font-size: 12px; }
  .ph-stat-icon img { width: 25px; height: 25px; }
}

@media (max-width: 600px) {
  .ph-stats-container { flex-direction: column; gap: 14px; align-items: center; }
  .ph-stat-box { width: 92vw; max-width: 320px; height: 76px; border-radius: 9px; flex-direction: row; justify-content: flex-start; padding-left: 18px; }
  .ph-stat-icon img { margin: 0 12px 0 0; }
  .ph-stat-number { font-size: 22px; margin: 0 12px 0 0; }
  .ph-stat-label { font-size: 11px; }
}

/* Contact section */

.ph-contact-section {
  background: #131112;
  min-height: 100vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ph-contact-container {
  background: #232222;
  border-radius: 16px;
  max-width: 72vw;
  min-width: 340px;
  margin: 80px auto;
  padding: 42px 36px 44px 36px;
  box-sizing: border-box;
  width: 100%;
}

.ph-contact-title {
  color: #fff;
  font-size: 44px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 38px;
  letter-spacing: 0.03em;
}

.ph-contact-title-orange {
  color: #009947;
}

.ph-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ph-contact-row {
  display: flex;
  gap: 18px;
  width: 100%;
}

.ph-contact-form input,
.ph-contact-form textarea {
  background: #232222;
  border: 1px solid #353535;
  border-radius: 6px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', Arial, sans-serif;
  width: 100%;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  resize: none;
}

.ph-contact-form input:focus,
.ph-contact-form textarea:focus {
  border: 1.5px solid #009947;
  box-shadow: 0 0 0 1.5px #00994733;
}

.ph-contact-form textarea {
  min-height: 120px;
  max-height: 280px;
}

.ph-contact-btn {
  background: #009947;
  border: none;
  border-radius: 28px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 36px;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.18s;
  font-family: 'Inter', Arial, sans-serif;
  box-shadow: none;
  align-self: flex-start;
}

.ph-contact-btn:hover,
.ph-contact-btn:focus {
  background: #e94c0a;
}

.ph-contact-success {
  margin-top: 30px;
  text-align: center;
  color: #fff;
  background: #038C3E;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
}

@media (max-width: 900px) {
  .ph-contact-container {
    max-width: 95vw;
    padding: 28px 4vw 28px 4vw;
  }
  .ph-contact-title {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .ph-contact-row {
    flex-direction: column;
    gap: 10px;
  }
  .ph-contact-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

.location-section2 {
  margin-top: 0;
  padding-top: 0;
}

/* FAQ section */

.ph-faq-section {
  background: #131112;
  padding: 40px 0 60px 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.ph-faq-container {
  background: #232222;
  border-radius: 22px;
  max-width: 1100px;
  width: 93vw;
  margin: 0 auto;
  padding: 44px 32px;
  box-sizing: border-box;
}

.ph-faq-title {
  color: #fff;
  font-size: 44px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 38px;
  letter-spacing: 0.03em;
}

.ph-faq-title span {
  color: #009947;
}

.ph-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ph-faq-item {
  background: #2a2929;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.ph-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  text-align: left;
  font-size: 20px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  transition: background 0.18s;
}

.ph-faq-question:hover {
  background: #232222;
}

.ph-faq-toggle {
  font-size: 28px;
  color: #009947;
  margin-left: 20px;
  font-weight: bold;
}

.ph-faq-answer {
  color: #e6e6e6;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Inter', Arial, sans-serif;
  padding: 0 22px 18px 22px;
  display: none;
  background: #262525;
  animation: ph-fade-in 0.33s;
}

.ph-faq-item.active .ph-faq-answer {
  display: block;
}

.ph-faq-item .ph-faq-toggle {
  transition: color 0.18s;
}

@media (max-width: 700px) {
  .ph-faq-container {
    padding: 16px 2vw;
  }
  .ph-faq-title {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .ph-faq-question {
    font-size: 15px;
    padding: 10px 12px;
  }
  .ph-faq-answer {
    font-size: 13px;
    padding: 0 12px 12px 12px;
  }
}

@keyframes ph-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Location section */

.ph-location-section {
  background: #131112;
  min-height: 100vh;
  padding: 0;
  padding-top: 128px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.ph-location-wrapper {
  display: flex;
  width: 96vw;
  max-width: 1800px;
  min-height: 90vh;
  margin: 28px auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.ph-location-list {
  background: #232222;
  border-radius: 16px 0 0 16px;
  padding: 38px 34px 38px 34px;
  width: 470px;
  min-width: 310px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  max-height: 85vh;
  border-right: 1px solid #292929;
  box-sizing: border-box;
}
.ph-location-item {
  margin-bottom: 34px;
}
.ph-location-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: #009947;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.ph-location-title span {
  color: #fff;
  font-weight: 400;
  margin-left: 6px;
}
.ph-location-address {
  color: #cfcfcf;
  font-size: 16px;
  margin-bottom: 7px;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.2;
}
.ph-location-hours {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-family: 'Inter', Arial, sans-serif;
}
.ph-location-hours span {
  color: #009947;
  font-weight: 600;
}
.ph-location-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.ph-ue-btn {
  display: flex;
  align-items: center;
  background: #232222;
  border: 2px solid #009947;
  border-radius: 7px;
  padding: 3px 15px 3px 9px;
  color: #009947;
  font-weight: 700;
  font-size: 19px;
  text-decoration: none;
  transition: background 0.16s, color 0.16s, border 0.16s;
  letter-spacing: 0.02em;
}
.ph-ue-btn:hover {
  background: #009947;
  color: #fff;
  border-color: #009947;
}
.ph-ue-btn img {
  height: 25px;
  width: 25px;
  margin-right: 7px;
}
.ph-ue-green {
  color: #2fc960;
}
.ph-location-phone {
  color: #009947;
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
  display: flex;
  align-items: center;
}
.ph-location-divider {
  border-bottom: 1.5px solid #363535;
  margin-bottom: 34px;
}
.ph-location-map {
  flex: 1 1 0;
  min-width: 350px;
  height: 85vh;
  background: #232222;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
}
.ph-location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 16px 16px 0;
  min-height: 300px;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .ph-location-wrapper {
    flex-direction: column;
    width: 99vw;
    max-width: 99vw;
  }
  .ph-location-list,
  .ph-location-map {
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .ph-location-list {
    max-height: unset;
    padding: 22px 7vw 22px 7vw;
    border-right: none;
    border-bottom: 1px solid #292929;
  }
  .ph-location-map {
    border-radius: 0 0 16px 16px;
    height: 44vh;
    min-height: 240px;
    margin-bottom: 34px;
  }
  .ph-location-section {
    padding-top: 60px;
  }
}
@media (max-width: 700px) {
  .ph-location-section {
    padding: 0;
    padding-top: 60px;
  }
  .ph-location-list {
    padding: 12px 2vw 12px 2vw;
  }
  .ph-location-title { font-size: 15px; }
  .ph-location-address, .ph-location-hours { font-size: 11px; }
  .ph-location-phone { font-size: 11px; }
  .ph-ue-btn { font-size: 11px; padding: 2px 7px 2px 4px; }
  .ph-ue-btn img { height: 13px; width: 13px; }
}

/* font-size fix */

body {
  font-size: 20px;
}

/* Navigation */
.menu-title {
  font-size: 39px;
}
.show-all-btn,
.show-all-btn:after {
  font-size: 22px;
}
.menu-card-title {
  font-size: 18px;
}
.menu-card {
  font-size: 18px;
}

/* Features section */
.feature-text {
  font-size: 19px;
}
@media (max-width: 950px) {
  .feature-text {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .feature-text {
    font-size: 17px;
  }
}

/* Location section */
.location-header {
  font-size: 46px;
}
.location-subtext {
  font-size: 24px;
}
.location-btn {
  font-size: 24px;
}
@media (max-width: 1200px) {
  .location-header {
    font-size: 27px;
  }
  .location-btn {
    font-size: 18px;
  }
  .location-subtext {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .location-header {
    font-size: 18px;
  }
  .location-subtext {
    font-size: 13px;
  }
  .location-btn {
    font-size: 14px;
  }
}

/* Reviews section */
.reviews-title {
  font-size: 58px;
}
.review-stars {
  font-size: 29px;
}
.review-card-user {
  font-size: 24px;
}
.review-card-text {
  font-size: 19px;
}
@media (max-width: 1200px) {
  .reviews-title {
    font-size: 39px;
  }
}
@media (max-width: 850px) {
  .review-card {
    font-size: 18px;
  }
}

/* Footer */
.footer-menu a {
  font-size: 27px;
}
.footer-bottom {
  font-size: 18px;
}
.footer-social i {
  font-size: 27px;
}
@media (max-width: 700px) {
  .footer-menu a {
    font-size: 22px;
  }
}

/* Catering section */
.katering-title {
  font-size: 46px;
}
.katering-cta {
  font-size: 39px;
}
.katering-btn {
  font-size: 22px;
}
@media (max-width: 1100px) {
  .katering-cta {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .katering-title {
    font-size: 23px;
  }
  .katering-cta {
    font-size: 17px;
  }
  .katering-btn {
    font-size: 16px;
  }
}

/* About hero section */
.about-hero-title {
  font-size: 55px;
}
.about-hero-subtitle {
  font-size: 28px;
}
@media (max-width: 1100px) {
  .about-hero-title {
    font-size: 36px;
  }
}
@media (max-width: 800px) {
  .about-hero-title {
    font-size: 22px;
  }
  .about-hero-subtitle {
    font-size: 16px;
  }
}

/* Story section */
.ph-story-title {
  font-size: 58px;
}
.ph-story-left,
.ph-story-left p,
.ph-story-contact {
  font-size: 20px;
}
@media (max-width: 1100px) {
  .ph-story-title {
    font-size: 39px;
  }
  .ph-story-left,
  .ph-story-left p,
  .ph-story-contact {
    font-size: 18px;
  }
}
@media (max-width: 800px) {
  .ph-story-title {
    font-size: 24px;
  }
  .ph-story-left,
  .ph-story-left p,
  .ph-story-contact {
    font-size: 16px;
  }
}

/* Stats section */
.ph-stat-number {
  font-size: 51px;
}
.ph-stat-label {
  font-size: 18px;
}
@media (max-width: 950px) {
  .ph-stat-number {
    font-size: 34px;
  }
  .ph-stat-label {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .ph-stat-number {
    font-size: 27px;
  }
  .ph-stat-label {
    font-size: 13px;
  }
}

/* Contact section */
.ph-contact-title {
  font-size: 53px;
}
.ph-contact-form input,
.ph-contact-form textarea {
  font-size: 18px;
}
.ph-contact-btn {
  font-size: 22px;
}
.ph-contact-success {
  font-size: 22px;
}
@media (max-width: 900px) {
  .ph-contact-title {
    font-size: 31px;
  }
  .ph-contact-btn {
    font-size: 18px;
  }
}

/* FAQ section */
.ph-faq-title {
  font-size: 53px;
}
.ph-faq-question {
  font-size: 24px;
}
.ph-faq-toggle {
  font-size: 34px;
}
.ph-faq-answer {
  font-size: 19px;
}
@media (max-width: 700px) {
  .ph-faq-title {
    font-size: 29px;
  }
  .ph-faq-question {
    font-size: 18px;
  }
  .ph-faq-answer {
    font-size: 16px;
  }
}

/* Location list/map section */
.ph-location-title {
  font-size: 30px;
}
.ph-location-address {
  font-size: 19px;
}
.ph-location-hours {
  font-size: 18px;
}
.ph-ue-btn {
  font-size: 23px;
}
.ph-location-phone {
  font-size: 22px;
}
@media (max-width: 700px) {
  .ph-location-title {
    font-size: 18px;
  }
  .ph-location-address,
  .ph-location-hours {
    font-size: 13px;
  }
  .ph-location-phone {
    font-size: 13px;
  }
  .ph-ue-btn {
    font-size: 13px;
  }
}

.ph-location-item.active {
  border-radius: 10px;
  padding: 10px;
  background: #2e2e2e;
  box-shadow: 0 4px 28px 0 #00000022;
}

.ph-location-item {
  transition: padding 0.22s cubic-bezier(0.4,0,0.2,1), background 0.22s, box-shadow 0.22s, border-radius 0.22s;
}

.ph-location-item:hover {
  border-radius: 10px;
  padding: 10px;
  background: #353535;
  box-shadow: 0 2px 10px 0 #00000018;
}

/* Header menu picture section */

.menu-hero-section {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.menu-hero-img {
  width: 100vw;
  max-width: 100%;
  min-width: 100vw;
  display: block;
  object-fit: cover;
  height: auto;
  min-height: 250px;
  /* Optional: For better mobile aspect ratio, you can set a max-height */
  /* max-height: 600px; */
}

/* Menu section */

.menu-category-section {
  width: 100vw;
  max-width: 100%;
  background: #131112;
  padding-top: 32px;
  padding-bottom: 48px;
  min-height: 650px;
}

.menu-category-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 30px 0;
  width: 100%;
  max-width: 100vw;
}

.menu-cat-nav {
  background: none;
  border: 2px solid #038C3E;
  color: #009947;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  cursor: pointer;
  margin: 0 12px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.menu-cat-nav:hover,
.menu-cat-nav:focus {
  background: #009947;
  color: #fff;
  box-shadow: 0 4px 16px #00994733;
}

.menu-category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  width: 100%;
  padding: 8px 6px 12px 6px; /* Added padding-top for scrollbar */
  max-width: 1080px;
  scrollbar-width: thin;
  scrollbar-color: #038C3E #232222;
  scroll-behavior: smooth;
  justify-content: flex-start;
}

.menu-category-card {
  background: #232222;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: none;
  padding: 10px 14px;
  min-width: 90px;
  transition: box-shadow 0.18s, background 0.18s, transform 0.17s;
}

.cat-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #191818;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
  margin-bottom: 4px;
}

.menu-category-card.active .cat-icon-circle {
  border: 2px solid #009947;
  box-shadow: 0 0 0 2px #038C3E33;
}

.menu-category-card:hover .cat-icon-circle {
  border: 2px solid #038C3E;
}

.menu-category-card img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.menu-category-card span {
  color: #fff;
  font-size: 12px;
  margin-top: 0;
  text-align: center;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.15s;
  line-height: 1.1;
  max-width: 60px;
  overflow-wrap: break-word;
}
.menu-category-card.active span {
  color: #009947;
  font-weight: 600;
}

.menu-category-content {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  text-align: center;
  padding: 0 2vw;
}
#menu-category-title {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  margin-top: 4px;
  text-shadow: 0 2px 12px #0004;
  word-break: break-word;
}
.menu-food-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
  width: 100%;
}

.menu-food-card {
  background: #232222;
  border-radius: 14px;
  width: 96vw;
  max-width: 340px;
  min-width: 0;
  min-height: 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 8px;
  box-shadow: 0 2px 10px #0002;
  transition: transform 0.16s, box-shadow 0.16s, background 0.14s;
  cursor: pointer;
  margin: 0 auto;
}
.menu-food-card:hover {
  transform: scale(1.025);
  box-shadow: 0 4px 16px #00994733;
  background: #191818;
}
.menu-food-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-right: 12px;
  border-radius: 50%;
  background: #191818;
  box-shadow: 0 2px 8px #0002;
  border: 2px solid #232222;
  transition: border 0.13s;
  flex-shrink: 0;
}
.menu-food-card:hover img {
  border: 2px solid #009947;
}
.menu-food-card span {
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.01em;
  margin-top: 0;
  line-height: 1.2;
  word-break: break-word;
  flex: 1 1 0;
}
@media (min-width: 601px) {
  .menu-category-section {
    padding-top: 0px;
    padding-bottom: 32px;
    min-height: 650px;
  }
  .menu-category-carousel {
    padding: 40px 0 30px 0;
  }
  .menu-cat-nav {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
    margin: 0 12px;
  }
  .menu-category-list {
    gap: 30px;
    max-width: 1080px;
    padding: 8px 6px 0 6px; /* Added padding-top for scrollbar */
    justify-content: center; /* Always center cards on desktop */
  }
  .menu-category-card {
    border-radius: 32px;
    padding: 14px 20px;
    min-width: 110px;
  }
  .cat-icon-circle {
    width: 64px;
    height: 64px;
    margin-bottom: 7px;
  }
  .menu-category-card img {
    width: 52px;
    height: 52px;
  }
  .menu-category-card span {
    font-size: 17px;
    max-width: 110px;
  }
  .menu-category-content {
    max-width: 1500px;
    padding: 0;
  }
  #menu-category-title {
    font-size: 2rem;
    margin-bottom: 32px;
    margin-top: 8px;
  }
  .menu-food-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 10px;
    align-items: flex-start;
    justify-content: center; /* Always center cards on desktop */
  }
  .menu-food-card {
    border-radius: 26px;
    width: 290px;
    min-height: 210px;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 18px 18px;
    margin: 0;
    max-width: unset;
  }
  .menu-food-card img {
    width: 110px;
    height: 110px;
    margin: 0 0 16px 0;
  }
  .menu-food-card span {
    text-align: center;
    margin-top: 4px;
    font-size: 1.18rem;
  }
}

/* Add padding-top to scrollbar on desktop */
.menu-category-list::-webkit-scrollbar {
  height: 12px;
  margin-top: 8px; /* visually adds space above scrollbar */
}

/* Make scrollbars more visible and touch-friendly on mobile */
.menu-category-list::-webkit-scrollbar {
  height: 8px;
  margin-top: 4px; /* visually adds space above scrollbar */
}
.menu-category-list::-webkit-scrollbar-thumb {
  background: #009947;
  border-radius: 4px;
}
.menu-category-list::-webkit-scrollbar-track {
  background: #232222;
@media (max-width: 600px) {
  .menu-category-list {
    gap: 14px;
    max-width: 100vw;
    padding: 8px 2px 0 2px;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100vw;
    justify-content: flex-start;
  }
  .menu-cat-nav {
    min-width: 38px;
    min-height: 38px;
    font-size: 1.3rem;
    margin: 0 2px;
    padding: 0;
  }
  .cat-icon-circle {
    width: 48px;
    height: 48px;
  }
  .menu-category-card img {
    width: 32px;
    height: 32px;
  }
}
}

/* Make sure cards are not too tall on small screens */
@media (max-width: 400px) {
  .menu-food-card {
    min-height: 70px;
    padding: 6px 2px;
  }
  .menu-food-card img {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }
  .menu-food-card span {
    font-size: 0.95rem;
  }
}

/* Loading screen */

#custom-loader-overlay {
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: #131112;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s;
}

.custom-loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loader-pop 1.1s cubic-bezier(.66,0,.34,1.01) forwards;
}

#custom-loader-img {
  width: 110px;
  height: 110px;
  opacity: 0;
  filter: drop-shadow(0 0 30px #00994788);
  animation: loader-draw 0.9s cubic-bezier(.66,0,.34,1.01) .15s forwards, loader-glow 0.9s 0.9s infinite alternate, loader-spin 1.2s linear 0.9s infinite;
}

@keyframes loader-draw {
  to {
    opacity: 1;
    filter: drop-shadow(0 0 10px #009947cc);
  }
}
@keyframes loader-pop {
  0% { transform: scale(0.2);}
  80% { transform: scale(1.1);}
  100% { transform: scale(1);}
}
@keyframes loader-glow {
  from { filter: drop-shadow(0 0 10px #009947cc);}
  to { filter: drop-shadow(0 0 25px #009947);}
}
@keyframes loader-spin {
  100% { transform: rotate(360deg); }
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

@media (max-width: 600px) {
  body, html {
    width: 100vw;
    overflow-x: hidden;
  }
  [class*="container"], [class*="section"], [class*="wrapper"] {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

/* Catering section */

.catering-benefits-section {
  width: 100vw;
  max-width: 100vw;
  background: #131112;
  padding: 0 0 40px 0;
}

.catering-benefits-title {
  color: #fff;
  font-size: 2.3rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 auto 36px auto;
  padding: 38px 0 0 0;
  line-height: 1.1;
  max-width: 900px;
  text-align: center;
  display: block;
}

.catering-benefits-highlight {
  color: #00c756;
}

.catering-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2vw;
}

.catering-benefit-card {
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px 36px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  background: #232222;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.14);
}

.catering-benefit-card.green {
  background: #00c756;
  color: #fff;
}
.catering-benefit-card.green h3,
.catering-benefit-card.green p {
  color: #fff;
}
.catering-benefit-card.green .catering-benefit-icon svg * {
  stroke: #fff !important;
  opacity: 0.25;
}

.catering-benefit-card.dark {
  background: #232222;
  color: #fff;
}
.catering-benefit-card.dark h3,
.catering-benefit-card.dark p {
  color: #fff;
}
.catering-benefit-card.dark .catering-benefit-icon svg * {
  stroke: #00c756 !important;
  opacity: 0.23;
}

.catering-benefit-content {
  flex: 1 1 0;
  z-index: 2;
  position: relative;
}
.catering-benefit-content h3 {
  font-size: 1.18rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 14px 0;
}
.catering-benefit-content p {
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.catering-benefit-icon {
  margin-left: auto;
  flex-shrink: 0;
  z-index: 1;
  opacity: 1;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catering-benefit-icon svg {
  width: 110px;
  height: 110px;
  display: block;
}

@media (max-width: 950px) {
  .catering-benefits-title {
    font-size: 1.2rem;
    padding: 26px 0 0 4vw;
    margin-bottom: 18px;
  }
  .catering-benefits-grid {
    gap: 14px;
  }
  .catering-benefit-card {
    width: 92vw;
    padding: 22px 14px;
    min-height: 160px;
  }
  .catering-benefit-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .catering-benefit-content p {
    font-size: 0.92rem;
  }
  .catering-benefit-icon {
    width: 64px;
    height: 64px;
  }
  .catering-benefit-icon svg {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 600px) {
  .catering-benefits-title {
    font-size: 1rem;
    padding: 18px 0 0 3vw;
    margin-bottom: 10px;
  }
  .catering-benefits-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 2vw;
  }
  .catering-benefit-card {
    padding: 12px 7px;
    border-radius: 8px;
    min-height: 160px;
  }
  .catering-benefit-content h3 {
    font-size: 0.95rem;
  }
  .catering-benefit-content p {
    font-size: 0.85rem;
  }
  .catering-benefit-icon {
    width: 38px;
    height: 38px;
  }
  .catering-benefit-icon svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 24px; /* was 20px, +20% and rounded up */
  }
  .menu-title {
    font-size: 24px; /* was 20px, +20% and rounded up */
  }
  .show-all-btn,
  .show-all-btn:after {
    font-size: 27px; /* was 22px, +20% and rounded up */
  }
  .menu-card-title,
  .menu-card {
    font-size: 22px; /* was 18px, +20% and rounded up */
  }
  .feature-text {
    font-size: 21px; /* was 17px, +20% and rounded up */
  }
  .location-header {
    font-size: 22px; /* was 18px, +20% and rounded up */
  }
  .location-subtext {
    font-size: 16px; /* was 13px, +20% and rounded up */
  }
  .location-btn {
    font-size: 17px; /* was 14px, +20% and rounded up */
  }
  .reviews-title {
    font-size: 35px; /* was 29px, +20% and rounded up */
  }
  .review-stars {
    font-size: 35px; /* was 29px, +20% and rounded up */
  }
  .review-card-user {
    font-size: 29px; /* was 24px, +20% and rounded up */
  }
  .review-card-text {
    font-size: 23px; /* was 19px, +20% and rounded up */
  }
  .footer-menu a {
    font-size: 27px; /* was 22px, +20% and rounded up */
  }
  .footer-bottom {
    font-size: 22px; /* was 18px, +20% and rounded up */
  }
  .footer-social i {
    font-size: 33px; /* was 27px, +20% and rounded up */
  }
  .katering-title {
    font-size: 28px; /* was 23px, +20% and rounded up */
  }
  .katering-cta {
    font-size: 21px; /* was 17px, +20% and rounded up */
  }
  .katering-btn {
    font-size: 20px; /* was 16px, +20% and rounded up */
  }
  .about-hero-title {
    font-size: 27px; /* was 22px, +20% and rounded up */
  }
  .about-hero-subtitle {
    font-size: 19px; /* was 16px, +20% and rounded up */
  }
  .ph-story-title {
    font-size: 29px; /* was 24px, +20% and rounded up */
  }
  .ph-story-left,
  .ph-story-left p,
  .ph-story-contact {
    font-size: 19px; /* was 16px, +20% and rounded up */
  }
  .ph-stat-number {
    font-size: 33px; /* was 27px, +20% and rounded up */
  }
  .ph-stat-label {
    font-size: 16px; /* was 13px, +20% and rounded up */
  }
  .ph-contact-title {
    font-size: 37px; /* was 31px, +20% and rounded up */
  }
  .ph-contact-form input,
  .ph-contact-form textarea {
    font-size: 22px; /* was 18px, +20% and rounded up */
  }
  .ph-contact-btn {
    font-size: 22px; /* was 18px, +20% and rounded up */
  }
  .ph-contact-success {
    font-size: 27px; /* was 22px, +20% and rounded up */
  }
  .ph-faq-title {
    font-size: 35px; /* was 29px, +20% and rounded up */
  }
  .ph-faq-question {
    font-size: 22px; /* was 18px, +20% and rounded up */
  }
  .ph-faq-toggle {
    font-size: 41px; /* was 34px, +20% and rounded up */
  }
  .ph-faq-answer {
    font-size: 19px; /* was 16px, +20% and rounded up */
  }
  .ph-location-title {
    font-size: 22px; /* was 18px, +20% and rounded up */
  }
  .ph-location-address,
  .ph-location-hours {
    font-size: 16px; /* was 13px, +20% and rounded up */
  }
  .ph-location-phone {
    font-size: 16px; /* was 13px, +20% and rounded up */
  }
  .ph-ue-btn {
    font-size: 16px; /* was 13px, +20% and rounded up */
  }
}

.button-68 {
  appearance: none;
  backface-visibility: hidden;
  background-color: #27ae60;
  border-radius: 8px;
  border-style: none;
  box-shadow: rgba(39, 174, 96, .15) 0 4px 9px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 16px 24px;
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1100;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

/* Responsive adjustments for phones and smaller screens */
@media (max-width: 600px) {
  .button-68 {
    left: 12px;
    bottom: 12px;
    padding: 12px 20px;
    font-size: 20px;
    border-radius: 6px;
  }
}

.button-68:hover {
  background-color: #1e8449;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.button-68:active {
  transform: translateY(2px);
  transition-duration: .35s;
}

.button-68:hover {
  box-shadow: rgba(39, 174, 96, .2) 0 6px 12px;
}

.location-bold-text {
  font-weight: 1000;
  font-size: 24px;
}

.corner-btn {
  position: fixed;
  z-index: 1101;
  bottom: 32px;
  padding: 18px 34px;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 8px;
  border: 3px solid #fff;
  box-shadow: 0 3px 18px rgba(0,0,0,0.13);
  cursor: pointer;
  text-decoration: none;
  background: #fff;
  width: auto;
  min-width: 0;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s, color 0.2s;
}

.left-btn {
  left: 32px;
  background: #f58220;
  color: #fff;
  border-color: #fff;
}
.left-btn:hover, .left-btn:focus {
  border-color: #f58220;
  background: #fff;
  color: #f58220;
}

.right-btn {
  right: 32px;
  background: #40637a;
  color: #fff;
  border-color: #fff;
}
.right-btn:hover, .right-btn:focus {
  border-color: #40637a;
  background: #fff;
  color: #40637a;
}

@media (max-width: 600px) {
  .corner-btn {
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 6px;
    bottom: 10px;
  }
  .left-btn { left: 8px; }
  .right-btn { right: 8px; }
}

.order-mode-toggle {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 28px 0 -12px 0;
}
.order-mode-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid #cccccc;
  background: #fff;
  color: #222;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.order-mode-btn i {
  font-size: 1.22em;
}
.order-mode-btn.active {
  background: #f58220;
  color: #fff;
  border-color: #f58220;
}
#btn-preuzimanje.active {
  background: #40637a;
  color: #fff;
  border-color: #40637a;
}
.order-mode-btn:hover, .order-mode-btn:focus {
  border-color: #222;
}

/* SEO optimized heading styles */
.seo-heading-section {
  padding: 25px 20px;
  text-align: center;
  background: #131112;
  margin: 0 auto;
  max-width: 100%;
}

.seo-main-heading {
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 153, 71, 0.3);
  letter-spacing: 0.01em;
}

.seo-sub-heading {
  color: #e3e3e3;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .seo-main-heading {
    font-size: 36px;
  }
  .seo-sub-heading {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  .seo-heading-section {
    padding: 20px 15px;
  }
  .seo-main-heading {
    font-size: 30px;
  }
  .seo-sub-heading {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .seo-heading-section {
    padding: 18px 10px;
  }
  .seo-main-heading {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .seo-sub-heading {
    font-size: 14px;
  }
}