
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Libre Baskerville",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: rgba(16, 23, 25, 0);
  /* Background color for the entire website, including individual sections */
  --default-color: #f1f3f5;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #f4f7fa;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #F2D66B;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #252a2b;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #0b0c10;
  /* Contrast color for text on accent backgrounds */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f1f3f5;
  /* The default color of the main navmenu links */
  --nav-hover-color: #F2D66B;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #111315;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1a1d1f;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f1f3f5;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #F2D66B;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the same color scheme. */

.light-background {
  --background-color: #1a1d1f;
  --surface-color: #252a2b;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

body::before {
  background: linear-gradient(color-mix(in srgb, #000000, transparent 30%), color-mix(in srgb, #000000, transparent 30%)), url("../img/bg/yek-car-hero.webp") no-repeat center center/cover;
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo i {
  font-size: 24px;
  margin-right: 5px;
  color: var(--accent-color);
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .hero-container {
  position: relative;
  padding: 0;
  z-index: 3;
}

.hero .hero-container .content-col {
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-container .content-col {
    padding: 2.5rem 1.5rem;
  }
}

.hero .hero-container .content-col .content-wrapper {
  max-width: 570px;
}

.hero .hero-container .content-col .status-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero .hero-container .content-col h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .hero .hero-container .content-col h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-container .content-col h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-container .content-col h2 {
    font-size: 2.2rem;
  }
}

.hero .hero-container .content-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero .hero-container .content-col p {
    font-size: 1rem;
  }
}

.hero .hero-container .content-col .opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.hero .hero-container .content-col .opening-hours i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.hero .hero-container .content-col .opening-hours span {
  font-size: 0.95rem;
}

.hero .hero-container .content-col .btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero .hero-container .content-col .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}

.hero .hero-container .content-col .btn-group .btn {
  padding: 1rem 2rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-container .content-col .btn-group .btn.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: transparent;
}

.hero .hero-container .content-col .btn-group .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-container .content-col .btn-group .btn.btn-menu {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.hero .hero-container .content-col .btn-group .btn.btn-menu:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-container .content-col .social-links {
  display: flex;
  gap: 1rem;
}

.hero .hero-container .content-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.hero .hero-container .content-col .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero .hero-container .content-col .social-links a i {
  font-size: 1.2rem;
}

.hero .hero-container .hero-swiper {
  position: relative;
}

.hero .hero-container .hero-swiper .swiper-slide {
  position: relative;
}

.hero .hero-container .hero-swiper .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 90px);
}

.hero .hero-container .hero-swiper .swiper-slide .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.hero .hero-container .hero-swiper .swiper-button-next,
.hero .hero-container .hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #000, transparent 70%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.hero .hero-container .hero-swiper .swiper-button-next:after,
.hero .hero-container .hero-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero .hero-container .hero-swiper .swiper-button-next:hover,
.hero .hero-container .hero-swiper .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-container .hero-swiper .swiper-button-next {
  right: 20px;
}

.hero .hero-container .hero-swiper .swiper-button-prev {
  left: 20px;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col {
    order: 2;
  }

  .hero .hero-container .swiper-col {
    order: 1;
  }

  .hero .hero-container .hero-swiper .swiper-slide .img-container {
    height: calc(70vh - 80px);
  }

  .hero .hero-container .hero-swiper .swiper-button-next,
  .hero .hero-container .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero .hero-container .hero-swiper .swiper-button-next:after,
  .hero .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 120px;
  padding-bottom: 60px;
}

.about .about-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.about .about-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.about .about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about .about-content p.fst-italic {
  font-size: 18px;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
}

.about .about-content .chef-signature {
  padding: 20px;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 8px;
}

.about .about-content .chef-signature .chef-avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.about .about-content .chef-signature .chef-message {
  font-style: italic;
  font-size: 15px;
  color: var(--heading-color);
}

.about .about-content .chef-signature .signature-img {
  max-height: 50px;
  margin-bottom: 5px;
}

.about .about-content .chef-signature .chef-name {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
}

.about .about-image-wrapper {
  position: relative;
}

.about .about-image-wrapper .main-image {
  border-radius: 10px;
  position: relative;
  z-index: 1;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.about .about-image-wrapper .accent-image {
  position: absolute;
  width: 60%;
  bottom: -15%;
  right: -15%;
  z-index: 2;
  border-radius: 10px;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .about .about-image-wrapper .accent-image {
    display: block;
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    margin-top: 16px;
  }
}

.about .about-image-wrapper .establishment-year {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1.1;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .about .about-image-wrapper .establishment-year {
    width: 70px;
    height: 70px;
    font-size: 16px;
    top: -10px;
    left: -10px;
  }
}

.about .features-section {
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.about .features-section .feature-box {
  text-align: center;
  padding: 20px 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.about .features-section .feature-box:hover {
  transform: translateY(-10px);
}

.about .features-section .feature-box:hover .feature-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-section .feature-box .feature-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 15%);
  color: var(--accent-color);
  font-size: 28px;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .features-section .feature-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.about .features-section .feature-box p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.about .stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
  background-color: color-mix(in srgb, var(--background-color), var(--heading-color) 3%);
  padding: 30px 20px;
  border-radius: 10px;
}

.about .stats-container .stat-item {
  text-align: center;
  padding: 15px;
}

@media (max-width: 768px) {
  .about .stats-container .stat-item {
    width: 50%;
    margin-bottom: 15px;
  }
}

.about .stats-container .stat-item .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  font-family: var(--heading-font);
  line-height: 1;
}

.about .stats-container .stat-item .stat-label {
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--heading-color);
}

