/* ==========================================================================
   BikeCar's Cafe - Premium Design System & Stylesheet (Vanilla CSS)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Design Tokens (CSS Variables) --- */
:root {
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Color Palette */
  --bg-darker: #050505;
  --bg-dark: #0c0c0c;
  --bg-card: rgba(20, 20, 20, 0.45);
  --bg-glass: rgba(10, 10, 10, 0.6);
  
  --accent-color: #ff4e00;       /* Fiery Orange/Red representing exhausts and energy */
  --accent-glow: rgba(255, 78, 0, 0.4);
  --accent-secondary: #ffb703;  /* Warm amber lighting highlight */
  --accent-sec-glow: rgba(255, 183, 3, 0.3);

  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --text-dark: #121212;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 78, 0, 0.25);
  --border-glow: rgba(255, 78, 0, 0.5);

  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  --glow-shadow: 0 0 25px var(--accent-glow);

  /* Layout & Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
}

/* --- Base Resets & Structure --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-darker);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body > section:first-of-type {
  padding-top: 140px;
}

/* Custom Metal Grate/Diagonal Line Background Texture overlay on body */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    radial-gradient(var(--bg-dark) 20%, transparent 20%),
    radial-gradient(var(--bg-dark) 20%, transparent 20%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  opacity: 0.15;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(5, 5, 5, 0.9) 100%);
  z-index: -1;
  pointer-events: none;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
  border-left: 1px solid var(--border-light);
}

::-webkit-scrollbar-thumb {
  background: #1f1f1f;
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
  transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* --- Common Components & Utilities --- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.text-accent {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 78, 0, 0.2);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--accent-secondary) 70%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-medium);
  gap: 8px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #d03c00);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 78, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 78, 0, 0.5), 0 0 10px rgba(255, 78, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--accent-color);
  background: rgba(255, 78, 0, 0.05);
  box-shadow: 0 0 15px rgba(255, 78, 0, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* Section Header Style */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 800;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 1.1rem;
}

/* Glassmorphism Generic Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
}

/* Scroll-triggered Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-medium);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-medium);
}

header.scrolled .nav-container {
  height: 65px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
  transition: var(--transition-medium);
}

header.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.logo-sub {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-item a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-item a:hover,
.nav-item.active a {
  color: #fff;
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: var(--transition-medium);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

/* Radial shadow overlay to darken sides and draw focus to center text */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.45) 0%, rgba(5, 5, 5, 0.85) 70%, rgba(5, 5, 5, 0.98) 100%);
  z-index: 1;
}

/* Warm ambient glowing light behind the hero text */
.hero-glow-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 78, 0, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: pulse-glow 6s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
  animation: slide-up-fade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  font-weight: 400;
  animation: slide-up-fade-delay 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.hero-actions {
  animation: slide-up-fade-delay-more 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes slide-up-fade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-up-fade-delay {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-up-fade-delay-more {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Social Media Section --- */
.social-section {
  padding: 100px 0;
  position: relative;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.social-card {
  position: relative;
  padding: 40px 30px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-color: var(--border-light);
  background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 78, 0, 0.05), transparent 40%), var(--bg-card);
}

/* Glowing accent top border on hover */
.social-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition-medium);
  box-shadow: 0 0 10px var(--accent-glow);
}

.social-card:hover::after {
  width: 100%;
}

/* Card hover glow & transformation */
.social-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(255, 78, 0, 0.08), var(--card-shadow);
  background: rgba(255, 255, 255, 0.05);
}

.social-card:hover .icon-box {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
  transform: rotate(-5deg) scale(1.1);
}

.social-card:hover .social-platform {
  color: #fff;
}

.social-card:hover .btn-follow {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px var(--accent-glow);
}

/* Icon Box inside card */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 25px;
  transition: var(--transition-medium);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-platform {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.social-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  flex-grow: 1;
}

.btn-follow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: var(--transition-medium);
  background: rgba(255, 255, 255, 0.02);
}

.btn-follow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition-fast);
}

.btn-follow:hover svg {
  transform: translateX(4px);
}

/* --- Meet the Founder --- */
.founder-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, var(--bg-dark), transparent);
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  padding: 50px;
}

.founder-img-wrapper {
  flex-shrink: 0;
  position: relative;
  width: 320px;
  height: 320px;
}

