/**
* Template Name: Restaurantly
* Template URL: https://bootstrapmade.com/restaurantly-restaurant-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Playfair Display",  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: #163506; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.7); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #d6ae28; /* 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: #29261f; /* 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: #0c0b09; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #cda45e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29261f; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29261f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cda45e; /* 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 sam color scheme. */

.light-background {
  --background-color: #29261f;
  --surface-color: #464135;
}

.dark-background {
  --background-color: #000000;
  --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);
  font-family: var(--default-font);
}

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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.farmer-topbar {
  background-color: #228B22; /* Forest green for nature */
  padding: 10px;
}

/* Text colors */
.text-orange {
  color: #FFA500; /* Orange text */
}

.text-yellow {
  color: #FFD700; /* Yellow text */
}

/* Styling for the icons to stay black */
.bi {
  color: black;
  font-size: 1.2rem;
}

/* Hover effect for links */
.contact-info a:hover {
  color: #FF4500; /* Darker orange when hovering */
  text-decoration: underline;
}
.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(12, 11, 9, 0.61);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--accent-color);
}

.header .topbar .languages ul a {
  color: var(--default-color);
}

.header .topbar .languages ul a:hover {
  color: var(--accent-color);
}

.header .topbar .languages ul li+li {
  padding-left: 10px;
}

.header .topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  content: "/";
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
  transition: 0.3s;
  border-bottom: 1px solid var(--background-color);
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 24px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.scrolled .header .branding {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #0c0b09;
}

/*--------------------------------------------------------------
# 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: 14px;
    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;
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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: rgb(5, 17, 1);
  background-color: black;
  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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.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 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: yellowgreen;
  color(srgb red green blue): 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 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--accent-color);
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.hero .cta-btn:first-child {
  margin-right: 10px;
}

.hero .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 480px) {
  .hero .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
.about {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: var(--background-color);
  }

  /* Section Title */
  .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 8px;
  }

  .section-title p {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 0;
  }

  .section-title .highlight-text {
    color: #b0d87a;
    position: relative;
  }
  .section-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #7cb84a;
    border-radius: 4px;
    opacity: 0.3;
  }

  .title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .divider-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, #7cb84a, transparent);
  }
  .divider-icon {
    font-size: 1.2rem;
    opacity: 0.6;
  }

  /* ----- Image ----- */
  .about-image-wrapper {
    position: relative;
  }
  .about-image-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }
  .about-image-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .about-image-main:hover img {
    transform: scale(1.03);
  }

  .image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(124, 184, 74, 0.92);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .image-badge .badge-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f2a0a;
    line-height: 1;
  }
  .image-badge .badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #0f2a0a;
    text-transform: uppercase;
  }

  .about-stats {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .stat-item {
    flex: 1;
    background: rgba(124, 184, 74, 0.06);
    border: 1px solid rgba(124, 184, 74, 0.1);
    padding: 0.6rem 0.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .stat-item:hover {
    background: rgba(124, 184, 74, 0.12);
    transform: translateY(-3px);
  }
  .stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #b0d87a;
  }
  .stat-label {
    font-size: 0.7rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* ----- Content ----- */
  .about-content {
    padding-left: 0;
  }
  .about-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1rem;
  }
  .about-heading .highlight-text {
    color: #b0d87a;
  }

  .about-lead {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .about-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .feature-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
  }
  .feature-item:hover {
    background: rgba(124, 184, 74, 0.05);
    border-left-color: #7cb84a;
  }
  .feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(124, 184, 74, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #b0d87a;
    transition: all 0.3s ease;
  }
  .feature-item:hover .feature-icon {
    background: #7cb84a;
    color: #0f2a0a;
  }
  .feature-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.1rem;
  }
  .feature-content p {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    line-height: 1.4;
  }

  .about-cta {
    background: rgba(124, 184, 74, 0.05);
    border: 1px solid rgba(124, 184, 74, 0.08);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .about-mission {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--default-color);
    margin: 0;
    flex: 1;
  }
  .about-mission i {
    color: #b0d87a;
    font-size: 1rem;
    margin-right: 0.3rem;
  }

  .btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.5rem;
    background: #7cb84a;
    color: #0f2a0a;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #7cb84a;
    white-space: nowrap;
  }
  .btn-about:hover {
    background: #6aa33d;
    border-color: #6aa33d;
    color: #0a1f06;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -10px rgba(124, 184, 74, 0.3);
  }

  /* ----- Responsive ----- */
  @media (max-width: 992px) {
    .about { padding: 50px 0; }
    .about-image-main img { height: 280px; }
    .about-heading { font-size: 1.7rem; }
    .section-title p { font-size: 1.8rem; }
    .about-stats { gap: 0.6rem; }
  }

  @media (max-width: 768px) {
    .about-image-main img { height: 240px; }
    .about-heading { font-size: 1.5rem; }
    .about-stats { flex-wrap: wrap; }
    .stat-item { min-width: 80px; flex: 1; }
    .about-cta { flex-direction: column; align-items: stretch; text-align: center; }
    .btn-about { justify-content: center; }
    .section-title p { font-size: 1.5rem; }
  }

  @media (max-width: 576px) {
    .about { padding: 40px 0; }
    .about-image-main img { height: 200px; }
    .section-title p { font-size: 1.3rem; }
    .about-heading { font-size: 1.3rem; }
    .image-badge { padding: 0.3rem 0.8rem; }
    .image-badge .badge-number { font-size: 1rem; }
    .image-badge .badge-text { font-size: 0.6rem; }
    .stat-number { font-size: 1rem; }
    .stat-label { font-size: 0.6rem; }
    .feature-item { padding: 0.4rem 0.6rem; }
    .feature-content h4 { font-size: 0.85rem; }
    .feature-content p { font-size: 0.75rem; }
    .about-cta { padding: 0.8rem; }
    .about-mission { font-size: 0.8rem; }
    .btn-about { font-size: 0.8rem; padding: 0.4rem 1.2rem; }
  }
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
}