/* menucss */



/*--------------------------------------------------------------
# Featured Dishes Section
--------------------------------------------------------------*/
.featured-dishes {
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Header */
.featured-dishes .fom-head {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}

.featured-dishes .fom-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(219, 4, 202, 0.6);
  font-weight: 400;
  margin-bottom: 12px;
}

.featured-dishes .fom-title {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 16px;
  animation: fomTitlePulse 4s ease-in-out infinite;
}

@keyframes fomTitlePulse {

  0%,
  100% {
    text-shadow: 0 0 30px rgba(219, 4, 202, 0.3), 0 0 60px rgba(219, 4, 202, 0.1);
  }

  50% {
    text-shadow: 0 0 55px rgba(219, 4, 202, 0.6), 0 0 100px rgba(219, 4, 202, 0.25);
  }
}

.featured-dishes .fom-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.featured-dishes .fom-rl {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
}

.featured-dishes .fom-rr {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.featured-dishes .fom-rd {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  transform: rotate(45deg);
  flex-shrink: 0;
  animation: fomDiamondPulse 2s ease-in-out infinite;
}

@keyframes fomDiamondPulse {

  0%,
  100% {
    box-shadow: 0 0 6px rgba(219, 4, 202, 0.7);
  }

  50% {
    box-shadow: 0 0 18px rgba(219, 4, 202, 1), 0 0 32px rgba(219, 4, 202, 0.5);
  }
}

/* Grid */
.featured-dishes .fom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 880px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 620px) {
  .featured-dishes .fom-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Row item */
.featured-dishes .fom-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  animation: fomSlideIn 0.6s ease forwards;
  transition: border-color 0.3s;
}

.featured-dishes .fom-item:hover {
  border-bottom-color: rgba(219, 4, 202, 0.3);
}

.featured-dishes .fom-item:nth-child(1) {
  animation-delay: .08s;
}

.featured-dishes .fom-item:nth-child(2) {
  animation-delay: .16s;
}

.featured-dishes .fom-item:nth-child(3) {
  animation-delay: .24s;
}

.featured-dishes .fom-item:nth-child(4) {
  animation-delay: .32s;
}

.featured-dishes .fom-item:nth-child(5) {
  animation-delay: .40s;
}

.featured-dishes .fom-item:nth-child(6) {
  animation-delay: .48s;
}

.featured-dishes .fom-item:nth-child(7) {
  animation-delay: .56s;
}

.featured-dishes .fom-item:nth-child(8) {
  animation-delay: .64s;
}

@keyframes fomSlideIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image wrap */
.featured-dishes .fom-img-wrap {
  flex-shrink: 0;
  position: relative;
  width: 68px;
  height: 68px;
}

