/* ============================================================
   Contact Info Section
============================================================ */
.contact-info {
  background-color: #ffffff;
  padding-top: 50px;
}

.contact-info__top {
  max-width: 1090px;
  margin: 0px auto;
  padding-top: 60px;
  position: relative;
}

.contact-info__logo {
  width: 698px;
  height: 698px;
  padding: 60px;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  border-radius: 50%;
  background-color: #ffffff;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.05));
}

.contact-info__logo img {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 2%;
  width: 200px;
  right: 35%;
}

.contact-info__content {
  width: 600px;
  height: 600px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  padding: 135px 100px 112px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  background-color: #18191c;
}

.contact-info__content::after {
  content: "";
  width: calc(100% - 61px);
  height: calc(100% - 61px);
  position: absolute;
  top: 60px;
  right: 60px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info__title {
  margin-bottom: 32px;
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}

.contact-info__title span {
  font-weight: 700;
  color: #ffa501;
}

.contact-info .misiom-btn:hover {
  color: #18191c;
}

.contact-info .misiom-btn::before,
.contact-info .misiom-btn::after {
  background-color: #ffffff;
}

.contact-info .container-fluid {
  max-width: 1690px;
  padding: 0 3rem;
}

.contact-info__wrapper {
  margin-top: -115px;
  padding: 76px 0px 71px;
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0px 0px;
  background-color: #bb1e1e;
}

.contact-info__wrapper__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: inherit;
  overflow: hidden;
  text-align: center;
}

.contact-info__wrapper__bg img {
  margin-top: -310px;
}

.contact-info__wrapper__content {
  position: relative;
  z-index: 1;
}

.contact-info__wrapper .row>* {
  position: relative;
}

.contact-info__item--1 {
  padding-left: 40px;
}

.contact-info__item--2 {
  padding-left: 0px;
}

.contact-info__item__icon {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 60px;
  color: #ffffff;
}

.contact-info__item__icon--email {
  animation: emailFloat 2s ease-in-out infinite;
}

.contact-info__item__icon--phone {
  animation: phoneShake 1s ease-in-out infinite;
  transform-origin: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  font-size: 36px;
  color: #ffa501;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.contact-info__item__link {
  padding-bottom: 27px;
  margin-bottom: 22px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(24, 25, 28, 0.102);
}

.contact-info__item__link a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-info__item__link a:hover {
  background-size: 100% 1px;
}

.contact-info__item__text {
  margin-bottom: 0px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.875;
}

.contact-info__image {
  margin: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -71px;
  animation: floatUp 4s ease-in-out infinite;
}