.founder-img-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  z-index: 1;
  opacity: 0.75;
  box-shadow: 0 0 25px var(--accent-glow);
  animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
  100% { transform: rotate(360deg); }
}

.founder-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid var(--bg-darker);
  position: relative;
  z-index: 2;
}

.founder-content {
  flex-grow: 1;
}

/* Large decorative quotation mark background */
.founder-message-box {
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px;
}

.founder-message-box::before {
  content: '“';
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.15;
  font-weight: 900;
}

.founder-message {
  font-size: 1.15rem;
  line-height: 1.7;
  font-style: italic;
  color: #fff;
  font-weight: 300;
}

.founder-meta h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-designation {
  font-family: var(--font-heading);
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .founder-socials {
    justify-content: center;
  }
}

/* --- Community CTA Section --- */
.cta-section {
  padding: 100px 0;
  position: relative;
}

.cta-box {
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: radial-gradient(1000px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 78, 0, 0.06), transparent 50%), var(--bg-card);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 78, 0, 0.02) 0%, transparent 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-medium);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Brand Specific Hover Effects */
.cta-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.cta-btn.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.cta-btn.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.cta-btn.pin:hover {
  background: #bd081c;
  border-color: #bd081c;
  box-shadow: 0 5px 15px rgba(189, 8, 28, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.cta-btn.gmaps:hover {
  background: #34a853;
  border-color: #34a853;
  box-shadow: 0 5px 15px rgba(52, 168, 83, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

/* --- Footer --- */
footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}

/* Subtle carbon line detail at top of footer */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-about .logo-link {
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-hours p {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.footer-hours p span {
  font-weight: 600;
  color: #fff;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.social-circle-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-medium);
}

.social-circle-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-circle-link:hover {
  color: #fff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 12px var(--accent-glow);
  transform: translateY(-3px);
}

/* --- Responsive Media Queries --- */

/* Desktop (Up to 1200px) */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
  }
}

/* Tablet (Up to 992px) */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .founder-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 30px 20px;
  }

  .founder-img-wrapper {
    width: 250px;
    height: 250px;
  }
  
  .founder-message-box {
    padding-left: 0;
  }
  
  .founder-message-box::before {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile Navigation Toggle styling */
@media (max-width: 768px) {
  .social-section,
  .founder-section,
  .cta-section {
    padding: 60px 0;
  }

  .logo-link {
    order: 1;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-sub {
    display: block;
    font-size: 0.75rem;
    margin-top: -3px;
  }

  .theme-toggle {
    order: 2;
    margin-left: auto !important;
    margin-right: 15px;
  }

  .hamburger {
    display: block;
    order: 3;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: 0.4s ease;
    z-index: 999;
    border-right: 1px solid var(--border-accent);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item a {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Small devices (Up to 480px) */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .cta-social-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Services Section & Cards Styling
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.services-card {
  position: relative;
  padding: 40px 30px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-color: var(--border-light);
  background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 78, 0, 0.05), transparent 40%), var(--bg-card);
}

.services-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-color));
  transition: var(--transition-medium);
  box-shadow: 0 0 10px var(--accent-glow);
}

.services-card:hover::after {
  width: 100%;
}

.services-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(255, 78, 0, 0.08), var(--card-shadow);
  background: rgba(255, 255, 255, 0.05);
}

.services-card:hover .icon-box {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
  transform: rotate(-5deg) scale(1.1);
}

.services-card:hover h3 {
  color: #fff;
}

.services-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.services-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
}

/* ==========================================================================
   About Section & Grid Styling
   ========================================================================== */
.about-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, var(--bg-dark), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 40px;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

.feature-icon {
  font-size: 1.3rem;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Food Menu & Card Grid Styling
   ========================================================================== */
.menu-section {
  padding: 100px 0;
  position: relative;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-medium);
}

.tab-btn:hover {
  border-color: var(--accent-color);
  color: #fff;
  background: rgba(255, 78, 0, 0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent-color), #d03c00);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-color: var(--border-light);
}

.menu-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition-medium);
  box-shadow: 0 0 10px var(--accent-glow);
}

.menu-card:hover::after {
  width: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(255, 78, 0, 0.08), var(--card-shadow);
}

.menu-card-img-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.menu-card:hover .menu-card-img {
  transform: scale(1.08);
}