.menu .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .menu-filters li {
  color: var(--default-color);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu .menu-filters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
  position: relative;
}

.menu .menu-img {
  width: 80px;
  border-radius: 50%;
  float: left;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .menu-content {
  margin-left: 95px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  color: var(--heading-color);
  background: var(--background-color);
  padding-right: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--accent-color);
}

.menu .menu-content span {
  background: var(--background-color);
  color: var(--accent-color);
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--heading-color);
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--accent-color);
}

.specials .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.specials .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Services Section - Modern Redesign with Images
--------------------------------------------------------------*/
.services-section {
  --default-color: #ffffff;
  --background-color: #0a1a05;
  --heading-color: #ffffff;
  --accent-color: #7cb84a;
  --accent-secondary: #b0d87a;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(124, 184, 74, 0.15);
  --glow-color: rgba(124, 184, 74, 0.15);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 184, 74, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 184, 74, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

/* Section Title */
.services-section .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.services-section .section-title p {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 0;
}

.services-section .section-title .highlight-text {
  color: #b0d87a;
  position: relative;
}

.services-section .section-title .highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #7cb84a;
  border-radius: 4px;
  opacity: 0.3;
}

.services-section .title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.services-section .divider-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, #7cb84a, transparent);
}

.services-section .divider-icon {
  font-size: 1.2rem;
  opacity: 0.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Service Card */
.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 184, 74, 0.3);
  box-shadow: 0 20px 60px -20px rgba(124, 184, 74, 0.2);
}

/* Service Image Wrapper */
.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(124, 184, 74, 0.05);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

/* Image Overlay with Tag */
.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(10, 26, 5, 0.1) 0%,
    rgba(10, 26, 5, 0.6) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.service-card:hover .service-image-overlay {
  opacity: 1;
}

