/* =====================================================
   NAND FOOD — Custom Stylesheet
   Bootstrap 5 | White Theme | Brand Color: #e0b568
===================================================== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&family=Dancing+Script:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --brand: #0095ff;
  --brand-gradient: linear-gradient(135deg, #0055ff, #00d4ff);
  --brand-dark: #0055cc;
  --brand-deep: #003399;
  --brand-light: #4db8ff;
  --brand-pale: #f0f9ff;
  --blue: #2571cd;
  --blue-dk: #1a54a0;
  --white: #ffffff;
  --cream: #f8fbff;
  --cream-dk: #eef5ff;
  --dark: #001a33;
  --mid: #445566;
  --soft: #778899;
  --border: #d0e1f9;
  --shadow-sm: 0 4px 12px rgba(0, 95, 255, 0.08);
  --shadow-md: 0 12px 32px rgba(0, 95, 255, 0.12);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
}

/* Dotted background pattern */
.bg-dots {
  background-image: radial-gradient(var(--brand-dark) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.12;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

/* Floating Overlay Cards (Foodia style) */
.float-card {
  position: absolute;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: foodiaFloat 5s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.float-card .fc-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}
.float-card .fc-text span {
  display: block;
  font-size: 11px;
  color: var(--soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

@keyframes foodiaFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
  overflow-x: hidden !important;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-dark);
  border-radius: 4px;
}

/* ======== NAVBAR ======== */
.nf-nav {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  max-width: 1200px;
  margin: 15px auto;
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: all 0.3s ease-in-out;
}
.nf-nav.scrolled {
  background: rgba(0, 26, 51, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.nf-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.nf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nf-logo-icon {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.nf-logo-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nf-logo:hover .nf-logo-icon {
  transform: scale(1.05);
}

.nf-logo-txt b {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nf-logo-txt span {
  display: block;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--soft);
}
.nf-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nf-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: color 0.25s;
}
.nf-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  transition: width 0.3s;
}
.nf-links a:hover {
  color: var(--brand-light);
}
.nf-links a:hover::after {
  width: 100%;
}
.btn-nav-book {
  padding: 10px 24px !important;
  background: var(--brand) !important;
  color: var(--dark) !important;
  border-radius: 30px;
  font-weight: 700 !important;
  font-size: 13px !important;
  border: 2px solid var(--brand);
  transition: all 0.3s !important;
  box-shadow: 0 4px 14px rgba(224, 181, 104, 0.35);
}
.btn-nav-book::after {
  display: none !important;
}
.btn-nav-book:hover {
  background: transparent !important;
  color: var(--brand) !important;
  border-color: var(--brand);
}

/* Sidebar Toggle */
.nf-sidebar-btn {
  background: var(--brand-pale);
  color: var(--brand);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}
.nf-sidebar-btn:hover {
  background: var(--brand);
  color: #fff;
  transform: rotate(90deg);
}

/* Offcanvas Custom styling */
.offcanvas {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-left: 1px solid var(--border) !important;
}
.offcanvas-header {
  padding: 30px;
  border-bottom: 1px solid var(--border);
}
.offcanvas-title b {
  font-family: "Playfair Display", serif;
  color: var(--brand-deep);
  font-size: 24px;
}
.offcanvas-body {
  padding: 40px 30px;
}
.side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-links li {
  margin-bottom: 25px;
}
.side-links a {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}
.side-links a i {
  width: 40px;
  height: 40px;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.side-links a:hover {
  color: var(--brand);
  transform: translateX(10px);
}
.side-links a:hover i {
  background: var(--brand);
  color: #fff;
}

.nf-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* ======== HERO ======== */
#hero {
  background: var(--cream);
  padding: 140px 32px 0;
  overflow: hidden;
}
.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-family: "Dancing Script", cursive;
  font-size: 22px;
  color: var(--brand-deep);
  margin-bottom: 12px;
}
.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--brand-deep);
}
.hero-p {
  font-size: 16px;
  color: var(--soft);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 34px;
}

.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  background: var(--brand);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  border: 2px solid var(--brand);
  box-shadow: 0 4px 18px rgba(224, 181, 104, 0.4);
  transition: all 0.3s;
}
.btn-primary-brand:hover {
  background: transparent;
  color: var(--brand-deep);
}
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 30px;
  background: transparent;
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.btn-outline-brand:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