.menu-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.menu-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.25rem;
  text-shadow: 0 0 10px rgba(255, 78, 0, 0.2);
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
  margin-top: auto;
}

.menu-card-badges {
  display: flex;
  gap: 8px;
}

.menu-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.menu-badge.veg {
  border-color: rgba(52, 168, 83, 0.3);
  color: #34a853;
  background: rgba(52, 168, 83, 0.05);
}

.menu-badge.spicy {
  border-color: rgba(255, 78, 0, 0.3);
  color: var(--accent-color);
  background: rgba(255, 78, 0, 0.05);
}

.menu-card .btn-add {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 30px;
}

/* ==========================================================================
   Events Swiper Carousel Styling
   ========================================================================== */
.events-section {
  padding: 100px 0;
  position: relative;
}

.events-swiper {
  padding: 30px 10px 60px !important;
}

.event-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-color: var(--border-light);
  display: flex;
  flex-direction: column;
}

.event-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition-medium);
  box-shadow: 0 0 10px var(--accent-glow);
}

.event-card:hover::after {
  width: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(255, 78, 0, 0.08), var(--card-shadow);
}

.event-card-img-wrapper {
  height: 180px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.event-date-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--accent-color), #d03c00);
  color: #fff;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0 0 12px 0;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.event-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.event-card-btn {
  width: 100%;
  padding: 10px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Swiper Controls Customizations */
.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.25 !important;
  width: 8px !important;
  height: 8px !important;
  transition: var(--transition-fast) !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
  box-shadow: 0 0 8px var(--accent-glow) !important;
}

/* ==========================================================================
   Table Reservation Form Styling
   ========================================================================== */
.reservation-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, var(--bg-dark), transparent);
}

.reservation-box {
  max-width: 750px;
  margin: 0 auto;
  padding: 50px 40px;
  border-color: var(--border-light);
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-control {
  background: rgba(5, 5, 5, 0.45);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition-medium);
}

.form-control:focus {
  border-color: var(--accent-color);
  background: rgba(255, 78, 0, 0.02);
  outline: none;
  box-shadow: 0 0 15px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.form-control.error {
  border-color: #d00000;
  box-shadow: 0 0 10px rgba(208, 0, 0, 0.2);
}

.error-message {
  color: #ff3333;
  font-size: 0.75rem;
  margin-top: 6px;
  font-weight: 500;
}

select.form-control option {
  background-color: var(--bg-darker);
  color: #fff;
}

/* ==========================================================================
   Success Overlay Modal Styling
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  max-width: 450px;
  width: 90%;
  padding: 40px;
  text-align: center;
  border-color: var(--border-accent);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.85);
  transition: transform var(--transition-medium);
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #d03c00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 5px 15px var(--accent-glow);
  margin-bottom: 25px;
}

.modal-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.modal-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Tablet (Up to 768px) */
@media (max-width: 768px) {
  .reservation-form {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* ==========================================================================
   WhatsApp Shopping Cart & Drawer Styling
   ========================================================================== */
.cart-floating-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #d03c00);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 78, 0, 0.4);
  z-index: 1500;
  transition: var(--transition-medium);
  transform: translateY(100px); /* Hidden by default until items added */
  opacity: 0;
}

.cart-floating-trigger.active {
  transform: translateY(0);
  opacity: 1;
}

.cart-floating-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 78, 0, 0.6);
}

.cart-floating-trigger svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-secondary);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 400px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1800;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-medium);
  border-left: 1px solid var(--border-light);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-dark);
}

.cart-drawer-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-drawer-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.cart-drawer-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.cart-items-wrapper {
  flex-grow: 1;
  overflow-y: auto;
  padding: 25px;
}

.cart-empty-message {
  color: var(--text-muted);
  text-align: center;
  margin-top: 50px;
  font-size: 0.95rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.cart-item-price-calc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-glow);
}

.cart-item-qty-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 15px;
  text-align: center;
}

.cart-item-remove-btn {
  background: none;
  border: none;
  color: #ff3333;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-fast);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cart-item-remove-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.cart-drawer-footer {
  padding: 25px;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-dark);
  margin-top: auto;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.cart-total-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 78, 0, 0.2);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Custom Scrollbar for Drawer Wrapper */
.cart-items-wrapper::-webkit-scrollbar {
  width: 6px;
}

.cart-items-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.cart-items-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Drawer Backdrop Blur */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1700;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
}