/* Breathing halo */
.featured-dishes .fom-glow-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 4, 202, 0.15) 0%, transparent 65%);
  animation: fomHaloBreath 2.8s ease-in-out infinite;
}

.featured-dishes .fom-item:nth-child(2) .fom-glow-halo {
  animation-delay: .4s;
}

.featured-dishes .fom-item:nth-child(3) .fom-glow-halo {
  animation-delay: .8s;
}

.featured-dishes .fom-item:nth-child(4) .fom-glow-halo {
  animation-delay: 1.2s;
}

.featured-dishes .fom-item:nth-child(5) .fom-glow-halo {
  animation-delay: 1.6s;
}

.featured-dishes .fom-item:nth-child(6) .fom-glow-halo {
  animation-delay: 2.0s;
}

.featured-dishes .fom-item:nth-child(7) .fom-glow-halo {
  animation-delay: 2.4s;
}

.featured-dishes .fom-item:nth-child(8) .fom-glow-halo {
  animation-delay: 2.8s;
}

@keyframes fomHaloBreath {

  0%,
  100% {
    opacity: .25;
    transform: scale(1);
  }

  50% {
    opacity: .55;
    transform: scale(1.1);
  }
}

/* Spinning ring — ince */
.featured-dishes .fom-spin-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(transparent 0deg,
      transparent 80deg,
      rgba(219, 4, 202, 0.55) 120deg,
      rgba(219, 4, 202, 0.08) 160deg,
      transparent 200deg,
      transparent 280deg,
      rgba(219, 4, 202, 0.4) 320deg,
      transparent 360deg);
  animation: fomSpinRing 3s linear infinite;
}

.featured-dishes .fom-item:nth-child(2) .fom-spin-ring {
  animation-duration: 3.5s;
}

.featured-dishes .fom-item:nth-child(3) .fom-spin-ring {
  animation-duration: 2.8s;
}

.featured-dishes .fom-item:nth-child(4) .fom-spin-ring {
  animation-duration: 4.0s;
}

.featured-dishes .fom-item:nth-child(5) .fom-spin-ring {
  animation-duration: 3.2s;
}

.featured-dishes .fom-item:nth-child(6) .fom-spin-ring {
  animation-duration: 2.6s;
}

.featured-dishes .fom-item:nth-child(7) .fom-spin-ring {
  animation-duration: 3.8s;
}

.featured-dishes .fom-item:nth-child(8) .fom-spin-ring {
  animation-duration: 3.1s;
}

@keyframes fomSpinRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Mask — sitenin arka plan rengiyle eşleşir */
.featured-dishes .fom-spin-mask {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--background-color);
  z-index: 1;
}

/* Image circle */
.featured-dishes .fom-img-inner {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-color);
  z-index: 2;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease;
}

.featured-dishes .fom-item:hover .fom-img-inner {
  transform: scale(1.06);
}

.featured-dishes .fom-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Name */
.featured-dishes .fom-name {
  font-family: var(--heading-font);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: 0.3px;
  transition: color 0.3s, text-shadow 0.3s;
}

.featured-dishes .fom-item:hover .fom-name {
  color: var(--accent-color);
  text-shadow: 0 0 16px rgba(219, 4, 202, 0.4);
}

/* CTA */
.featured-dishes .fom-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.featured-dishes .fom-hours {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fomTitlePulse 4s ease-in-out infinite;
}

.featured-dishes .fom-hl {
  flex: 1;
  max-width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 4, 202, 0.5));
}

.featured-dishes .fom-hr {
  flex: 1;
  max-width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(219, 4, 202, 0.5), transparent);
}

.featured-dishes .fom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 42px;
  background: transparent;
  border: 1px solid rgba(219, 4, 202, 0.45);
  color: var(--heading-color);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fomBtnGlow 3s ease-in-out infinite;
}

@keyframes fomBtnGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(219, 4, 202, 0.12);
  }

  50% {
    box-shadow: 0 0 20px rgba(219, 4, 202, 0.3), 0 0 38px rgba(219, 4, 202, 0.1);
  }
}

.featured-dishes .fom-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(219, 4, 202, 0.1), transparent);
  animation: fomBtnShine 3s ease-in-out infinite;
}