/* ============================================================
   Persistent ambient keyframes (kept for contact icons)
============================================================ */
@keyframes emailFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-4px) rotate(-5deg);
  }

  50% {
    transform: translateY(0px) rotate(5deg);
  }

  75% {
    transform: translateY(4px) rotate(-3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes phoneShake {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-12deg);
  }

  60% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(-8deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/* ============================================================
   Responsive – Contact Info
============================================================ */
@media (max-width: 991px) {
  .contact-info__top {
    padding-top: 0px;
  }

  .contact-info__logo {
    display: none;
  }

  .contact-info__content {
    width: 100%;
    height: auto;
    position: static;
    margin-bottom: 40px;
    padding: 40px 40px 52px;
    border-radius: 20px;
  }

  .contact-info__content::after {
    display: none;
  }

  .contact-info__wrapper {
    margin-top: 0px;
  }

  .contact-info__item--1 {
    padding-right: 0px;
  }

  .contact-info__item--2 {
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .contact-info__title {
    font-size: 45px;
  }

  .contact-info__item__link {
    font-size: 25px;
  }

  .contact-info__item--1 {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .contact-info__content {
    padding: 36px 30px 42px;
  }

  .contact-info__title {
    font-size: 40px;
  }
}

@media (max-width: 440px) {
  .contact-info__title {
    font-size: 35px;
  }

  .contact-info__item__link {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .contact-info__wrapper__bg {
    display: none;
  }

  .contact-info__content::after {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
  }
}

/* ============================================================
   Google Map (round)
============================================================ */
.google-map__contact-info {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: #f1f3f5;
}

.google-map__contact-info iframe {
  width: inherit;
  height: inherit;
  border-radius: inherit;
  display: block;
  border: none;
  mix-blend-mode: luminosity;
}

@media (max-width: 991px) {
  .google-map__contact-info {
    width: 100%;
    height: 400px;
    border-radius: 20px 20px 0px 0px;
  }
}

/* ============================================================
   Slider Content
============================================================ */
.slider-content-left>* {
  margin-left: 35px !important;
}

/* ============================================================
   About / Banner Hero Section
============================================================ */
.banner-area.auto-height .content h2,
.banner-area.auto-height .content h4,
.banner-area.auto-height .content p,
.banner-area.auto-height .content .button,
.banner-area.auto-height .content .thumb {
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 0px;
}

.banner-area.auto-height .content {
  padding: 80px 0 120px;
  text-align: center;
  overflow: hidden;
}

.banner-area.auto-height .content .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.banner-area.auto-height .content .sub-title::before,
.banner-area.auto-height .content .sub-title::after {
  display: none;
}

.banner-area.auto-height .content h2 {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-heading);
  margin-bottom: 25px;
}

.banner-area.auto-height .content p {
  font-size: 17px;
  color: var(--color-paragraph);
  max-width: 680px;
  margin: 0 auto 35px;
  padding-right: 0;
}

.banner-area.auto-height .content .button {
  margin-top: 10px;
}

/* ============================================================
   Floating food images (ambient – CSS only, no JS needed)
============================================================ */
.about-image {
  animation: moveRight 4s ease-in-out infinite;
}

@keyframes moveRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(25px);
  }
}

.top-right-img {
  position: absolute;
  top: 1%;
  left: -13%;
  animation: floatUp 4s ease-in-out infinite;
}

.top-left-img {
  position: absolute;
  top: -2%;
  right: -13%;
  animation: floatDown 4s ease-in-out infinite;
}

/* ============================================================
   Banner shape helpers
============================================================ */
.banner-food-thumb {
  position: absolute;
  left: 2%;
  bottom: 10%;
  z-index: 3;
  pointer-events: none;
}

.banner-food-thumb img {
  width: 230px;
}

.banner-shape-right {
  position: absolute;
  right: 2%;
  bottom: 2%;
  z-index: 2;
  pointer-events: none;
}

.banner-shape-right img {
  max-width: 300px;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .banner-area.auto-height .content h2 {
    font-size: 40px;
  }

  .banner-food-thumb {
    display: none;
  }

  .banner-shape-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner-area.auto-height .content {
    padding: 100px 0 80px;
  }

  .banner-area.auto-height .content h2 {
    font-size: 30px;
  }

  .banner-area.auto-height .content p {
    font-size: 15px;
  }
}

/* ============================================================
   Feature Style Two product items
============================================================ */
.feature-product-item a {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ============================================================
   Gallery hover
============================================================ */
.gallery-style-one {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-style-one:hover {
  transform: scale(1.02);
}

/* ============================================================
   Footer social bounce
============================================================ */
ul.footer-social li a {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease;
}

ul.footer-social li a:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ============================================================
   Nav link underline
============================================================ */
.nav.navbar-nav>li>a {
  position: relative;
}

.nav.navbar-nav>li:hover>a::after,
.nav.navbar-nav>li.active>a::after {
  width: 100%;
}

/* ============================================================
   Button shimmer hover
============================================================ */
.btn.btn-theme,
button {
  position: relative;
  overflow: hidden;
}

.btn.btn-theme::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  z-index: 2;
  pointer-events: none;
}

.btn.btn-theme:hover::before {
  left: 125%;
}

/* ============================================================
   Preloader fade-out
============================================================ */
#preloader {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ============================================================
   Misc
============================================================ */
.food-menu-area::before {
  color: bisque;
}

.food-main::before {
  background-color: black;
}

/* ============================================================
   Discount section — countdown pill
============================================================ */
.counter-class .item-list h5 span {
  display: block;
}

.product-shape-1 {
  position: absolute;
  top: 36%;
  left: 36%;
  width: 200px;
  height: 200px;
  overflow: visible;
  border-radius: 50%;
  opacity: 1;
  animation: shakeHorizontal 9s ease-in-out infinite;
}

.product-shape-2 {
  position: absolute;
  top: 41%;
  left: 4%;
  width: 200px;
  border-radius: 50%;
  opacity: 1;
  animation: shakeVertical 15s ease-in-out infinite;
}

.product-shape-3 {
  position: absolute;
  top: 52%;
  left: 52%;
  width: 200px;
  height: 200px;
  overflow: visible;
  border-radius: 50%;
  opacity: 1;
  animation: shakeRotate 10s ease-in-out infinite;
  transform-origin: center;
}

.product-shape-4 {
  position: absolute;
  top: 49%;
  right: 1%;
  width: 200px;
  height: 200px;
  overflow: visible;
  border-radius: 50%;
  opacity: 1;
  animation: shakeEarthquake 12s ease-in-out infinite;
}

/* 4 Different Shake Animations */
@keyframes shakeHorizontal {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-6px);
  }

  80% {
    transform: translateX(6px);
  }
}

@keyframes shakeVertical {

  0%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-8px);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(-6px);
  }

  80% {
    transform: translateY(6px);
  }
}