/* ==========================================================================
   Gallery Section Styling
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  background-color: var(--bg-dark);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium), filter var(--transition-medium);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.08);
  filter: brightness(0.7) contrast(1.1);
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--accent-secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Contact Section & Google Maps Styling
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
  align-items: center;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-card {
  padding: 25px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-color: var(--border-light);
}

.contact-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 78, 0, 0.05), var(--card-shadow);
}

.contact-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: var(--transition-medium);
  margin-bottom: 0; /* Override default margin */
  flex-shrink: 0;
}

.contact-card:hover .icon-box {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 15px var(--accent-glow);
}

.contact-card-text {
  text-align: left;
}

.contact-card-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: var(--transition-medium);
}

.map-container:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 25px var(--accent-glow), var(--card-shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Custom overlay filter to darken and style Google Maps iframe slightly */
.map-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .map-container {
    height: 350px;
  }
}

/* ==========================================================================
   Animated Motorcycle Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
}

.preloader-motorcycle-wrapper {
  position: relative;
  width: 100px;
  height: 60px;
  animation: bounceBike 0.15s ease-in-out infinite alternate;
}

.preloader-motorcycle-wrapper svg {
  width: 100%;
  height: 100%;
}

.wheel-rot {
  transform-origin: 32.5px 44px; /* Default SVG coordinate hubs center for wheels */
  animation: spinWheel 0.4s linear infinite;
}

.wheel-rot-rear {
  transform-origin: 82.5px 44px;
  animation: spinWheel 0.4s linear infinite;
}

.preloader-smoke-emitter {
  position: absolute;
  bottom: 12px;
  left: 5px;
  display: flex;
}

.preloader-smoke-puff {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 78, 0, 0.45);
  box-shadow: 0 0 8px var(--accent-glow);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
  animation: puffSmoke 0.8s ease-out infinite;
}

.preloader-smoke-puff:nth-child(1) { animation-delay: 0s; }
.preloader-smoke-puff:nth-child(2) { animation-delay: 0.25s; }
.preloader-smoke-puff:nth-child(3) { animation-delay: 0.5s; }

.preloader-road {
  position: relative;
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 15px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

.preloader-road-line {
  position: absolute;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(to right, transparent, transparent 15px, var(--accent-color) 15px, var(--accent-color) 35px);
  animation: moveRoad 0.5s linear infinite;
}

.preloader-counter {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-top: 30px;
  letter-spacing: -0.5px;
  text-shadow: 0 0 15px var(--accent-glow);
  display: flex;
  align-items: baseline;
}

.preloader-counter span {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

.preloader-label {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

/* Preloader Keyframes animations */
@keyframes spinWheel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes moveRoad {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50px); }
}

@keyframes bounceBike {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-1.5px) rotate(0.5deg); }
}

@keyframes puffSmoke {
  0% {
    transform: translate(0, 0) scale(0.4);
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translate(-35px, -15px) scale(2.2);
    opacity: 0;
    filter: blur(2px);
  }
}

/* ==========================================================================
   Services Page & FAQ Accordion Styling
   ========================================================================== */
.services-hero {
  padding: 160px 0 90px;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 78, 0, 0.03), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-event-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-color: var(--border-light);
  display: flex;
  flex-direction: column;
}

.service-event-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition-medium);
  box-shadow: 0 0 10px var(--accent-glow);
}

.service-event-card:hover::after {
  width: 100%;
}

.service-event-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(255, 78, 0, 0.08), var(--card-shadow);
}

.service-event-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.service-event-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-event-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-event-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-features-list {
  margin: 15px 0 25px;
  padding-left: 20px;
  list-style-type: square;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: left;
}

.service-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.service-actions-grid .btn {
  padding: 10px 12px;
  font-size: 0.82rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
}

.service-actions-grid .btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* FAQ Accordion Styling */
.faq-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, var(--bg-dark), transparent);
}

.faq-wrapper {
  max-width: 750px;
  margin: 50px auto 0;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 15px;
  background: rgba(20, 20, 20, 0.35);
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-item:hover {
  border-color: rgba(255, 78, 0, 0.2);
}

.faq-item.active {
  border-color: var(--border-accent);
  box-shadow: 0 10px 25px rgba(255, 78, 0, 0.03);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition: var(--transition-medium);
  text-align: left;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform var(--transition-medium);
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 25px;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Large enough for single answers */
  padding: 0 25px 25px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 15px;
}

/* ==========================================================================
   Menu Page specific layout styling
   ========================================================================== */
.menu-hero {
  padding: 160px 0 60px;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 78, 0, 0.03), transparent);
}