@keyframes fomBtnShine {
  0% {
    left: -100%;
  }

  60%,
  100% {
    left: 150%;
  }
}

.featured-dishes .fom-btn:hover {
  border-color: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

.featured-dishes .fom-btn-arrow {
  transition: transform 0.3s;
}

.featured-dishes .fom-btn:hover .fom-btn-arrow {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-highlight {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chefs .chef-highlight .chef-image {
  overflow: hidden;
  margin-bottom: 0;
}

.chefs .chef-highlight .chef-image img {
  transition: transform 0.6s;
  width: 100%;
  object-fit: cover;
}

.chefs .chef-highlight .chef-image:hover img {
  transform: scale(1.05);
}

.chefs .chef-highlight .chef-details {
  padding: 2.5rem;
}

.chefs .chef-highlight .chef-details h3 {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.chefs .chef-highlight .chef-details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.chefs .chef-highlight .chef-details .chef-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.chefs .chef-highlight .chef-details .chef-awards span {
  font-size: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: inline-flex;
  align-items: center;
}

.chefs .chef-highlight .chef-details .chef-awards span i {
  margin-right: 0.4rem;
  color: var(--accent-color);
}

.chefs .chef-highlight .chef-details p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.chefs .chef-highlight .chef-details .chef-signature {
  display: block;
  max-width: 180px;
  margin-top: 1.5rem;
}

.chefs .chef-highlight .chef-details .chef-signature img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .chefs .chef-highlight {
    margin-bottom: 2.5rem;
  }
}

.chefs .team-container {
  padding-left: 1rem;
}

@media (max-width: 991px) {
  .chefs .team-container {
    padding-left: 0;
  }
}

.chefs .chef-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.chefs .chef-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.chefs .chef-card:hover .social-links {
  opacity: 1;
  visibility: visible;
}

.chefs .chef-card .chef-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-card .chef-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.chefs .chef-card .chef-img .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.chefs .chef-card .chef-img .social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.chefs .chef-card .chef-img .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.chefs .chef-card .chef-info {
  padding: 1.5rem;
}

.chefs .chef-card .chef-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.chefs .chef-card .chef-info .role {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.chefs .chef-card .chef-info .details {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table {
  position: relative;
}

.book-a-table h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.book-a-table h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.book-a-table .reservation-info {
  height: 100%;
}

.book-a-table .reservation-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.book-a-table .reservation-info .reservation-details .detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.book-a-table .reservation-info .reservation-details .detail-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.book-a-table .reservation-info .reservation-details .detail-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.book-a-table .reservation-info .reservation-details .detail-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.book-a-table .reservation-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.book-a-table .reservation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.book-a-table .reservation-image img:hover {
  transform: scale(1.03);
}

.book-a-table .reservation-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.book-a-table .reservation-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.book-a-table .reservation-form-wrapper .form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.book-a-table .reservation-form-wrapper .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.book-a-table .reservation-form-wrapper input,
.book-a-table .reservation-form-wrapper select,
.book-a-table .reservation-form-wrapper textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 5px;
}

.book-a-table .reservation-form-wrapper input:focus,
.book-a-table .reservation-form-wrapper select:focus,
.book-a-table .reservation-form-wrapper textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.book-a-table .reservation-form-wrapper input::placeholder,
.book-a-table .reservation-form-wrapper select::placeholder,
.book-a-table .reservation-form-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.book-a-table .reservation-form-wrapper .btn-book-table {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 12px 36px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: 0.3s;
}

.book-a-table .reservation-form-wrapper .btn-book-table:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .book-a-table .reservation-info {
    margin-bottom: 2rem;
  }

  .book-a-table .reservation-image {
    margin-bottom: 2rem;
  }

  .book-a-table .reservation-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .book-a-table h3 {
    font-size: 1.6rem;
  }

  .book-a-table h4 {
    font-size: 1.3rem;
  }

  .book-a-table .reservation-form-wrapper {
    padding: 1.5rem;
  }

  .book-a-table .reservation-form-wrapper .form-header h3 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .row {
  align-items: stretch;
}

.location .map-container {
  height: 100%;
  min-height: 450px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.location .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location .info-container {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.location .info-container .section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.location .info-container .section-header h2 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 2.2rem;
}

.location .info-container .section-header p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.location .info-card {
  display: flex;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location .info-card:last-of-type {
  border-bottom: none;
}

.location .info-card .info-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location .info-card .info-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.location .info-card .info-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.location .info-card .info-content p {
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.location .info-card .info-content p.small-text {
  font-size: 0.85rem;
  font-style: italic;
}

.location .info-card .info-content .hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}

.location .info-card .info-content .hours-grid .day {
  font-weight: 500;
}

.location .info-card .info-content .hours-grid .time {
  text-align: right;
}

.location .cta-wrapper {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.location .cta-wrapper a {
  flex: 1;
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location .cta-wrapper a.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.location .cta-wrapper a.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.location .cta-wrapper a.btn-contact {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.location .cta-wrapper a.btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .location .info-container {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .location .cta-wrapper {
    flex-direction: column;
  }

  .location .hours-grid {
    grid-template-columns: 1fr !important;
  }

  .location .hours-grid .time {
    text-align: left !important;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Eventscss Section
--------------------------------------------------------------*/



/* ═══════════════════════════════════════════════════
   YEK CAR — Hizmetlerimiz CSS
   Font: Bebas Neue + Outfit
═══════════════════════════════════════════════════ */



/* ═══════════════════════════════════════════════════
   YEK CAR — Hizmetlerimiz CSS
   Font: Bebas Neue + Outfit
═══════════════════════════════════════════════════ */

/* ─── SECTION ─── */
.yk-section {
  font-family: 'Outfit', sans-serif;
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 7rem;
}

.yk-container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── BAŞLIK ─── */
.yk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EAC94A;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: yk-fade-up 0.7s 0.1s forwards;
}

.yk-eyebrow-line {
  width: 32px;
  height: 1px;
  background: #EAC94A;
  opacity: 0.6;
}

.yk-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.93;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: yk-fade-up 0.7s 0.2s forwards;
}

.yk-heading em {
  font-style: normal;
  -webkit-text-stroke: 1.5px #EAC94A;
  color: transparent;
}

.yk-lead {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 4rem;
  opacity: 0;
  animation: yk-fade-up 0.7s 0.3s forwards;
}

@keyframes yk-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── 3'LÜ KARTLAR ─── */
.yk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 860px) {
  .yk-cards {
    grid-template-columns: 1fr;
  }
}

/* ─── GLASS KART TABAN ─── */
.yk-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.yk-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 201, 74, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.yk-service-card {
  padding: 2.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: yk-fade-up 0.7s forwards;
}

.yk-service-card:nth-child(1) {
  animation-delay: 0.35s;
}

.yk-service-card:nth-child(2) {
  animation-delay: 0.48s;
}

.yk-service-card:nth-child(3) {
  animation-delay: 0.61s;
}

.yk-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(234, 201, 74, 0.1);
  border: 1px solid rgba(234, 201, 74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.yk-glass:hover .yk-icon-wrap {
  background: rgba(234, 201, 74, 0.18);
}

.yk-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.yk-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(234, 201, 74, 0.3);
  color: #EAC94A;
  background: rgba(234, 201, 74, 0.07);
  margin-bottom: 1.2rem;
}

.yk-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.yk-card-body {
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
  margin-bottom: 1.6rem;
}

.yk-card-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
  transition: color 0.2s;
}

.yk-card-cta:hover {
  color: #EAC94A;
}

.yk-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.yk-card-cta:hover svg {
  transform: translateX(4px);
}

/* ─── GENİŞ ROW ─── */
.yk-wide-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 860px) {
  .yk-wide-row {
    grid-template-columns: 1fr;
  }
}

/* ─── DENEYİM KARTI ─── */
.yk-featured {
  padding: 2.5rem 2.4rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: yk-fade-up 0.7s 0.74s forwards;
}

.yk-featured-accent {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 201, 74, 0.13), transparent 70%);
  pointer-events: none;
}

.yk-featured-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(234, 201, 74, 0.13);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.yk-featured-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.yk-featured-body {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.8rem;
  max-width: 420px;
}

.yk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yk-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

/* ─── HARİTA KARTI ─── */
.yk-coverage {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  animation: yk-fade-up 0.7s 0.87s forwards;
}

.yk-coverage-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #EAC94A;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.yk-coverage-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.yk-coverage-body {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.yk-map-placeholder {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  min-height: 150px;
  background: rgba(234, 201, 74, 0.04);
  border: 1px dashed rgba(234, 201, 74, 0.2);
  flex: 1;
}

.yk-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.yk-map-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2rem 1rem;
  text-align: center;
  min-height: 150px;
}

.yk-map-fallback span {
  font-size: 12px;
  color: rgba(234, 201, 74, 0.4);
}

.yk-map-fallback code {
  font-size: 11px;
  color: rgba(234, 201, 74, 0.3);
  background: rgba(234, 201, 74, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
}

.yk-coverage-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  transition: color 0.2s;
}

.yk-coverage-link:hover {
  color: #EAC94A;
}

.yk-coverage-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.yk-coverage-link:hover svg {
  transform: translateX(4px);
}

/* ─── İSTATİSTİK ŞERİDİ — MİNİMAL ─── */
.yk-stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
  opacity: 0;
  animation: yk-fade-up 0.7s 1s forwards;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.yk-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s;
}

.yk-stat-item:last-child {
  border-right: none;
}

.yk-stat-item:hover {
  background: rgba(234, 201, 74, 0.05);
}

.yk-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #EAC94A;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
}