/* Hero image strip — FA icon cards */
.hero-img-row {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  padding-bottom: 0;
}
.h-card {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.9);
}
.h-card span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 600;
}
.h-card.t1 {
  height: 260px;
  width: 200px;
}
.h-card.t2 {
  height: 215px;
  width: 175px;
}
.h-card.t3 {
  height: 175px;
  width: 155px;
}
.h-card.c1 {
  background: linear-gradient(160deg, #0055cc, #0095ff);
}
.h-card.c2 {
  background: linear-gradient(160deg, #003399, #0055cc);
}
.h-card.c3 {
  background: linear-gradient(160deg, #00d4ff, #0095ff);
}
.h-card.c4 {
  background: linear-gradient(160deg, #1a54a0, #2571cd);
}
.h-card.c5 {
  background: linear-gradient(160deg, #0055cc, #00d4ff);
}
.h-card.c6 {
  background: linear-gradient(160deg, #007bff, #00d4ff);
}

/* ======== ABOUT ======== */
#about {
  background: var(--white);
  padding: 60px 32px;
}
.about-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.sec-tag::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--brand);
}
.sec-h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}
.sec-h2 em {
  font-style: italic;
  color: var(--brand-deep);
}
.gold-bar {
  width: 46px;
  height: 2px;
  background: var(--brand-dark);
  margin: 18px 0;
}
.sec-p {
  font-size: 15.5px;
  color: var(--soft);
  line-height: 1.9;
  max-width: 480px;
  margin-top: 12px;
}

.about-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-big-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--brand-deep),
    var(--brand),
    var(--brand-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--dark);
  margin: 0 auto 18px;
  box-shadow: 0 6px 24px rgba(224, 181, 104, 0.4);
}
.about-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.about-card p {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.85;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--dark);
  border-radius: var(--r-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(224, 181, 104, 0.45);
}
.about-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.about-badge span {
  font-size: 10px;
  letter-spacing: 1.5px;
  opacity: 0.75;
  text-transform: uppercase;
}
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--mid);
}
.about-list li:last-child {
  border: none;
}
.al-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.al-ico.g {
  background: rgba(224, 181, 104, 0.15);
  color: var(--brand-deep);
  border: 1px solid rgba(224, 181, 104, 0.25);
}
.al-ico.b {
  background: rgba(37, 113, 205, 0.1);
  color: var(--blue);
  border: 1px solid rgba(37, 113, 205, 0.15);
}

/* ======== MENU ======== */
#menu {
  background: var(--cream);
  padding: 50px 32px;
}
.menu-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.menu-center {
  text-align: center;
  margin-bottom: 30px;
}
.menu-center .sec-tag {
  justify-content: center;
}
.menu-center .sec-tag::before {
  display: none;
}

/* Main tabs FOOD | BAR */
.main-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}
.main-tab {
  padding: 12px 44px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--soft);
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-tab.active {
  background: var(--brand);
  color: var(--dark);
  box-shadow: none;
}

/* Category sub-tabs */
.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cat-tab {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--soft);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.cat-tab.active,
.cat-tab:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--dark);
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(0, 149, 255, 0.4);
}
.bar-tabs .cat-tab.active,
.bar-tabs .cat-tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 3px 12px rgba(37, 113, 205, 0.3);
}

/* Menu section heading */
.menu-sec-head {
  text-align: center;
  margin-bottom: 26px;
}
.menu-sec-ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dark);
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(224, 181, 104, 0.35);
}
.bar-ico-circle {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue)) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37, 113, 205, 0.3) !important;
}
.menu-sec-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

/* Menu item list */
.menu-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.mi-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.mi-row:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand) !important;
  background: rgba(0, 149, 255, 0.05);
}
.mi-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
}
.mi-thumb.blue-thumb {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue));
  color: #fff;
}
.mi-info {
  flex: 1;
}
.mi-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.mi-info p {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.5;
}
.mi-price {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  background: rgba(0, 149, 255, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px dashed var(--brand);
}
.menu-cta-row {
  text-align: center;
  margin-top: 32px;
}

/* Buttons */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--brand);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid var(--brand);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(224, 181, 104, 0.35);
}
.btn-brand:hover {
  background: transparent;
  color: var(--brand-deep);
}