.search-container {
  max-width: 500px;
  margin: 30px auto 0;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper svg {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--text-muted);
  z-index: 10;
  pointer-events: none;
}

.menu-search-input {
  width: 100%;
  padding: 14px 20px 14px 55px;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  background: rgba(5, 5, 5, 0.45);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition-medium);
}

.menu-search-input:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 15px var(--accent-glow);
}

.menu-filter-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}

.chip-btn {
  padding: 8px 18px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: rgba(20, 20, 20, 0.4);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-medium);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
}

.chip-btn:hover {
  border-color: var(--accent-color);
  color: #fff;
}

.chip-btn.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Premium Menu Cards */
.premium-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.premium-menu-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-color: var(--border-light);
}

.premium-menu-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition-medium);
  box-shadow: 0 0 10px var(--accent-glow);
}

.premium-menu-card:hover::after {
  width: 100%;
}

.premium-menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(255, 78, 0, 0.08), var(--card-shadow);
}

.menu-card-badge-row {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.badge-item {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-item.veg-badge {
  border: 1px solid rgba(52, 168, 83, 0.3);
  color: #34a853;
  background: rgba(52, 168, 83, 0.1);
}

.badge-item.non-veg-badge {
  border: 1px solid rgba(234, 67, 53, 0.3);
  color: #ea4335;
  background: rgba(234, 67, 53, 0.1);
}

.badge-item.rating-badge {
  border: 1px solid rgba(255, 183, 3, 0.3);
  color: var(--accent-secondary);
  background: rgba(255, 183, 3, 0.1);
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-item.rating-badge svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.premium-menu-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.premium-menu-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.premium-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

.premium-menu-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.premium-menu-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 78, 0, 0.15);
  flex-shrink: 0;
}

.premium-menu-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: left;
}

.premium-menu-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.premium-menu-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Horizontal scrolling category chips on mobile */
@media (max-width: 768px) {
  .menu-filter-chips {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  
  .chip-btn {
    flex-shrink: 0;
  }
}

/* ==========================================================================
   About Us Page específica styling
   ========================================================================== */
.about-hero {
  padding: 160px 0 60px;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 78, 0, 0.03), transparent);
}

/* Mission, Vision & Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.mvv-card {
  padding: 35px 30px;
  text-align: center;
  border-color: var(--border-light);
  height: 100%;
}

.mvv-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 10px 25px rgba(255, 78, 0, 0.04), var(--card-shadow);
  transform: translateY(-5px);
}

.mvv-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.mvv-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Chronological Timeline */
.timeline-section {
  padding: 100px 0;
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 850px;
  margin: 60px auto 0;
  padding: 20px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-content-wrapper {
  width: 45%;
  position: relative;
}

.timeline-row:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-node-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 4px solid var(--accent-color);
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 12px var(--accent-color);
}

.timeline-node-content {
  padding: 25px 30px;
  border-color: var(--border-light);
  text-align: left;
}

.timeline-node-content:hover {
  border-color: var(--border-accent);
}

.timeline-node-content h4 {
  color: var(--accent-color);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.timeline-node-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-node-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Why Choose Us Grid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Statistics Counters Section */
.stats-counter-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-dark), transparent);
  position: relative;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 50px auto 0;
}

.stat-counter-card {
  padding: 40px 30px;
  text-align: center;
  border-color: var(--border-light);
}

.stat-counter-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 10px 25px rgba(255, 78, 0, 0.04);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.8rem;
  color: var(--accent-color);
  margin-bottom: 5px;
  text-shadow: 0 0 15px rgba(255, 78, 0, 0.3);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* About Responsive Layouts */
@media (max-width: 992px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
    transform: none;
  }
  
  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 45px;
    margin-bottom: 40px;
  }
  
  .timeline-row:nth-child(even) {
    flex-direction: column;
  }
  
  .timeline-content-wrapper {
    width: 100%;
  }
  
  .timeline-node-dot {
    left: 20px;
    top: 30px;
    transform: translate(-50%, 0);
  }
  
  .stats-counter-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Gallery Page specific layout styling
   ========================================================================== */