@keyframes shakeRotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  40% {
    transform: rotate(8deg);
  }

  60% {
    transform: rotate(-5deg);
  }

  80% {
    transform: rotate(5deg);
  }
}

@keyframes shakeEarthquake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  20% {
    transform: translate(-6px, 4px) rotate(-3deg);
  }

  40% {
    transform: translate(6px, -4px) rotate(3deg);
  }

  60% {
    transform: translate(-4px, -5px) rotate(-2deg);
  }

  80% {
    transform: translate(5px, 3px) rotate(2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.shake-horizontal {
  animation: shakeHorizontal 0.5s ease-in-out;
}

.shake-vertical {
  animation: shakeVertical 0.5s ease-in-out;
}

.shake-rotate {
  animation: shakeRotate 0.5s ease-in-out;
}

.shake-earthquake {
  animation: shakeEarthquake 0.5s ease-in-out;
}

/* ============================================================
   Side Sticky Social Icons (Banner)
============================================================ */
.social_icon_side {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 10;
}

.social_icon_side ul li a i {
  display: inline-block;
  transform: rotate(90deg);
  font-size: 18px;
  color: #ffffff;
  z-index: 1;
}

.social_icon_side ul li a:hover i {
  color: var(--primary-red, #e8192c);
}

.banner_section,
.banner_section.second_banner {
  position: relative;
  overflow: visible;
}

/* ============================================================
   FOOTER ALIGNMENT FIX
============================================================ */
footer.footer-style-one {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

@media screen and (max-width: 700px) {
  footer.footer-style-one {
    text-align: start;
  }
}

footer.footer-style-one .container {
  position: relative;
  z-index: 2;
}

footer.footer-style-one .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer.footer-style-one .footer-item {
  padding-left: 15px;
  padding-right: 15px;
}

footer.footer-style-one .footer-item.pl-80,
footer.footer-style-one .footer-item.pl-70 {
  padding-left: 15px !important;
}

footer.footer-style-one .f-item.about img {
  max-width: 250px !important;
  max-height: 90px !important;
  margin-bottom: 18px;
}

footer.footer-style-one .f-item.about p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

footer.footer-style-one .opening-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.footer-style-one .opening-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: #ffffff;
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer.footer-style-one .opening-list li:first-child {
  border-top: none;
}

footer.footer-style-one .widget-title {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

footer.footer-style-one .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-red, #e8192c);
}

footer.footer-style-one .f-item.link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.footer-style-one .f-item.link ul li {
  margin-bottom: 12px;
}

footer.footer-style-one .f-item.link ul li a {
  color: #cfcfcf;
  font-size: 16px;
  transition: color 0.25s, padding-left 0.25s;
}

footer.footer-style-one .f-item.link ul li a:hover {
  color: var(--primary-red, #e8192c);
  padding-left: 5px;
}

footer.footer-style-one .contact-widget {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

footer.footer-style-one .contact-widget li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

footer.footer-style-one .contact-widget .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 16px;
}

footer.footer-style-one .contact-widget .content {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
}

footer.footer-style-one .contact-widget .content a {
  color: #cfcfcf;
}

footer.footer-style-one .contact-widget .content a:hover {
  color: var(--primary-red, #e8192c);
}

footer.footer-style-one .footer-socila-items h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
}

footer.footer-style-one .footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.footer-style-one .footer-social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 15px;
}

footer.footer-style-one .footer-social li a:hover {
  background: var(--primary-red, #e8192c);
  color: #ffffff;
}

footer.footer-style-one .footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer.footer-style-one .footer-bottom .row {
  align-items: center;
}

footer.footer-style-one .footer-bottom p {
  margin: 0;
  font-size: 16px;
  color: #cfcfcf;
}

footer.footer-style-one .footer-bottom .col-lg-6:last-child {
  text-align: right;
}

footer.footer-style-one .footer-bottom a {
  color: var(--primary-red, #e8192c);
}

@media (max-width: 991px) {
  footer.footer-style-one .footer-item {
    margin-bottom: 30px;
  }

  footer.footer-style-one .footer-bottom .col-lg-6,
  footer.footer-style-one .footer-bottom .col-lg-6:last-child {
    text-align: center;
    margin-bottom: 10px;
  }
}