/* ======== CALL NOW ======== */
#callnow {
  background: var(--white);
  padding: 60px 32px;
}
.callnow-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.call-banner {
  background:
    linear-gradient(135deg, rgba(0, 51, 153, 0.9), rgba(0, 149, 255, 0.85)),
    url("../img/banner-bg.jpg") center/cover;
  border-radius: var(--r-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  color: white;
}
.call-banner::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.call-banner-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.call-banner-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 480px;
}
.call-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-dark-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  border-radius: 30px;
  border: 2px solid var(--white);
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-dark-solid:hover {
  background: transparent;
  color: var(--white);
  box-shadow: none;
}
.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}
.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Contact side */
.contact-side h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-side h3 em {
  font-style: italic;
  color: var(--brand-deep);
}
.contact-side > p {
  font-size: 15px;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: 32px;
}
.c-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.c-item:last-child {
  border-bottom: none;
}
.c-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.c-ico.g {
  background: rgba(224, 181, 104, 0.12);
  color: var(--brand-deep);
  border: 1px solid rgba(224, 181, 104, 0.25);
}
.c-ico.b {
  background: rgba(37, 113, 205, 0.08);
  color: var(--blue);
  border: 1px solid rgba(37, 113, 205, 0.15);
}
.c-lbl {
  font-size: 10.5px;
  color: var(--soft);
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.c-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* Reservation Form Card */
.res-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.res-card-top {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--brand-deep),
    var(--brand),
    var(--blue)
  );
}
.res-card-body {
  padding: 44px 40px;
}
.res-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 26px;
}
.nf-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 600;
  margin-bottom: 8px;
}
.nf-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--dark);
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.nf-input:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(224, 181, 104, 0.15);
}
.nf-input::placeholder {
  color: #bbb;
}
textarea.nf-input {
  resize: none;
  height: 90px;
}
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--brand);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid var(--brand);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(224, 181, 104, 0.4);
}
.btn-submit:hover {
  background: transparent;
  color: var(--brand-deep);
}

/* ======== FOOTER ======== */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 68px 32px 26px;
}
.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.f-logo-b {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--brand);
  font-weight: 700;
}
.f-logo-s {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
.f-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin: 16px 0 24px;
}
.f-socials {
  display: flex;
  gap: 10px;
}
.f-soc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  transition: all 0.3s;
}
.f-soc:hover {
  background: var(--brand);
  color: var(--dark);
  border-color: var(--brand);
  transform: translateY(-3px);
}
.f-col-title {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--brand);
  margin-bottom: 18px;
  font-weight: 600;
}
.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.f-links li {
  margin-bottom: 10px;
}
.f-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
}
.f-links a:hover {
  color: var(--brand);
  padding-left: 5px;
}
.f-links li i {
  color: var(--brand-dark);
  margin-right: 8px;
  font-size: 13px;
}
.f-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 44px 0 22px;
}
.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.f-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.f-bottom span {
  color: var(--brand);
}

/* ======== ANIMATIONS ======== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in-l.show {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in-r.show {
  opacity: 1;
  transform: translateX(0);
}

/* ======== BACK TO TOP ======== */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: white;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(224, 181, 104, 0.5);
  transition: all 0.3s;
}
#backToTop:hover {
  background: var(--dark);
  color: var(--brand);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(26, 26, 26, 0.3);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .menu-items-list {
    grid-template-columns: 1fr;
  }
  .mi-row {
    border-right: none;
  }
  .mi-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .mi-row:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .nf-nav {
    background: var(--dark);
    margin: 0 !important;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    box-sizing: border-box;
  }

  .nf-logo-icon {
    height: 55px;
  }
  .nf-logo-txt b,
  .nf-logo-txt span,
  .nf-toggler {
    color: var(--white);
  }
  .nf-nav-inner {
    padding: 6px 15px;
  }
  .nf-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 57px;
    left: 0;
    width: 100%;
    border-radius: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    z-index: 1040;
    box-sizing: border-box;
  }

  .nf-links a {
    color: rgba(255, 255, 255, 0.8);
  }
  .nf-links.open {
    display: flex;
  }
  .nf-toggler {
    display: block;
  }
  #hero {
    padding: 100px 20px 0;
    overflow-x: hidden !important;
  }
  #about,
  #menu {
    padding: 60px 20px;
  }
  #footer {
    padding: 50px 20px 22px;
  }
  .hero-img-row {
    flex-wrap: wrap;
  }
  .h-card {
    flex: 1;
    min-width: 140px;
  }
  .about-badge {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }
  .call-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
  .call-banner-actions {
    justify-content: center;
  }
  .f-bottom {
    flex-direction: column;
    text-align: center;
  }
  .main-tab {
    padding: 12px 28px;
    font-size: 13px;
  }
  .res-card-body {
    padding: 28px 20px;
  }
}