.gallery-hero {
  padding: 160px 0 60px;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 78, 0, 0.03), transparent);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 40px;
}

.gallery-masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  height: 100%;
}

.gallery-masonry-item:nth-child(even) {
  grid-row: span 2;
}

.gallery-masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
  display: block;
}

.gallery-masonry-item:hover img {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-medium);
  pointer-events: none;
}

.gallery-masonry-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-hover-overlay h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-hover-overlay span {
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lightbox Modal Overlay */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(15px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-backdrop.active {
  display: flex;
  opacity: 1;
}

.lightbox-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.lightbox-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
  z-index: 2010;
}

.lightbox-control-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
}

.lightbox-control-btn.btn-prev {
  left: -70px;
}

.lightbox-control-btn.btn-next {
  right: -70px;
}

.lightbox-close-btn {
  position: absolute;
  top: -55px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
}

.lightbox-close-btn:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

.lightbox-close-btn svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Lightbox Responsive controls */
@media (max-width: 900px) {
  .lightbox-control-btn.btn-prev {
    left: 10px;
  }
  
  .lightbox-control-btn.btn-next {
    right: 10px;
  }
  
  .lightbox-close-btn {
    top: 10px;
    right: 10px;
  }
}

/* ==========================================================================
   Events Page specific layout styling
   ========================================================================== */
.events-hero {
  padding: 160px 0 60px;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 78, 0, 0.03), transparent);
}

.events-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.upcoming-event-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-color: var(--border-light);
}

.upcoming-event-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition-medium);
  box-shadow: 0 0 10px var(--accent-glow);
}

.upcoming-event-card:hover::after {
  width: 100%;
}

.upcoming-event-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(255, 78, 0, 0.08), var(--card-shadow);
}

.event-date-floating {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(255, 78, 0, 0.3);
}

.event-date-floating span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.95;
  margin-top: 2px;
}

.event-category-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(5, 5, 5, 0.75);
  border: 1px solid var(--border-light);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.upcoming-event-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.upcoming-event-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.upcoming-event-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.upcoming-event-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.event-details-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-details-row div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-details-row svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.upcoming-event-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.upcoming-event-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Special Offers layouts */
.special-offer-card {
  border: 1px dashed var(--accent-color);
  background: rgba(255, 78, 0, 0.015);
  text-align: left;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-medium);
}

.special-offer-card:hover {
  border-style: solid;
  background: rgba(255, 78, 0, 0.03);
  box-shadow: 0 10px 25px rgba(255, 78, 0, 0.03);
  transform: translateY(-5px);
}

.special-offer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.special-offer-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.offer-badge {
  background: var(--accent-secondary);
  color: var(--bg-darker);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.special-offer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.offer-expiry {
  font-size: 0.78rem;
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Contact Page specific layout styling
   ========================================================================== */
.contact-hero {
  padding: 160px 0 60px;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 78, 0, 0.03), transparent);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-card {
  padding: 30px 25px;
  text-align: center;
  border-color: var(--border-light);
  height: 100%;
}

.contact-info-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

.contact-info-card svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-color);
  margin-bottom: 15px;
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  text-align: left;
}

/* Floating Action Circle Buttons */
.floating-action-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-medium);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.floating-btn.whatsapp-btn {
  background: #25d366;
  border-color: #25d366;
}

.floating-btn.call-btn {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* Responsive grid modifications */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-card {
    padding: 30px 20px;
  }
}

/* Theme Toggle Button Styles */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.03);
  margin-left: 15px;
}

.theme-toggle:hover {
  color: var(--accent-color);
  border-color: var(--border-accent);
  background: rgba(255, 78, 0, 0.05);
}

/* Hide moon icon in dark mode (default) */
body:not(.light-theme) .theme-toggle .moon-icon {
  display: none;
}

/* Hide sun icon in light mode */
body.light-theme .theme-toggle .sun-icon {
  display: none;
}

/* ==========================================================================
   Light Theme variables & overrides
   ========================================================================== */