.service-image-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: #7cb84a;
  color: #0a1a05;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.service-card:hover .service-image-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Service Card Content Area */
.service-card .service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1a05;
  border: 2px solid rgba(124, 184, 74, 0.2);
  border-radius: 16px;
  font-size: 1.8rem;
  color: #b0d87a;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.service-card:hover .service-icon {
  background: #7cb84a;
  color: #0a1a05;
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 30px -10px rgba(124, 184, 74, 0.4);
  border-color: #7cb84a;
}

.service-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

.service-content {
  padding: 1rem 1.5rem 1.8rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #b0d87a;
  background: rgba(124, 184, 74, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-description {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 0.3rem 0;
  transition: all 0.3s ease;
}

.service-features li i {
  color: #7cb84a;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li i {
  transform: scale(1.1);
}

.service-sub-info {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.service-sub-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #b0d87a;
  background: rgba(124, 184, 74, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(124, 184, 74, 0.1);
}

.service-sub-info span i {
  font-size: 0.7rem;
}

.service-badge {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.service-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  color: #0a1a05;
  background: #7cb84a;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #b0d87a;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.service-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7cb84a;
  transition: width 0.3s ease;
}

.service-btn:hover {
  color: #ffffff;
}

.service-btn:hover::after {
  width: 100%;
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(4px);
}

.service-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 184, 74, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.service-card:hover .service-glow {
  opacity: 1;
}

/* Services CTA */
.services-cta {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: rgba(124, 184, 74, 0.06);
  border: 1px solid rgba(124, 184, 74, 0.1);
  border-radius: 16px;
  text-align: center;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cta-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--default-color);
  margin: 0;
  font-family: var(--heading-font);
  font-style: italic;
}

.cta-text i {
  color: #b0d87a;
  margin-right: 0.5rem;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  background: #7cb84a;
  color: #0a1a05;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #7cb84a;
  white-space: nowrap;
}

.cta-primary-btn:hover {
  background: #6aa33d;
  border-color: #6aa33d;
  color: #0a1a05;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -10px rgba(124, 184, 74, 0.4);
}

/* Image Placeholder - Fallback if image not found */
.service-image-wrapper .service-image[src=""] + .service-image-overlay::before,
.service-image-wrapper .service-image:not([src]) + .service-image-overlay::before {
  content: '🌾';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.3;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-image-wrapper {
    height: 180px;
  }

  .service-card .service-icon-wrapper {
    padding: 0 1.2rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-content {
    padding: 0.8rem 1.2rem 1.5rem;
  }

  .services-section .section-title p {
    font-size: 1.6rem;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-primary-btn {
    white-space: normal;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .service-image-wrapper {
    height: 160px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .service-features li {
    font-size: 0.8rem;
  }

  .service-sub-info span {
    font-size: 0.7rem;
  }

  .services-cta {
    padding: 1.5rem;
  }

  .cta-text {
    font-size: 0.9rem;
  }

  .cta-primary-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
  }
}
/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table .php-email-form {
  padding: 30px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form input[type=text],
.book-a-table .php-email-form input[type=email],
.book-a-table .php-email-form input[type=number],
.book-a-table .php-email-form input[type=date],
.book-a-table .php-email-form input[type=time],
.book-a-table .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.book-a-table .php-email-form input[type=text]::placeholder,
.book-a-table .php-email-form input[type=email]::placeholder,
.book-a-table .php-email-form input[type=number]::placeholder,
.book-a-table .php-email-form input[type=date]::placeholder,
.book-a-table .php-email-form input[type=time]::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table .php-email-form button[type=submit] {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  background: transparent;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.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: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs {
  --default-color: #ffffff;
  --contrast-color: #ffffff;
}

.chefs .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: var(--accent-color);
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .php-email-form button[type=submit] {
  color: var(--default-color);
  background: none;
  border: 2px solid var(--accent-color);
  padding: 8px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

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

/* Footer Base */
.footer {
  background: linear-gradient(180deg, #0a1a05 0%, #0c0b09 100%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 0;
  position: relative;
  border-top: 1px solid rgba(214, 174, 40, 0.1);
}

/* Decorative top border */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d6ae28, #7cb84a, #d6ae28, transparent);
  background-size: 200% 100%;
  animation: shimmerFooter 3s ease-in-out infinite;
}

@keyframes shimmerFooter {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

/* Footer Top */
.footer .footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo */
.footer .logo .sitename {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.footer .logo .sitename .logo-accent {
  color: #d6ae28;
}

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

/* Footer Description */
.footer .footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 16px 0 20px;
  max-width: 400px;
}

/* Footer Contact Items */
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer .contact-item:hover {
  color: #ffffff;
}

.footer .contact-item i {
  color: #d6ae28;
  font-size: 18px;
  margin-top: 2px;
  min-width: 20px;
}

/* Social Links */
.footer .social-links {
  gap: 10px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .social-links a:hover {
  background: #d6ae28;
  border-color: #d6ae28;
  color: #0c0b09;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(214, 174, 40, 0.25);
}

/* Footer Links */
.footer .footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #d6ae28;
  border-radius: 2px;
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.footer .footer-links ul li:last-child {
  border-bottom: none;
}

.footer .footer-links ul li:hover {
  padding-left: 6px;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: #d6ae28;
}

.footer .footer-links ul a i {
  font-size: 12px;
  color: #d6ae28;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.footer .footer-links ul a:hover i {
  opacity: 1;
  transform: translateX(3px);
}

/* Newsletter */
.footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #d6ae28;
  border-radius: 2px;
}

.footer .newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Newsletter Form */
.footer .newsletter-wrapper {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.footer .newsletter-wrapper:focus-within {
  border-color: #d6ae28;
  box-shadow: 0 0 0 3px rgba(214, 174, 40, 0.1);
}

.footer .newsletter-wrapper input[type="email"] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.footer .newsletter-wrapper input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer .newsletter-wrapper button {
  padding: 12px 24px;
  background: #d6ae28;
  color: #0c0b09;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.footer .newsletter-wrapper button:hover {
  background: #c49a1e;
  transform: scale(1.02);
}

.footer .newsletter-wrapper button i {
  font-size: 16px;
}

/* Newsletter Guarantee */
.footer .newsletter-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer .newsletter-guarantee i {
  color: #7cb84a;
  font-size: 14px;
}

/* Newsletter Messages */
.footer .php-email-form .loading,
.footer .php-email-form .error-message,
.footer .php-email-form .sent-message {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  display: none;
}

.footer .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.footer .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin: 0 10px -3px 0;
  border: 2px solid #d6ae28;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer .php-email-form .error-message {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.footer .php-email-form .sent-message {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Footer Bottom */
.footer .footer-bottom {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer .copyright .sitename {
  color: #ffffff;
  font-weight: 600;
}

.footer .footer-credits {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer .footer-credits a {
  color: #d6ae28;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-credits a:hover {
  color: #ffffff;
}

.footer .footer-credits i {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Responsive */
@media (max-width: 992px) {
  .footer .footer-top {
    padding: 40px 0 20px;
  }
  
  .footer .footer-about {
    margin-bottom: 20px;
  }
  
  .footer .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer .footer-top {
    padding: 30px 0 10px;
  }
  
  .footer .footer-links h4 {
    margin-top: 10px;
  }
  
  .footer .newsletter-wrapper {
    flex-direction: column;
    border-radius: 12px;
  }
  
  .footer .newsletter-wrapper input[type="email"] {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer .newsletter-wrapper button {
    justify-content: center;
    padding: 14px;
    border-radius: 0 0 12px 12px;
  }
  
  .footer .footer-bottom {
    padding: 20px 0;
    text-align: center;
  }
  
  .footer .copyright {
    font-size: 13px;
  }
  
  .footer .footer-credits {
    font-size: 12px;
    margin-top: 6px;
  }
}

@media (max-width: 576px) {
  .footer .logo .sitename {
    font-size: 22px;
  }
  
  .footer .social-links a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  
  .footer .contact-item {
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Products Section - Enhanced Design
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Products Section - Enhanced Design
--------------------------------------------------------------*/

/* Products Section Base */
.products {
  background: var(--background-color);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(124, 184, 74, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Title */
.products .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.products .section-title p {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 4px;
}

.products .section-title .highlight-text {
  color: #b0d87a;
  position: relative;
}

.products .section-title .highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #7cb84a;
  border-radius: 4px;
  opacity: 0.3;
}

.products .title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.3rem;
}

.products .divider-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, #7cb84a, transparent);
}

.products .divider-icon {
  font-size: 1.4rem;
  opacity: 0.6;
}

.products .section-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Product Tabs - Left Side */
.products .product-tabs {
  border: 0;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 8px;
}

.products .product-tabs .nav-link {
  border: 0;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: transparent;
  border-left: 3px solid transparent;
}

.products .product-tabs .nav-link .tab-text {
  flex: 1;
  font-weight: 500;
}

.products .product-tabs .nav-link::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #7cb84a;
  font-size: 18px;
}

.products .product-tabs .nav-link:hover {
  color: var(--heading-color);
  background: rgba(124, 184, 74, 0.05);
}

.products .product-tabs .nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.products .product-tabs .nav-link.active {
  color: #ffffff;
  background: rgba(124, 184, 74, 0.12);
  border-left-color: #7cb84a;
  box-shadow: 0 4px 20px rgba(124, 184, 74, 0.08);
}

.products .product-tabs .nav-link.active::after {
  opacity: 1;
  transform: translateX(0);
  color: #b0d87a;
}

/* Product Content */
.products .product-content {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 30px;
  min-height: 420px;
  border: 1px solid rgba(124, 184, 74, 0.06);
}

/* Product Badge */
.products .product-badge {
  display: inline-block;
  padding: 4px 18px;
  background: linear-gradient(135deg, #7cb84a, #5d8f34);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Product Details */
.products .details h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
  line-height: 1.2;
}

.products .product-subtitle {
  font-size: 16px;
  color: #b0d87a;
  font-weight: 400;
  margin-bottom: 16px;
  font-style: italic;
}

.products .product-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Product Features */
.products .product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  margin-bottom: 24px;
}

.products .product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 4px 0;
}

.products .product-features .feature-item i {
  color: #7cb84a;
  font-size: 16px;
  flex-shrink: 0;
}

/* Product Image */
.products .product-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(124, 184, 74, 0.08);
}

.products .product-img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  max-height: 350px;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.95);
}

.products .product-image-wrapper:hover .product-img {
  transform: scale(1.03);
}

.products .product-image-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.products .product-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product CTA Button */
.products .product-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  background: linear-gradient(135deg, #7cb84a, #5d8f34);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 20px rgba(124, 184, 74, 0.3);
}

.products .product-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124, 184, 74, 0.4);
  color: #ffffff;
  background: linear-gradient(135deg, #6aa33d, #4d7a2a);
}

.products .product-cta-btn i {
  font-size: 18px;
}

/* Products Bottom CTA */
.products .products-cta-wrapper {
  margin-top: 40px;
}

.products .products-bottom-cta {
  background: linear-gradient(135deg, rgba(124, 184, 74, 0.08), rgba(124, 184, 74, 0.02));
  border: 1px solid rgba(124, 184, 74, 0.1);
  border-radius: 16px;
  padding: 24px 32px;
}

.products .products-bottom-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.products .products-bottom-cta .cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(124, 184, 74, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.products .products-bottom-cta .cta-icon i {
  font-size: 28px;
  color: #7cb84a;
}

.products .products-bottom-cta .cta-text {
  flex: 1;
}

.products .products-bottom-cta .cta-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.products .products-bottom-cta .cta-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 14px;
}

.products .cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #25D366;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 15px;
  flex-shrink: 0;
}

.products .cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  color: #ffffff;
  background: #1da851;
}

.products .cta-btn-primary i {
  font-size: 20px;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products .tab-pane.active {
  animation: slideUp 0.5s ease forwards;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .products .product-tabs .nav-link {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .products .product-features {
    grid-template-columns: 1fr;
  }
  
  .products .details h3 {
    font-size: 24px;
  }
  
  .products .product-content {
    padding: 24px;
    min-height: auto;
  }
  
  .products .product-img {
    max-height: 280px;
    min-height: 200px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .products .section-title p {
    font-size: 1.8rem;
  }
  
  .products .product-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 6px;
    gap: 4px;
    border-radius: 12px;
  }
  
  .products .product-tabs .nav-link {
    white-space: nowrap;
    padding: 12px 18px;
    font-size: 14px;
    gap: 8px;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 8px;
    min-width: auto;
  }
  
  .products .product-tabs .nav-link::after {
    display: none;
  }
  
  .products .product-tabs .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: #7cb84a;
  }
  
  .products .product-content {
    padding: 20px;
    min-height: auto;
  }
  
  .products .details h3 {
    font-size: 22px;
  }
  
  .products .product-subtitle {
    font-size: 15px;
  }
  
  .products .product-description {
    font-size: 14px;
  }
  
  .products .product-features .feature-item {
    font-size: 13px;
  }
  
  .products .product-cta-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .products .product-img {
    max-height: 250px;
    min-height: 180px;
  }
  
  .products .products-bottom-cta {
    padding: 20px;
  }
  
  .products .products-bottom-cta .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .products .products-bottom-cta .cta-icon {
    width: 48px;
    height: 48px;
  }
  
  .products .products-bottom-cta .cta-icon i {
    font-size: 22px;
  }
  
  .products .products-bottom-cta .cta-text h4 {
    font-size: 16px;
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  .products {
    padding: 40px 0;
  }
  
  .products .section-title p {
    font-size: 1.4rem;
  }
  
  .products .section-subtitle {
    font-size: 0.85rem;
  }
  
  .products .product-tabs .nav-link {
    font-size: 13px;
    padding: 10px 14px;
  }
  
  .products .product-tabs .nav-link .tab-text {
    font-size: 13px;
  }
  
  .products .product-badge {
    font-size: 10px;
    padding: 3px 12px;
  }
  
  .products .details h3 {
    font-size: 20px;
  }
  
  .products .product-subtitle {
    font-size: 14px;
  }
  
  .products .product-description {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .products .product-features .feature-item {
    font-size: 12px;
  }
  
  .products .product-features .feature-item i {
    font-size: 14px;
  }
  
  .products .product-cta-btn {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
  .products .product-content {
    padding: 16px;
  }
  
  .products .product-img {
    max-height: 200px;
    min-height: 150px;
  }
  
  .products .product-image-wrapper {
    max-width: 100%;
  }
  
  .products .product-tag {
    font-size: 10px;
    padding: 4px 12px;
  }
  
  .products .products-bottom-cta {
    padding: 16px;
  }
  
  .products .products-bottom-cta .cta-text h4 {
    font-size: 15px;
  }
  
  .products .products-bottom-cta .cta-text p {
    font-size: 13px;
  }
  
  .products .cta-btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  /* Stack order for mobile - image on top, text below */
  .products .tab-pane .row {
    flex-direction: column-reverse;
  }
  
  .products .tab-pane .row .order-1 {
    order: 1 !important;
  }
  
  .products .tab-pane .row .order-2 {
    order: 2 !important;
  }
}