.yk-stat-sup {
  font-size: 1.3rem;
  color: #EAC94A;
  vertical-align: super;
}

.yk-stat-big {
  color: #EAC94A;
}

.yk-stat-lbl {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .yk-stat-item {
    padding: 1rem 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .yk-stat-val {
    font-size: 1.7rem;
  }
}

/* ─── İLETİŞİM CTA ─── */
.yk-contact-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  min-height: 220px;
  margin-bottom: 18px;
  opacity: 0;
  animation: yk-fade-up 0.7s 1.1s forwards;
  position: relative;
}

.yk-contact-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 201, 74, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.yk-contact-img-wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.yk-contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yk-contact-img-wrap:hover .yk-contact-img {
  transform: scale(1.05);
}

.yk-contact-left {
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.yk-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EAC94A;
  background: rgba(234, 201, 74, 0.1);
  border: 1px solid rgba(234, 201, 74, 0.25);
  padding: 5px 14px;
  border-radius: 30px;
  width: fit-content;
}

.yk-contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}

.yk-contact-heading em {
  font-style: normal;
  color: #EAC94A;
}

.yk-contact-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 420px;
  margin: 0;
}

.yk-contact-right {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.yk-cbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.yk-cbtn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.yk-cbtn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.yk-cbtn-primary {
  background: #EAC94A;
  color: #1a0f00;
}

.yk-cbtn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 860px) {
  .yk-contact-cta {
    grid-template-columns: 1fr;
  }

  .yk-contact-img-wrap {
    height: 280px;
  }

  .yk-contact-left {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.8rem;
  }

  .yk-contact-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1.2rem 1.8rem 1.8rem;
  }
}

/* ─── ARAÇ PORTFÖYÜ ŞERİDİ ─── */
.yk-cta-strip {
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  min-height: 160px;
  opacity: 0;
  animation: yk-fade-up 0.7s 1.2s forwards;
}

.yk-cta-strip::before {
  display: none;
}

.yk-cta-strip-img {
  overflow: hidden;
}

.yk-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  border-radius: 0;
  border: none;
  transition: transform 0.4s ease;
}

.yk-cta-strip-img:hover .yk-cta-img {
  transform: scale(1.05);
}

.yk-cta-strip-body {
  padding: 1.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.yk-cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.05em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}

.yk-cta-heading em {
  font-style: normal;
  color: #EAC94A;
}

.yk-cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.yk-cta-strip-btns {
  padding: 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.yk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.yk-btn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.yk-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.yk-btn-dark {
  background: #EAC94A;
  color: #1a0f00;
}

.yk-btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 860px) {
  .yk-cta-strip {
    grid-template-columns: 1fr;
  }

  .yk-cta-strip-img {
    height: 240px;
  }

  .yk-cta-strip-body {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 1.8rem;
  }

  .yk-cta-strip-btns {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1.2rem 1.8rem 1.8rem;
  }
}







/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