body.light-theme {
  --bg-darker: #f9f9fb;
  --bg-dark: #f0f0f4;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.9);
  
  --text-main: #18181b;
  --text-muted: #52525b;
  --text-dark: #f4f4f5;
  
  --border-light: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(255, 78, 0, 0.35);
  
  --card-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

body.light-theme::before {
  background-image: 
    radial-gradient(#e4e4e7 20%, transparent 20%),
    radial-gradient(#e4e4e7 20%, transparent 20%);
  opacity: 0.4;
}

body.light-theme::after {
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(240, 240, 244, 0.7) 100%);
}

body.light-theme .theme-toggle {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.03);
}

/* Force dark text for readability in light mode */
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6,
body.light-theme .logo-text,
body.light-theme .logo-sub,
body.light-theme .nav-menu .nav-item a,
body.light-theme .footer-col p,
body.light-theme .footer-col a,
body.light-theme .footer-col h3,
body.light-theme .upcoming-event-content h3,
body.light-theme .upcoming-event-content p,
body.light-theme .special-offer-header h3,
body.light-theme .special-offer-desc,
body.light-theme .form-group label,
body.light-theme .copyright,
body.light-theme .lightbox-caption,
body.light-theme .timeline-node-content h3,
body.light-theme .timeline-node-content p,
body.light-theme .stat-counter-card h3,
body.light-theme .stat-counter-card p,
body.light-theme .menu-card-details h3,
body.light-theme .menu-card-details p,
body.light-theme .services-card-info h3,
body.light-theme .services-card-info p,
body.light-theme .faq-question,
body.light-theme .faq-answer p,
body.light-theme .contact-info-card h3,
body.light-theme .contact-info-card p,
body.light-theme .social-card h3,
body.light-theme .social-card p,
body.light-theme .event-card-info h3,
body.light-theme .event-card-info p {
  color: #18181b !important;
}

body.light-theme p,
body.light-theme li,
body.light-theme .section-desc,
body.light-theme .hero p,
body.light-theme .about-narrative p,
body.light-theme .mission-vision-grid p {
  color: #52525b !important;
}

body.light-theme .nav-menu .nav-item.active a {
  color: var(--accent-color) !important;
}

body.light-theme .form-control {
  background: rgba(0, 0, 0, 0.03);
  color: #18181b;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .form-control:focus {
  background: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(255, 78, 0, 0.15);
}

body.light-theme .menu-filter-chips .chip-btn {
  background: rgba(0, 0, 0, 0.03);
  color: #18181b;
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .menu-filter-chips .chip-btn.active {
  background: var(--accent-color);
  color: #fff;
}

/* Adjust card backgrounds/borders in light mode */
body.light-theme .glass-card,
body.light-theme .menu-card,
body.light-theme .services-card,
body.light-theme .social-card,
body.light-theme .timeline-node-content,
body.light-theme .stat-counter-card,
body.light-theme .contact-info-card,
body.light-theme .faq-card {
  background: var(--bg-card) !important;
  border-color: var(--border-light) !important;
  box-shadow: var(--card-shadow) !important;
}

/* Smooth transit timing for high-performance theme shifting */
body, 
.glass-card, 
.menu-card, 
.services-card, 
.social-card, 
.timeline-node-content, 
.stat-counter-card, 
.contact-info-card, 
.faq-card, 
header, 
footer, 
.form-control, 
.chip-btn, 
.nav-item a {
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Header & Navigation Tweaks */
body.light-theme header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .nav-menu .nav-item a:hover {
  color: var(--accent-color) !important;
}

body.light-theme .logo-text {
  color: #18181b !important;
}

body.light-theme .logo-sub {
  color: var(--accent-color) !important;
}

/* Fix for unreadable white gradients in Light Mode */
body.light-theme .text-gradient {
  background: linear-gradient(135deg, #18181b 30%, var(--accent-color) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
}

/* Fix for white-on-white feature text list items */
body.light-theme .feature-item {
  color: #18181b !important;
}

/* Card hover background and text color corrections in Light Mode */
body.light-theme .services-card:hover,
body.light-theme .menu-card:hover,
body.light-theme .social-card:hover,
body.light-theme .contact-info-card:hover,
body.light-theme .upcoming-event-card:hover,
body.light-theme .offer-card:hover {
  background: #ffffff !important;
  border-color: var(--accent-color) !important;
}

body.light-theme .services-card:hover h3,
body.light-theme .menu-card:hover h3,
body.light-theme .social-card:hover h3,
body.light-theme .social-card:hover .social-platform,
body.light-theme .upcoming-event-card:hover h3 {
  color: var(--accent-color) !important;
}
